diff --git a/src/deltacode/__init__.py b/src/deltacode/__init__.py index 67ac7f1f..aed14c1f 100644 --- a/src/deltacode/__init__.py +++ b/src/deltacode/__init__.py @@ -58,8 +58,10 @@ def __init__(self, new_path, old_path, options): self.determine_moved() self.license_diff() self.copyright_diff() - # Sort deltas by score, descending, i.e., high > low. + # Sort deltas by score, descending, i.e., high > low, and then by + # factors, alphabetically. self.deltas.sort(key=lambda Delta: Delta.score, reverse=True) + self.deltas.sort(key=lambda Delta: Delta.factors, reverse=False) def align_scans(self): """ @@ -134,7 +136,7 @@ def determine_delta(self): # This file already classified so do nothing new_index[path] except KeyError: - delta = Delta(10, None, old_file) + delta = Delta(0, None, old_file) delta.factors.append('removed') self.deltas.append(delta) continue @@ -158,10 +160,10 @@ def determine_moved(self): both indices with the same 'sha1' and File 'name' attributes, and converting each such pair of 'added' and 'removed' Delta objects to a 'moved' Delta object. The 'added' and 'removed' indices are defined by - the 'score' attribute of the Delta objects. + the presence/absence of the object's 'old_file' and 'new_file'. """ - added = self.index_deltas('sha1', [i for i in self.deltas if i.score == 100]) - removed = self.index_deltas('sha1', [i for i in self.deltas if i.score == 10]) + added = self.index_deltas('sha1', [i for i in self.deltas if i.old_file is None and i.new_file]) + removed = self.index_deltas('sha1', [i for i in self.deltas if i.old_file and i.new_file is None]) # TODO: should it be iteritems() or items() for added_sha1, added_deltas in added.iteritems(): @@ -177,7 +179,7 @@ def update_deltas(self, added, removed): 'moved' Delta object -- passing the appropriate 'score' during object creation -- and delete the 'added' and 'removed' objects. """ - delta = Delta(5, added.new_file, removed.old_file) + delta = Delta(0, added.new_file, removed.old_file) delta.factors.append('moved') self.deltas.append(delta) self.deltas.remove(added) @@ -187,23 +189,37 @@ def license_diff(self): """ Compare the license details for a pair of 'new' and 'old' File objects in a Delta object and change the Delta object's 'score' attribute -- - and add an appropriate category (e.g., 'license info removed', 'license - info added' or 'license change') to the Delta object's 'factors' - attribute -- if there has been a license change and depending on the - nature of that change. + and add one or more appropriate categories (e.g., 'license change', + 'copyleft added') to the Delta object's 'factors' attribute -- if there + has been a license change and depending on the nature of that change. """ + unique_categories = set([ + 'Commercial', + 'Copyleft', + 'Copyleft Limited', + 'Free Restricted', + 'Patent License', + 'Proprietary Free' + ]) + for delta in self.deltas: - if 20 <= delta.score < 100: + if delta.is_modified(): + if not delta.new_file.has_licenses() and delta.old_file.has_licenses(): + delta.update(15, 'license info removed') + return new_licenses = delta.new_file.licenses or [] old_licenses = delta.old_file.licenses or [] - if len(delta.new_file.licenses) > 0 and delta.old_file.licenses == []: - delta.update(20, 'license info added') - return + new_categories = set(license.category for license in new_licenses) + old_categories = set(license.category for license in old_licenses) - if delta.new_file.licenses == [] and len(delta.old_file.licenses) > 0: - delta.update(15, 'license info removed') + if delta.new_file.has_licenses() and not delta.old_file.has_licenses(): + delta.update(20, 'license info added') + # no license ==> 'Copyleft Limited'or higher + for category in new_categories: + if category in unique_categories: + delta.update(20, category.lower() + ' added') return new_keys = set(license.key for license in new_licenses) @@ -211,6 +227,10 @@ def license_diff(self): if new_keys != old_keys: delta.update(10, 'license change') + for category in new_categories - old_categories: + # 'Permissive' or 'Public Domain' ==> 'Copyleft Limited' or higher + if len(old_categories & unique_categories) == 0 and category in unique_categories: + delta.update(20, category.lower() + ' added') def copyright_diff(self): """ @@ -222,15 +242,14 @@ def copyright_diff(self): nature of that change. """ for delta in self.deltas: - if 20 <= delta.score < 100: - + if delta.is_modified(): new_copyrights = delta.new_file.copyrights or [] old_copyrights = delta.old_file.copyrights or [] - if len(delta.new_file.copyrights) > 0 and delta.old_file.copyrights == []: + if delta.new_file.has_copyrights() and not delta.old_file.has_copyrights(): delta.update(10, 'copyright info added') return - elif delta.new_file.copyrights == [] and len(delta.old_file.copyrights) > 0: + if not delta.new_file.has_copyrights() and delta.old_file.has_copyrights(): delta.update(10, 'copyright info removed') return @@ -289,6 +308,26 @@ def update(self, score=0, factor=''): self.factors.append(factor) self.score += score + def is_modified(self): + """ + Identify a Delta object meriting attention to possible changes in its + license or copyright content because the File object has been modified. + """ + if self.score > 0 and self.old_file: + return True + + def is_unmodified(self): + """ + Since 'unmodified' is no longer the only category/factor with a + score = 0, test the Delta object's attributes for categories/factors + other than 'unmodified' and return True if all but 'unmodified' are + ruled out. + """ + if (self.old_file and self.new_file and + self.old_file.sha1 == self.new_file.sha1 and + self.old_file.path == self.new_file.path): + return True + def to_dict(self): """ Return an OrderedDict comprising the 'factors', 'score' and new and old diff --git a/src/deltacode/models.py b/src/deltacode/models.py index 74f582eb..b7f40dea 100644 --- a/src/deltacode/models.py +++ b/src/deltacode/models.py @@ -140,7 +140,7 @@ def index_files(self, index_key='path'): for f in self.files: key = getattr(f, index_key) - if index.get(key) == None: + if index.get(key) is None: index[key] = [] index[key].append(f) else: @@ -169,12 +169,20 @@ def get_licenses(self, dictionary): else: return [License(l) for l in dictionary.get('licenses')] + def has_licenses(self): + if len(self.licenses) > 0: + return True + def get_copyrights(self, dictionary): if dictionary.get('copyrights') == []: return [] else: return [Copyright(l) for l in dictionary.get('copyrights')] + def has_copyrights(self): + if len(self.copyrights) > 0: + return True + def to_dict(self): d = OrderedDict([ ('path', self.path), diff --git a/src/deltacode/utils.py b/src/deltacode/utils.py index bd2e97f3..5e6e608e 100644 --- a/src/deltacode/utils.py +++ b/src/deltacode/utils.py @@ -45,13 +45,13 @@ def collect_errors(deltacode): def deltas(deltacode, all_delta_types=False): """ Return a generator of Delta dictionaries for JSON serialized ouput. Omit - all unmodified Delta objects -- identified by a 'score' of 0 -- unless the - user selects the '-a'/'--all' option. + all unmodified Delta objects unless the user selects the '-a'/'--all' + option. """ for delta in deltacode.deltas: if all_delta_types is True: yield delta.to_dict() - elif delta.score != 0: + elif not delta.is_unmodified(): yield delta.to_dict() diff --git a/tests/data/cli/1_file_moved.csv b/tests/data/cli/1_file_moved.csv index a8327b5e..88503aec 100644 --- a/tests/data/cli/1_file_moved.csv +++ b/tests/data/cli/1_file_moved.csv @@ -1,5 +1,5 @@ Factors,Score,Path,Name,Type,Size,Old Path -moved,5,b/a4.py,a4.py,file,200,a/a4.py +moved,0,b/a4.py,a4.py,file,200,a/a4.py unmodified,0,a/a3.py,a3.py,file,200, unmodified,0,b/b4.py,b4.py,file,200, unmodified,0,a/a2.py,a2.py,file,200, diff --git a/tests/data/cli/1_file_moved_all_not_selected.csv b/tests/data/cli/1_file_moved_all_not_selected.csv index f4dc7719..76e1e4f7 100644 --- a/tests/data/cli/1_file_moved_all_not_selected.csv +++ b/tests/data/cli/1_file_moved_all_not_selected.csv @@ -1,2 +1,2 @@ Factors,Score,Path,Name,Type,Size,Old Path -moved,5,b/a4.py,a4.py,file,200,a/a4.py +moved,0,b/a4.py,a4.py,file,200,a/a4.py diff --git a/tests/data/cli/1_file_moved_and_1_copy.csv b/tests/data/cli/1_file_moved_and_1_copy.csv index 705fcd10..8a1a0bc3 100644 --- a/tests/data/cli/1_file_moved_and_1_copy.csv +++ b/tests/data/cli/1_file_moved_and_1_copy.csv @@ -1,4 +1,4 @@ Factors,Score,Path,Name,Type,Size,Old Path added,100,b/a4.py,a4.py,file,200, added,100,b/a4_copy.py,a4_copy.py,file,200, -removed,10,a/a4.py,a4.py,file,200, +removed,0,a/a4.py,a4.py,file,200, diff --git a/tests/data/cli/1_file_moved_and_added.csv b/tests/data/cli/1_file_moved_and_added.csv index d613ebbf..fd41309b 100644 --- a/tests/data/cli/1_file_moved_and_added.csv +++ b/tests/data/cli/1_file_moved_and_added.csv @@ -1,4 +1,4 @@ Factors,Score,Path,Name,Type,Size,Old Path added,100,b/a4.py,a4.py,file,200, added,100,c/a4.py,a4.py,file,200, -removed,10,a/a4.py,a4.py,file,200, +removed,0,a/a4.py,a4.py,file,200, diff --git a/tests/data/cli/copyright_and_license_info_added.csv b/tests/data/cli/copyright_and_license_info_added.csv index ddea96d8..67ced3a3 100644 --- a/tests/data/cli/copyright_and_license_info_added.csv +++ b/tests/data/cli/copyright_and_license_info_added.csv @@ -1,2 +1,2 @@ Factors,Score,Path,Name,Type,Size,Old Path -modified license info added copyright info added,50,path.txt,path.txt,file,300, +modified license info added copyleft added copyright info added,70,path.txt,path.txt,file,300, diff --git a/tests/data/cli/license_info_added_copyright_info_removed.csv b/tests/data/cli/license_info_added_copyright_info_removed.csv index e1900247..c0f52dbf 100644 --- a/tests/data/cli/license_info_added_copyright_info_removed.csv +++ b/tests/data/cli/license_info_added_copyright_info_removed.csv @@ -1,2 +1,2 @@ Factors,Score,Path,Name,Type,Size,Old Path -modified license info added copyright info removed,50,path.txt,path.txt,file,300, +modified license info added copyleft added copyright info removed,70,path.txt,path.txt,file,300, diff --git a/tests/data/cli/modified_new_license_added.csv b/tests/data/cli/modified_new_license_added.csv index ee7005ec..635a9b12 100644 --- a/tests/data/cli/modified_new_license_added.csv +++ b/tests/data/cli/modified_new_license_added.csv @@ -1,4 +1,4 @@ Factors,Score,Path,Name,Type,Size,Old Path modified,20,some/path/c/c1.py,c1.py,file,300, -modified license change,30,some/path/a/a1.py,a1.py,file,300, +modified license change copyleft added,50,some/path/a/a1.py,a1.py,file,300, modified license change,30,some/path/b/b1.py,b1.py,file,300, diff --git a/tests/data/cli/removed1.csv b/tests/data/cli/removed1.csv index 1fd7571a..376663ac 100644 --- a/tests/data/cli/removed1.csv +++ b/tests/data/cli/removed1.csv @@ -1,2 +1,2 @@ Factors,Score,Path,Name,Type,Size,Old Path -removed,10,a/a4.py,a4.py,file,200, +removed,0,a/a4.py,a4.py,file,200, diff --git a/tests/data/cli/renamed1.csv b/tests/data/cli/renamed1.csv index fc134a3a..568c858e 100644 --- a/tests/data/cli/renamed1.csv +++ b/tests/data/cli/renamed1.csv @@ -1,3 +1,3 @@ Factors,Score,Path,Name,Type,Size,Old Path added,100,a/a4_renamed_not_modified.py,a4_renamed_not_modified.py,file,200, -removed,10,a/a4.py,a4.py,file,200, +removed,0,a/a4.py,a4.py,file,200, diff --git a/tests/data/deltacode/apache_to_all_notable_lic_new.json b/tests/data/deltacode/apache_to_all_notable_lic_new.json new file mode 100644 index 00000000..02cb4a28 --- /dev/null +++ b/tests/data/deltacode/apache_to_all_notable_lic_new.json @@ -0,0 +1,461 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post32.fea65d35a", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\licenses\\apache_to_all_notable_lic\\apache_to_all_notable_lic_new", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\apache_to_all_notable_lic_new.json", + "--license": true, + "--package": true + }, + "files_count": 2, + "files": [ + { + "path": "apache_to_all_notable_lic_new", + "type": "directory", + "name": "apache_to_all_notable_lic_new", + "base_name": "apache_to_all_notable_lic_new", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 16471, + "scan_errors": [] + }, + { + "path": "apache_to_all_notable_lic_new/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 16271, + "date": "2018-03-16", + "sha1": "535b9966048ad50a9d5eb2f167c0a3013ee5cc6f", + "md5": "e5658fe520bbebaf6f3d4be2e2525ab6", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_63.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "adapt-1.0", + "score": 15.0, + "short_name": "APL 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "text_url": "http://www.opensource.org/licenses/apl1.0.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:adapt-1.0", + "spdx_license_key": "APL-1.0", + "spdx_url": "https://spdx.org/licenses/APL-1.0", + "start_line": 8, + "end_line": 8, + "matched_rule": { + "identifier": "adapt-1.0_2.RULE", + "license_choice": false, + "licenses": [ + "adapt-1.0" + ] + } + }, + { + "key": "adapt-1.0", + "score": 15.0, + "short_name": "APL 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "text_url": "http://www.opensource.org/licenses/apl1.0.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:adapt-1.0", + "spdx_license_key": "APL-1.0", + "spdx_url": "https://spdx.org/licenses/APL-1.0", + "start_line": 9, + "end_line": 9, + "matched_rule": { + "identifier": "adapt-1.0_2.RULE", + "license_choice": false, + "licenses": [ + "adapt-1.0" + ] + } + }, + { + "key": "carnegie-mellon", + "score": 100.0, + "short_name": "Carnegie Mellon License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:carnegie-mellon", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 35, + "end_line": 43, + "matched_rule": { + "identifier": "carnegie-mellon.LICENSE", + "license_choice": false, + "licenses": [ + "carnegie-mellon" + ] + } + }, + { + "key": "cc-by-sa-4.0", + "score": 30.0, + "short_name": "CC-BY-SA-4.0", + "category": "Copyleft", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "text_url": "http://creativecommons.org/licenses/by-sa/4.0/legalcode", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-sa-4.0", + "spdx_license_key": "CC-BY-SA-4.0", + "spdx_url": "https://spdx.org/licenses/CC-BY-SA-4.0", + "start_line": 48, + "end_line": 48, + "matched_rule": { + "identifier": "cc-by-sa-4.0_5.RULE", + "license_choice": false, + "licenses": [ + "cc-by-sa-4.0" + ] + } + }, + { + "key": "bittorrent-1.0", + "score": 100.0, + "short_name": "BitTorrent 1.0", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/license/", + "text_url": "http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bittorrent-1.0", + "spdx_license_key": "BitTorrent-1.0", + "spdx_url": "https://spdx.org/licenses/BitTorrent-1.0", + "start_line": 65, + "end_line": 69, + "matched_rule": { + "identifier": "bittorrent-1.0_1.RULE", + "license_choice": false, + "licenses": [ + "bittorrent-1.0" + ] + } + }, + { + "key": "bloomberg-blpapi", + "score": 100.0, + "short_name": "Bloomberg BLPAPI License", + "category": "Proprietary Free", + "owner": "Bloomberg Labs", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bloomberg-blpapi", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 88, + "matched_rule": { + "identifier": "bloomberg-blpapi.LICENSE", + "license_choice": false, + "licenses": [ + "bloomberg-blpapi" + ] + } + }, + { + "key": "bsd-3-clause-no-nuclear-warranty", + "score": 100.0, + "short_name": "Oracle BSD-Style with Nuclear Warranty", + "category": "Permissive", + "owner": "Oracle Corporation", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-3-clause-no-nuclear-warranty", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty", + "start_line": 91, + "end_line": 100, + "matched_rule": { + "identifier": "bsd-3-clause-no-nuclear-warranty.LICENSE", + "license_choice": false, + "licenses": [ + "bsd-3-clause-no-nuclear-warranty" + ] + } + }, + { + "key": "commercial-license", + "score": 55.0, + "short_name": "Commercial License", + "category": "Commercial", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:commercial-license", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 103, + "matched_rule": { + "identifier": "commercial-license.LICENSE", + "license_choice": false, + "licenses": [ + "commercial-license" + ] + } + }, + { + "key": "wrox-download", + "score": 100.0, + "short_name": "Wrox Download Terms and Conditions", + "category": "Free Restricted", + "owner": "Wiley", + "homepage_url": "http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:wrox-download", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 115, + "matched_rule": { + "identifier": "wrox-download.LICENSE", + "license_choice": false, + "licenses": [ + "wrox-download" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 118, + "end_line": 150, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + }, + { + "key": "mozilla-ospl-1.0", + "score": 99.93, + "short_name": "Mozilla Open Software Patent License 1.0", + "category": "Patent License", + "owner": "Mozilla", + "homepage_url": "https://www.mozilla.org/en-US/about/patents/license/", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mozilla-ospl-1.0", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 153, + "end_line": 188, + "matched_rule": { + "identifier": "mozilla-ospl-1.0.LICENSE", + "license_choice": false, + "licenses": [ + "mozilla-ospl-1.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017-2018 Francois Hennebique and others." + ], + "holders": [ + "Francois Hennebique and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 1996 Hercules Florence and others." + ], + "holders": [ + "Hercules Florence and others." + ], + "authors": [], + "start_line": 7, + "end_line": 7 + }, + { + "statements": [ + "Copyright (c) 2001-2004 Barthelemy Thimonnier." + ], + "holders": [ + "Barthelemy Thimonnier." + ], + "authors": [], + "start_line": 14, + "end_line": 14 + }, + { + "statements": [ + "Copyright (c) 2015 Edouard-Leon Scott de Martinville." + ], + "holders": [ + "Edouard-Leon Scott de Martinville." + ], + "authors": [], + "start_line": 22, + "end_line": 22 + }, + { + "statements": [ + "Copyright (c) 2012-2014 Henri Dupuy de Lome." + ], + "holders": [ + "Henri Dupuy de Lome." + ], + "authors": [], + "start_line": 28, + "end_line": 28 + }, + { + "statements": [ + "Copyright (c) 2018 Nicolas Grollier de Serviere." + ], + "holders": [ + "Nicolas Grollier de Serviere." + ], + "authors": [], + "start_line": 34, + "end_line": 34 + }, + { + "statements": [ + "Copyright (c) 1999 Ottomar Anschutz." + ], + "holders": [ + "Ottomar Anschutz." + ], + "authors": [], + "start_line": 47, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "apache_to_all_notable_lic_new/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/apache_to_all_notable_lic_old.json b/tests/data/deltacode/apache_to_all_notable_lic_old.json new file mode 100644 index 00000000..4801054e --- /dev/null +++ b/tests/data/deltacode/apache_to_all_notable_lic_old.json @@ -0,0 +1,164 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post32.fea65d35a", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\licenses\\apache_to_all_notable_lic\\apache_to_all_notable_lic_old", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\apache_to_all_notable_lic_old.json", + "--license": true, + "--package": true + }, + "files_count": 2, + "files": [ + { + "path": "apache_to_all_notable_lic_old", + "type": "directory", + "name": "apache_to_all_notable_lic_old", + "base_name": "apache_to_all_notable_lic_old", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 400, + "scan_errors": [] + }, + { + "path": "apache_to_all_notable_lic_old/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 200, + "date": "2018-03-16", + "sha1": "84b647771481d39dd3a53f6dc210c26abac37748", + "md5": "3cb56efa7140478458dbaa2b30239845", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "apache_to_all_notable_lic_old/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/copyleft_etc_to_prop_free_and_commercial_new.json b/tests/data/deltacode/copyleft_etc_to_prop_free_and_commercial_new.json new file mode 100644 index 00000000..8c886731 --- /dev/null +++ b/tests/data/deltacode/copyleft_etc_to_prop_free_and_commercial_new.json @@ -0,0 +1,343 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post32.fea65d35a", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\licenses\\copyleft_etc_to_prop_free_and_commercial\\copyleft_etc_to_prop_free_and_commercial_new", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\copyleft_etc_to_prop_free_and_commercial_new.json", + "--license": true, + "--package": true + }, + "files_count": 2, + "files": [ + { + "path": "copyleft_etc_to_prop_free_and_commercial_new", + "type": "directory", + "name": "copyleft_etc_to_prop_free_and_commercial_new", + "base_name": "copyleft_etc_to_prop_free_and_commercial_new", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 12331, + "scan_errors": [] + }, + { + "path": "copyleft_etc_to_prop_free_and_commercial_new/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 12131, + "date": "2018-03-16", + "sha1": "8f010ddf03240e3537a82eb2bda27c9403a82458", + "md5": "a833907aaa432701efb277693a655127", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_63.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "adapt-1.0", + "score": 15.0, + "short_name": "APL 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "text_url": "http://www.opensource.org/licenses/apl1.0.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:adapt-1.0", + "spdx_license_key": "APL-1.0", + "spdx_url": "https://spdx.org/licenses/APL-1.0", + "start_line": 8, + "end_line": 8, + "matched_rule": { + "identifier": "adapt-1.0_2.RULE", + "license_choice": false, + "licenses": [ + "adapt-1.0" + ] + } + }, + { + "key": "adapt-1.0", + "score": 15.0, + "short_name": "APL 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "text_url": "http://www.opensource.org/licenses/apl1.0.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:adapt-1.0", + "spdx_license_key": "APL-1.0", + "spdx_url": "https://spdx.org/licenses/APL-1.0", + "start_line": 9, + "end_line": 9, + "matched_rule": { + "identifier": "adapt-1.0_2.RULE", + "license_choice": false, + "licenses": [ + "adapt-1.0" + ] + } + }, + { + "key": "bittorrent-1.0", + "score": 100.0, + "short_name": "BitTorrent 1.0", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/license/", + "text_url": "http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bittorrent-1.0", + "spdx_license_key": "BitTorrent-1.0", + "spdx_url": "https://spdx.org/licenses/BitTorrent-1.0", + "start_line": 15, + "end_line": 19, + "matched_rule": { + "identifier": "bittorrent-1.0_1.RULE", + "license_choice": false, + "licenses": [ + "bittorrent-1.0" + ] + } + }, + { + "key": "bloomberg-blpapi", + "score": 100.0, + "short_name": "Bloomberg BLPAPI License", + "category": "Proprietary Free", + "owner": "Bloomberg Labs", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bloomberg-blpapi", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 21, + "end_line": 38, + "matched_rule": { + "identifier": "bloomberg-blpapi.LICENSE", + "license_choice": false, + "licenses": [ + "bloomberg-blpapi" + ] + } + }, + { + "key": "wrox-download", + "score": 100.0, + "short_name": "Wrox Download Terms and Conditions", + "category": "Free Restricted", + "owner": "Wiley", + "homepage_url": "http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:wrox-download", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 43, + "end_line": 51, + "matched_rule": { + "identifier": "wrox-download.LICENSE", + "license_choice": false, + "licenses": [ + "wrox-download" + ] + } + }, + { + "key": "mozilla-ospl-1.0", + "score": 99.93, + "short_name": "Mozilla Open Software Patent License 1.0", + "category": "Patent License", + "owner": "Mozilla", + "homepage_url": "https://www.mozilla.org/en-US/about/patents/license/", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mozilla-ospl-1.0", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 90, + "matched_rule": { + "identifier": "mozilla-ospl-1.0.LICENSE", + "license_choice": false, + "licenses": [ + "mozilla-ospl-1.0" + ] + } + }, + { + "key": "bloomberg-blpapi", + "score": 100.0, + "short_name": "Bloomberg BLPAPI License", + "category": "Proprietary Free", + "owner": "Bloomberg Labs", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bloomberg-blpapi", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 94, + "end_line": 111, + "matched_rule": { + "identifier": "bloomberg-blpapi.LICENSE", + "license_choice": false, + "licenses": [ + "bloomberg-blpapi" + ] + } + }, + { + "key": "broadcom-commercial", + "score": 100.0, + "short_name": "Broadcom Commercial Notice", + "category": "Commercial", + "owner": "Broadcom", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:broadcom-commercial", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 114, + "end_line": 118, + "matched_rule": { + "identifier": "broadcom-commercial.LICENSE", + "license_choice": false, + "licenses": [ + "broadcom-commercial" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017-2018 Francois Hennebique and others." + ], + "holders": [ + "Francois Hennebique and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 1996 Hercules Florence and others." + ], + "holders": [ + "Hercules Florence and others." + ], + "authors": [], + "start_line": 7, + "end_line": 7 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "copyleft_etc_to_prop_free_and_commercial_new/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/copyleft_etc_to_prop_free_and_commercial_old.json b/tests/data/deltacode/copyleft_etc_to_prop_free_and_commercial_old.json new file mode 100644 index 00000000..e0ec1db5 --- /dev/null +++ b/tests/data/deltacode/copyleft_etc_to_prop_free_and_commercial_old.json @@ -0,0 +1,280 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post32.fea65d35a", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\licenses\\copyleft_etc_to_prop_free_and_commercial\\copyleft_etc_to_prop_free_and_commercial_old", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\copyleft_etc_to_prop_free_and_commercial_old.json", + "--license": true, + "--package": true + }, + "files_count": 2, + "files": [ + { + "path": "copyleft_etc_to_prop_free_and_commercial_old", + "type": "directory", + "name": "copyleft_etc_to_prop_free_and_commercial_old", + "base_name": "copyleft_etc_to_prop_free_and_commercial_old", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 9941, + "scan_errors": [] + }, + { + "path": "copyleft_etc_to_prop_free_and_commercial_old/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 9741, + "date": "2018-03-16", + "sha1": "e26e38daffda426e74c94258e111b9eb4f76caeb", + "md5": "91b31e4f48cfea8e6dc3ef557143f6cb", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_63.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "adapt-1.0", + "score": 15.0, + "short_name": "APL 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "text_url": "http://www.opensource.org/licenses/apl1.0.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:adapt-1.0", + "spdx_license_key": "APL-1.0", + "spdx_url": "https://spdx.org/licenses/APL-1.0", + "start_line": 8, + "end_line": 8, + "matched_rule": { + "identifier": "adapt-1.0_2.RULE", + "license_choice": false, + "licenses": [ + "adapt-1.0" + ] + } + }, + { + "key": "adapt-1.0", + "score": 15.0, + "short_name": "APL 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "text_url": "http://www.opensource.org/licenses/apl1.0.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:adapt-1.0", + "spdx_license_key": "APL-1.0", + "spdx_url": "https://spdx.org/licenses/APL-1.0", + "start_line": 9, + "end_line": 9, + "matched_rule": { + "identifier": "adapt-1.0_2.RULE", + "license_choice": false, + "licenses": [ + "adapt-1.0" + ] + } + }, + { + "key": "bittorrent-1.0", + "score": 100.0, + "short_name": "BitTorrent 1.0", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/license/", + "text_url": "http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bittorrent-1.0", + "spdx_license_key": "BitTorrent-1.0", + "spdx_url": "https://spdx.org/licenses/BitTorrent-1.0", + "start_line": 15, + "end_line": 19, + "matched_rule": { + "identifier": "bittorrent-1.0_1.RULE", + "license_choice": false, + "licenses": [ + "bittorrent-1.0" + ] + } + }, + { + "key": "wrox-download", + "score": 100.0, + "short_name": "Wrox Download Terms and Conditions", + "category": "Free Restricted", + "owner": "Wiley", + "homepage_url": "http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:wrox-download", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 23, + "end_line": 31, + "matched_rule": { + "identifier": "wrox-download.LICENSE", + "license_choice": false, + "licenses": [ + "wrox-download" + ] + } + }, + { + "key": "mozilla-ospl-1.0", + "score": 99.93, + "short_name": "Mozilla Open Software Patent License 1.0", + "category": "Patent License", + "owner": "Mozilla", + "homepage_url": "https://www.mozilla.org/en-US/about/patents/license/", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mozilla-ospl-1.0", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 35, + "end_line": 70, + "matched_rule": { + "identifier": "mozilla-ospl-1.0.LICENSE", + "license_choice": false, + "licenses": [ + "mozilla-ospl-1.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017-2018 Francois Hennebique and others." + ], + "holders": [ + "Francois Hennebique and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 1996 Hercules Florence and others." + ], + "holders": [ + "Hercules Florence and others." + ], + "authors": [], + "start_line": 7, + "end_line": 7 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "copyleft_etc_to_prop_free_and_commercial_old/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/no_lic_to_all_notable_lic_new.json b/tests/data/deltacode/no_lic_to_all_notable_lic_new.json new file mode 100644 index 00000000..59663036 --- /dev/null +++ b/tests/data/deltacode/no_lic_to_all_notable_lic_new.json @@ -0,0 +1,461 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post32.fea65d35a", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\licenses\\no_lic_to_all_notable_lic\\no_lic_to_all_notable_lic_new", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\no_lic_to_all_notable_lic_new.json", + "--license": true, + "--package": true + }, + "files_count": 2, + "files": [ + { + "path": "no_lic_to_all_notable_lic_new", + "type": "directory", + "name": "no_lic_to_all_notable_lic_new", + "base_name": "no_lic_to_all_notable_lic_new", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 16471, + "scan_errors": [] + }, + { + "path": "no_lic_to_all_notable_lic_new/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 16271, + "date": "2018-03-16", + "sha1": "535b9966048ad50a9d5eb2f167c0a3013ee5cc6f", + "md5": "e5658fe520bbebaf6f3d4be2e2525ab6", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_63.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "adapt-1.0", + "score": 15.0, + "short_name": "APL 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "text_url": "http://www.opensource.org/licenses/apl1.0.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:adapt-1.0", + "spdx_license_key": "APL-1.0", + "spdx_url": "https://spdx.org/licenses/APL-1.0", + "start_line": 8, + "end_line": 8, + "matched_rule": { + "identifier": "adapt-1.0_2.RULE", + "license_choice": false, + "licenses": [ + "adapt-1.0" + ] + } + }, + { + "key": "adapt-1.0", + "score": 15.0, + "short_name": "APL 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "text_url": "http://www.opensource.org/licenses/apl1.0.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:adapt-1.0", + "spdx_license_key": "APL-1.0", + "spdx_url": "https://spdx.org/licenses/APL-1.0", + "start_line": 9, + "end_line": 9, + "matched_rule": { + "identifier": "adapt-1.0_2.RULE", + "license_choice": false, + "licenses": [ + "adapt-1.0" + ] + } + }, + { + "key": "carnegie-mellon", + "score": 100.0, + "short_name": "Carnegie Mellon License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:carnegie-mellon", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 35, + "end_line": 43, + "matched_rule": { + "identifier": "carnegie-mellon.LICENSE", + "license_choice": false, + "licenses": [ + "carnegie-mellon" + ] + } + }, + { + "key": "cc-by-sa-4.0", + "score": 30.0, + "short_name": "CC-BY-SA-4.0", + "category": "Copyleft", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "text_url": "http://creativecommons.org/licenses/by-sa/4.0/legalcode", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-sa-4.0", + "spdx_license_key": "CC-BY-SA-4.0", + "spdx_url": "https://spdx.org/licenses/CC-BY-SA-4.0", + "start_line": 48, + "end_line": 48, + "matched_rule": { + "identifier": "cc-by-sa-4.0_5.RULE", + "license_choice": false, + "licenses": [ + "cc-by-sa-4.0" + ] + } + }, + { + "key": "bittorrent-1.0", + "score": 100.0, + "short_name": "BitTorrent 1.0", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/license/", + "text_url": "http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bittorrent-1.0", + "spdx_license_key": "BitTorrent-1.0", + "spdx_url": "https://spdx.org/licenses/BitTorrent-1.0", + "start_line": 65, + "end_line": 69, + "matched_rule": { + "identifier": "bittorrent-1.0_1.RULE", + "license_choice": false, + "licenses": [ + "bittorrent-1.0" + ] + } + }, + { + "key": "bloomberg-blpapi", + "score": 100.0, + "short_name": "Bloomberg BLPAPI License", + "category": "Proprietary Free", + "owner": "Bloomberg Labs", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bloomberg-blpapi", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 88, + "matched_rule": { + "identifier": "bloomberg-blpapi.LICENSE", + "license_choice": false, + "licenses": [ + "bloomberg-blpapi" + ] + } + }, + { + "key": "bsd-3-clause-no-nuclear-warranty", + "score": 100.0, + "short_name": "Oracle BSD-Style with Nuclear Warranty", + "category": "Permissive", + "owner": "Oracle Corporation", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-3-clause-no-nuclear-warranty", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty", + "start_line": 91, + "end_line": 100, + "matched_rule": { + "identifier": "bsd-3-clause-no-nuclear-warranty.LICENSE", + "license_choice": false, + "licenses": [ + "bsd-3-clause-no-nuclear-warranty" + ] + } + }, + { + "key": "commercial-license", + "score": 55.0, + "short_name": "Commercial License", + "category": "Commercial", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:commercial-license", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 103, + "matched_rule": { + "identifier": "commercial-license.LICENSE", + "license_choice": false, + "licenses": [ + "commercial-license" + ] + } + }, + { + "key": "wrox-download", + "score": 100.0, + "short_name": "Wrox Download Terms and Conditions", + "category": "Free Restricted", + "owner": "Wiley", + "homepage_url": "http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:wrox-download", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 115, + "matched_rule": { + "identifier": "wrox-download.LICENSE", + "license_choice": false, + "licenses": [ + "wrox-download" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 118, + "end_line": 150, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + }, + { + "key": "mozilla-ospl-1.0", + "score": 99.93, + "short_name": "Mozilla Open Software Patent License 1.0", + "category": "Patent License", + "owner": "Mozilla", + "homepage_url": "https://www.mozilla.org/en-US/about/patents/license/", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mozilla-ospl-1.0", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 153, + "end_line": 188, + "matched_rule": { + "identifier": "mozilla-ospl-1.0.LICENSE", + "license_choice": false, + "licenses": [ + "mozilla-ospl-1.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017-2018 Francois Hennebique and others." + ], + "holders": [ + "Francois Hennebique and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 1996 Hercules Florence and others." + ], + "holders": [ + "Hercules Florence and others." + ], + "authors": [], + "start_line": 7, + "end_line": 7 + }, + { + "statements": [ + "Copyright (c) 2001-2004 Barthelemy Thimonnier." + ], + "holders": [ + "Barthelemy Thimonnier." + ], + "authors": [], + "start_line": 14, + "end_line": 14 + }, + { + "statements": [ + "Copyright (c) 2015 Edouard-Leon Scott de Martinville." + ], + "holders": [ + "Edouard-Leon Scott de Martinville." + ], + "authors": [], + "start_line": 22, + "end_line": 22 + }, + { + "statements": [ + "Copyright (c) 2012-2014 Henri Dupuy de Lome." + ], + "holders": [ + "Henri Dupuy de Lome." + ], + "authors": [], + "start_line": 28, + "end_line": 28 + }, + { + "statements": [ + "Copyright (c) 2018 Nicolas Grollier de Serviere." + ], + "holders": [ + "Nicolas Grollier de Serviere." + ], + "authors": [], + "start_line": 34, + "end_line": 34 + }, + { + "statements": [ + "Copyright (c) 1999 Ottomar Anschutz." + ], + "holders": [ + "Ottomar Anschutz." + ], + "authors": [], + "start_line": 47, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "no_lic_to_all_notable_lic_new/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/no_lic_to_all_notable_lic_old.json b/tests/data/deltacode/no_lic_to_all_notable_lic_old.json new file mode 100644 index 00000000..bd921012 --- /dev/null +++ b/tests/data/deltacode/no_lic_to_all_notable_lic_old.json @@ -0,0 +1,130 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post32.fea65d35a", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\licenses\\no_lic_to_all_notable_lic\\no_lic_to_all_notable_lic_old", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\no_lic_to_all_notable_lic_old.json", + "--license": true, + "--package": true + }, + "files_count": 2, + "files": [ + { + "path": "no_lic_to_all_notable_lic_old", + "type": "directory", + "name": "no_lic_to_all_notable_lic_old", + "base_name": "no_lic_to_all_notable_lic_old", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 255, + "scan_errors": [] + }, + { + "path": "no_lic_to_all_notable_lic_old/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 55, + "date": "2018-03-16", + "sha1": "0d17f1c2b6b82e8c7eec1fdad94c028b679518ff", + "md5": "a2272cfafc4dff14c008db5c5ddde6a9", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "no_lic_to_all_notable_lic_old/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/openssl-1.1.0e.json b/tests/data/deltacode/openssl-1.1.0e.json new file mode 100644 index 00000000..19302af4 --- /dev/null +++ b/tests/data/deltacode/openssl-1.1.0e.json @@ -0,0 +1,144680 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post8.2a658c314", + "scancode_options": { + "input": "C:\\Users\\JMH\\Downloads\\nexB\\openssl-1.1.0e", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\openssl-1.1.0e.json", + "--license": true, + "--package": true + }, + "files_count": 2383, + "files": [ + { + "path": "openssl-1.1.0e", + "type": "directory", + "name": "openssl-1.1.0e", + "base_name": "openssl-1.1.0e", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2383, + "dirs_count": 134, + "size_count": 22421015, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/.travis-create-release.sh", + "type": "file", + "name": ".travis-create-release.sh", + "base_name": ".travis-create-release", + "extension": ".sh", + "size": 258, + "date": "2017-02-16", + "sha1": "3ebc957dc7bebabcb23eb4c67f6aee702393e779", + "md5": "aa0c76e36c486bb7d81d8bab92c3943b", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/.travis.yml", + "type": "file", + "name": ".travis.yml", + "base_name": ".travis", + "extension": ".yml", + "size": 4983, + "date": "2017-02-16", + "sha1": "417ccad821fb90bd049532f7527d8a1080e1176b", + "md5": "e4beb51e5628b595830608f0eb6a4e5c", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ACKNOWLEDGEMENTS", + "type": "file", + "name": "ACKNOWLEDGEMENTS", + "base_name": "ACKNOWLEDGEMENTS", + "extension": "", + "size": 87, + "date": "2017-02-16", + "sha1": "a427ce5add277b062790adc6d03b1721d0e97da4", + "md5": "cb0ec3e273abef55cf69e3daf0eb1aa7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/appveyor.yml", + "type": "file", + "name": "appveyor.yml", + "base_name": "appveyor", + "extension": ".yml", + "size": 1138, + "date": "2017-02-16", + "sha1": "12d5328df28599ddd091eb613bfb64ed094d84bc", + "md5": "d8ec55cda42215084f08bf1c29a59add", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/AUTHORS", + "type": "file", + "name": "AUTHORS", + "base_name": "AUTHORS", + "extension": "", + "size": 362, + "date": "2017-02-16", + "sha1": "ffa1c3047326caa9055a5ea6c408ae44aee65619", + "md5": "cd97ff72805cc3e6c75c4cac00825f8e", + "mime_type": "text/plain", + "file_type": "ISO-8859 text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 2282, + "date": "2017-02-16", + "sha1": "7ce413e27f2f7932f7e393d07045e759be527a55", + "md5": "2d229e58b3d515daefc54200fd02a295", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/CHANGES", + "type": "file", + "name": "CHANGES", + "base_name": "CHANGES", + "extension": "", + "size": 542114, + "date": "2017-02-16", + "sha1": "3d166af538854bed257fe841a85f05374f39e8e8", + "md5": "910088cf8a85ba4a265eee5d09d73ea8", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 916, + "end_line": 916, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + }, + { + "key": "apache-2.0", + "score": 25.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 2741, + "end_line": 2741, + "matched_rule": { + "identifier": "apache-2.0_48.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "proprietary", + "score": 15.0, + "short_name": "Proprietary", + "category": "Proprietary Free", + "owner": "nexB", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:proprietary", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4882, + "end_line": 4882, + "matched_rule": { + "identifier": "non-commercial4.RULE", + "license_choice": false, + "licenses": [ + "proprietary" + ] + } + }, + { + "key": "proprietary", + "score": 10.0, + "short_name": "Proprietary", + "category": "Proprietary Free", + "owner": "nexB", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:proprietary", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5514, + "end_line": 5514, + "matched_rule": { + "identifier": "proprietary_18.RULE", + "license_choice": false, + "licenses": [ + "proprietary" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 9778, + "end_line": 9778, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 11759, + "end_line": 11759, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Stephen Henson of the OpenSSL core team." + ], + "start_line": 2291, + "end_line": 2292 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov of the OpenSSL core team." + ], + "start_line": 2301, + "end_line": 2306 + }, + { + "statements": [], + "holders": [], + "authors": [ + "the OpenSSL team. (CVE-2014-3513) OpenSSL team" + ], + "start_line": 2342, + "end_line": 2344 + }, + { + "statements": [], + "holders": [], + "authors": [ + "EAP-FAST. Jouni Malinen " + ], + "start_line": 3231, + "end_line": 3232 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nils Larsch " + ], + "start_line": 5250, + "end_line": 5253 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Crispin Flowerday " + ], + "start_line": 6115, + "end_line": 6118 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Crispin Flowerday " + ], + "start_line": 6138, + "end_line": 6141 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Yngve Nysaeter Pettersen " + ], + "start_line": 6280, + "end_line": 6281 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Solar Designer " + ], + "start_line": 6323, + "end_line": 6324 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Toomas Kiisk " + ], + "start_line": 6446, + "end_line": 6447 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Douglas E. Engert " + ], + "start_line": 6668, + "end_line": 6671 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Diego Tartara " + ], + "start_line": 6913, + "end_line": 6914 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Lenka Fibikova " + ], + "start_line": 7116, + "end_line": 7118 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Massimiliano Pala " + ], + "start_line": 7401, + "end_line": 7402 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Kenneth R. Robinette " + ], + "start_line": 7411, + "end_line": 7413 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Kenneth R. Robinette " + ], + "start_line": 7425, + "end_line": 7427 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Steve Haslam " + ], + "start_line": 8042, + "end_line": 8044 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sam Varshavchik " + ], + "start_line": 8089, + "end_line": 8092 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Arne Ansper " + ], + "start_line": 8202, + "end_line": 8206 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Tom Wu " + ], + "start_line": 8226, + "end_line": 8228 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Yoram Zahavi " + ], + "start_line": 8238, + "end_line": 8240 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Izhar Shoshani Levi " + ], + "start_line": 8246, + "end_line": 8250 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Dominikus Scherkl " + ], + "start_line": 8297, + "end_line": 8299 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Rich Salz " + ], + "start_line": 8355, + "end_line": 8359 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Schneider " + ], + "start_line": 8388, + "end_line": 8389 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Jim Ellis " + ], + "start_line": 8425, + "end_line": 8426 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Adam Young " + ], + "start_line": 8429, + "end_line": 8431 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Douglas E. Engert " + ], + "start_line": 8439, + "end_line": 8441 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Markku-Juhani O. Saarinen " + ], + "start_line": 8537, + "end_line": 8540 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Heyun Zheng " + ], + "start_line": 8649, + "end_line": 8650 + }, + { + "statements": [], + "holders": [], + "authors": [ + "shige@FreeBSD.org" + ], + "start_line": 8661, + "end_line": 8663 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Massimiliano Pala " + ], + "start_line": 8717, + "end_line": 8719 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 8816, + "end_line": 8820 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Day " + ], + "start_line": 8830, + "end_line": 8833 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Reddie, Steven " + ], + "start_line": 8838, + "end_line": 8842 + }, + { + "statements": [], + "holders": [], + "authors": [ + "by_dir.c Jean-Marc Desperrier " + ], + "start_line": 8898, + "end_line": 8899 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Anders Gertz " + ], + "start_line": 8918, + "end_line": 8922 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Damien Miller " + ], + "start_line": 9006, + "end_line": 9011 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sven Heiberg " + ], + "start_line": 9167, + "end_line": 9168 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Rene Grosser " + ], + "start_line": 9511, + "end_line": 9512 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Michael Attili " + ], + "start_line": 9612, + "end_line": 9614 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Yost William " + ], + "start_line": 9617, + "end_line": 9618 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Brian Korver " + ], + "start_line": 9632, + "end_line": 9633 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andrew W. Gray " + ], + "start_line": 9743, + "end_line": 9744 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Peter Runestig " + ], + "start_line": 9752, + "end_line": 9755 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David Sacerdote " + ], + "start_line": 9777, + "end_line": 9779 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by Ulf Moller" + ], + "start_line": 10049, + "end_line": 10050 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by Steve Henson" + ], + "start_line": 10284, + "end_line": 10285 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by Steve Henson" + ], + "start_line": 10460, + "end_line": 10461 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sampo Kellomaki " + ], + "start_line": 10659, + "end_line": 10662 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Arne Ansper " + ], + "start_line": 10664, + "end_line": 10667 + }, + { + "statements": [], + "holders": [], + "authors": [ + "ian@uns.ns.ac.yu" + ], + "start_line": 10680, + "end_line": 10681 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Doug Erickson " + ], + "start_line": 10968, + "end_line": 10969 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Brian Wellington " + ], + "start_line": 11011, + "end_line": 11012 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Brien Wheeler " + ], + "start_line": 11026, + "end_line": 11030 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by Ulf Moller" + ], + "start_line": 11341, + "end_line": 11342 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Jeremy Hylton " + ], + "start_line": 12093, + "end_line": 12094 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Jun-ichiro itojun Hagino " + ], + "start_line": 12110, + "end_line": 12112 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Ulf Moller " + ], + "start_line": 12270, + "end_line": 12272 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/config", + "type": "file", + "name": "config", + "base_name": "config", + "extension": "", + "size": 27730, + "date": "2017-02-16", + "sha1": "aed4b0b7a55a2eda959e181f1ee9dfea8dee540d", + "md5": "21aa8f442ddd9a389549635f94440ca5", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/config.com", + "type": "file", + "name": "config.com", + "base_name": "config", + "extension": ".com", + "size": 2507, + "date": "2017-02-16", + "sha1": "0b19cef8268e8784bf661d2460516eaed97b7c65", + "md5": "71586d012b7265bf2dafa104de2df6ef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configure", + "type": "file", + "name": "Configure", + "base_name": "Configure", + "extension": "", + "size": 91937, + "date": "2017-02-16", + "sha1": "15230f0efabe4ef2d6bc14afb30a8302853af503", + "md5": "951d838f723039d078d9ae215bf80a4e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable, with very long lines", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/CONTRIBUTING", + "type": "file", + "name": "CONTRIBUTING", + "base_name": "CONTRIBUTING", + "extension": "", + "size": 2600, + "date": "2017-02-16", + "sha1": "d1b30b40093370992f9baa9dd4a6835cccdf679c", + "md5": "a74ddc3425c84c47516c225be33dcb2e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 31, + "end_line": 34, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 20xx-20yy The OpenSSL Project" + ], + "holders": [ + "20xx-20yy The OpenSSL Project" + ], + "authors": [], + "start_line": 29, + "end_line": 29 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/e_os.h", + "type": "file", + "name": "e_os.h", + "base_name": "e_os", + "extension": ".h", + "size": 15082, + "date": "2017-02-16", + "sha1": "1298a2440a9ca4c3cd6bcfb6e433834ed764b17d", + "md5": "ed41905678d10b1a5e1c3d3de45b81f6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/FAQ", + "type": "file", + "name": "FAQ", + "base_name": "FAQ", + "extension": "", + "size": 84, + "date": "2017-02-16", + "sha1": "32d2fc529184d69f61412a867ccd24cdbc161a94", + "md5": "773609f5df921846200ffdadb8183fd2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/INSTALL", + "type": "file", + "name": "INSTALL", + "base_name": "INSTALL", + "extension": "", + "size": 40020, + "date": "2017-02-16", + "sha1": "68b593e919256c30093b494e88c08e86a866c3e4", + "md5": "321104a78d4c05d90d5a6e6c6be12511", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Django/Jinja", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 6126, + "date": "2017-02-16", + "sha1": "102073b66c9be39953f62af2eb238629f7d50883", + "md5": "2100bdc885ac4cdc9783c562639ddc1f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 6, + "end_line": 6, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 9, + "end_line": 9, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 99.75, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 15, + "end_line": 123, + "matched_rule": { + "identifier": "openssl-ssleay.SPDX.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998-2016 The OpenSSL Project." + ], + "holders": [ + "The OpenSSL Project." + ], + "authors": [], + "start_line": 13, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "the OpenSSL Project" + ], + "start_line": 28, + "end_line": 30 + }, + { + "statements": [], + "holders": [], + "authors": [ + "the OpenSSL Project" + ], + "start_line": 42, + "end_line": 44 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Young (eay@cryptsoft.com).", + "Tim Hudson (tjh@cryptsoft.com)." + ], + "start_line": 60, + "end_line": 62 + }, + { + "statements": [ + "Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com)" + ], + "holders": [ + "Eric Young" + ], + "authors": [], + "start_line": 69, + "end_line": 70 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Young (eay@cryptsoft.com)." + ], + "start_line": 72, + "end_line": 74 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Young (eay@cryptsoft.com)" + ], + "start_line": 99, + "end_line": 104 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Tim Hudson (tjh@cryptsoft.com)" + ], + "start_line": 105, + "end_line": 106 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Makefile.shared", + "type": "file", + "name": "Makefile.shared", + "base_name": "Makefile", + "extension": ".shared", + "size": 21571, + "date": "2017-02-16", + "sha1": "970a448b0bc854df2f60f66eaf385f439e842e00", + "md5": "29c0a2ffba2ede31df397806bcde57c3", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/NEWS", + "type": "file", + "name": "NEWS", + "base_name": "NEWS", + "extension": "", + "size": 37195, + "date": "2017-02-16", + "sha1": "5f2921835eb37f80d93624e91b7a79ddc1380fbc", + "md5": "bf6fddbb4ec2007a26abbd0fe39a1971", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/NOTES.DJGPP", + "type": "file", + "name": "NOTES.DJGPP", + "base_name": "NOTES", + "extension": ".DJGPP", + "size": 2095, + "date": "2017-02-16", + "sha1": "d177279f8735c9ed8fe0a5455687e0e9e78ae758", + "md5": "66772d0e37175ba95536d98b3462dc7e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/NOTES.PERL", + "type": "file", + "name": "NOTES.PERL", + "base_name": "NOTES", + "extension": ".PERL", + "size": 4580, + "date": "2017-02-16", + "sha1": "5780c5c910ff1579160b3a6edb6bbbc93ccf849b", + "md5": "c995e68aa7123d69a898b0e4ad8c769d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/NOTES.VMS", + "type": "file", + "name": "NOTES.VMS", + "base_name": "NOTES", + "extension": ".VMS", + "size": 2738, + "date": "2017-02-16", + "sha1": "270fe58256ecc7f833b965df696c60d789076e97", + "md5": "c2f574dd15622555ee81eb52157f9ff9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/NOTES.WIN", + "type": "file", + "name": "NOTES.WIN", + "base_name": "NOTES", + "extension": ".WIN", + "size": 5272, + "date": "2017-02-16", + "sha1": "4b143f3187beb0db7f9953af9dca0c427d82eb60", + "md5": "24010be914c9d1f9f9615855dbfece2b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 3210, + "date": "2017-02-16", + "sha1": "6308e562c8a24e8110f9253f857e7949eb0809fe", + "md5": "3954de6887e49b64d583444d6859294f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 18, + "end_line": 18, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998-2016 The OpenSSL Project", + "Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson" + ], + "holders": [ + "The OpenSSL Project", + "Eric A. Young, Tim J. Hudson" + ], + "authors": [], + "start_line": 4, + "end_line": 6 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric A. Young and Tim J. Hudson." + ], + "start_line": 16, + "end_line": 18 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/README.ECC", + "type": "file", + "name": "README.ECC", + "base_name": "README", + "extension": ".ECC", + "size": 3552, + "date": "2017-02-16", + "sha1": "e760e86209467611ecbc0c245f56d0e8167cab04", + "md5": "affbf4223d272900feb731d667546b65", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "ActionScript 3", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/README.ENGINE", + "type": "file", + "name": "README.ENGINE", + "base_name": "README", + "extension": ".ENGINE", + "size": 16087, + "date": "2017-02-16", + "sha1": "12ae93b1acd61b57d63245c61d165a3290cd6217", + "md5": "f5cd0f89b73fc6bb69733ecf1478a156", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/README.FIPS", + "type": "file", + "name": "README.FIPS", + "base_name": "README", + "extension": ".FIPS", + "size": 61, + "date": "2017-02-16", + "sha1": "a7dd1bdcb4958e172df0550192b4260737b572fe", + "md5": "d9843adb59eee61091dd34eecf34607f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps", + "type": "directory", + "name": "apps", + "base_name": "apps", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 101, + "dirs_count": 3, + "size_count": 1399470, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/app_rand.c", + "type": "file", + "name": "app_rand.c", + "base_name": "app_rand", + "extension": ".c", + "size": 3135, + "date": "2017-02-16", + "sha1": "8e51d2ef18f692c0b33c841c1695879bc2a2fcde", + "md5": "45d0d55b31b723c7b1b56e7d49fd8cc4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/apps.c", + "type": "file", + "name": "apps.c", + "base_name": "apps", + "extension": ".c", + "size": 71209, + "date": "2017-02-16", + "sha1": "6fd413f7717f70176d515fdc7711eabde42d7dee", + "md5": "44d9056f44ab405bf88aee89426f22ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/apps.h", + "type": "file", + "name": "apps.h", + "base_name": "apps", + "extension": ".h", + "size": 22618, + "date": "2017-02-16", + "sha1": "ca385c0f33ca6a7fdd088ec627e40f13c841364d", + "md5": "9dcc12672ed04dfd8356e7d2f29fb659", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/asn1pars.c", + "type": "file", + "name": "asn1pars.c", + "base_name": "asn1pars", + "extension": ".c", + "size": 9440, + "date": "2017-02-16", + "sha1": "8d103282b9983373a4bcf0ea2169798d832f8fd2", + "md5": "f5d12c06c74ac038a537244bd4a04ffc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 886, + "date": "2017-02-16", + "sha1": "a7bbfb93c6632a368c9f14aa76812f8f9afe1a1b", + "md5": "36f5aa3911d58406bdf07e7dd1031d65", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ca-cert.srl", + "type": "file", + "name": "ca-cert.srl", + "base_name": "ca-cert", + "extension": ".srl", + "size": 3, + "date": "2017-02-16", + "sha1": "478330af84ea74932db60e35533215de649a06c4", + "md5": "307e629e5c5c1c4d31a678949d81548e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ca-key.pem", + "type": "file", + "name": "ca-key.pem", + "base_name": "ca-key", + "extension": ".pem", + "size": 916, + "date": "2017-02-16", + "sha1": "b40639083bf05ec0941ef9b60ec3733bc5b3457c", + "md5": "a60da154baf6e9b0dc1edd91121ff45b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ca-req.pem", + "type": "file", + "name": "ca-req.pem", + "base_name": "ca-req", + "extension": ".pem", + "size": 635, + "date": "2017-02-16", + "sha1": "d7a0a2e420417c87e6044faa22a5273e9eeb6b2e", + "md5": "1ad1509a232d7a91ed07d392c3878bb4", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ca.c", + "type": "file", + "name": "ca.c", + "base_name": "ca", + "extension": ".c", + "size": 84020, + "date": "2017-02-16", + "sha1": "27e43fada2bfc3ec9ef57b4a431500b80249295f", + "md5": "8b2ab31cb0de95347af9a209676951b2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Jeff Barber " + ], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/CA.pl.in", + "type": "file", + "name": "CA.pl.in", + "base_name": "CA.pl", + "extension": ".in", + "size": 6734, + "date": "2017-02-16", + "sha1": "9792bccba753cf82d2b5f6e025e379fa46c1ad13", + "md5": "c4951bf341673d578563499259ca018d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/cert.pem", + "type": "file", + "name": "cert.pem", + "base_name": "cert", + "extension": ".pem", + "size": 623, + "date": "2017-02-16", + "sha1": "492b05c1c55d013e578bfa20529c2bf17c1537ec", + "md5": "377334238578965de872e01690988532", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ciphers.c", + "type": "file", + "name": "ciphers.c", + "base_name": "ciphers", + "extension": ".c", + "size": 6502, + "date": "2017-02-16", + "sha1": "6a87ca56b0d708a51c4453f4824dd8caac93e663", + "md5": "97e6a176bcca5d29cb3f8cdc7781b0c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/client.pem", + "type": "file", + "name": "client.pem", + "base_name": "client", + "extension": ".pem", + "size": 3285, + "date": "2017-02-16", + "sha1": "5ab9e4a7f5cdca32907a968291e17f0d5799fb4e", + "md5": "050da36823bcde31ce380012f51bce83", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/cms.c", + "type": "file", + "name": "cms.c", + "base_name": "cms", + "extension": ".c", + "size": 44640, + "date": "2017-02-16", + "sha1": "e9836a3e30da3534a41d7806c2a011fb67d6a796", + "md5": "aab5bfb76497d571a6f8c9c528067054", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/crl.c", + "type": "file", + "name": "crl.c", + "base_name": "crl", + "extension": ".c", + "size": 11148, + "date": "2017-02-16", + "sha1": "f149edb0a5d36f87212fb312d61e650f1559c566", + "md5": "412deb99ec856162fefa061364b18c7d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/crl2p7.c", + "type": "file", + "name": "crl2p7.c", + "base_name": "crl2p7", + "extension": ".c", + "size": 6295, + "date": "2017-02-16", + "sha1": "c9a6f573d72d31340b321adc03c4381f3d3c4de1", + "md5": "356f2d2be82d59b0aa192a93e6350edd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ct_log_list.cnf", + "type": "file", + "name": "ct_log_list.cnf", + "base_name": "ct_log_list", + "extension": ".cnf", + "size": 1718, + "date": "2017-02-16", + "sha1": "ce97887e4da8e2eced6a2c3143bd505906f154c8", + "md5": "d0e24abd84cc5cbbd89af24b852080d9", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dgst.c", + "type": "file", + "name": "dgst.c", + "base_name": "dgst", + "extension": ".c", + "size": 15020, + "date": "2017-02-16", + "sha1": "22ce92c7c5024544c79e67cad07bfe6bcb211927", + "md5": "eaab10b9f65d3b305ba67ea1573ea132", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dh1024.pem", + "type": "file", + "name": "dh1024.pem", + "base_name": "dh1024", + "extension": ".pem", + "size": 447, + "date": "2017-02-16", + "sha1": "3b2b727f77bcf6919226ad0a66693254551c94b0", + "md5": "9ed8d235002fee23e2e442687388e920", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dh2048.pem", + "type": "file", + "name": "dh2048.pem", + "base_name": "dh2048", + "extension": ".pem", + "size": 664, + "date": "2017-02-16", + "sha1": "a198447a3985ab3aeab09be3e615160d7e24276d", + "md5": "b00063fbd018f6dfd717c255a9c4d2a0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dh4096.pem", + "type": "file", + "name": "dh4096.pem", + "base_name": "dh4096", + "extension": ".pem", + "size": 1009, + "date": "2017-02-16", + "sha1": "9a18237d3b233e5d9e2309e209f53237fcd0abb8", + "md5": "531ca4e3f049fc8a11f0eb31cd7c47b1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dhparam.c", + "type": "file", + "name": "dhparam.c", + "base_name": "dhparam", + "extension": ".c", + "size": 11609, + "date": "2017-02-16", + "sha1": "66f623daa6c9a2e00a8956d92c869c20f782ddef", + "md5": "1213631c42ac1ffa3b5fbddb36d69367", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dsa-ca.pem", + "type": "file", + "name": "dsa-ca.pem", + "base_name": "dsa-ca", + "extension": ".pem", + "size": 2723, + "date": "2017-02-16", + "sha1": "aa512a1abbf6e49cbe7b9e44d15b523a535dd0f7", + "md5": "1506a8960400373d3dde003727a58c1a", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dsa-pca.pem", + "type": "file", + "name": "dsa-pca.pem", + "base_name": "dsa-pca", + "extension": ".pem", + "size": 2731, + "date": "2017-02-16", + "sha1": "ccbf494607ef1f5c8eb06e2b1d6481c3d44dd4b1", + "md5": "4d19ab93482e58cd2a4cb888ba8cfae0", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dsa.c", + "type": "file", + "name": "dsa.c", + "base_name": "dsa", + "extension": ".c", + "size": 7718, + "date": "2017-02-16", + "sha1": "551552addbd10c2f6415d1162efd8a9fd59b8dd5", + "md5": "b4f9aee48d57ee1176320efd6af43fdf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dsa1024.pem", + "type": "file", + "name": "dsa1024.pem", + "base_name": "dsa1024", + "extension": ".pem", + "size": 455, + "date": "2017-02-16", + "sha1": "6099c13e1f32e59f3d2ef646d94db129e902cff8", + "md5": "fa65f1be4d8c89c61e74143cd0b10c60", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dsa512.pem", + "type": "file", + "name": "dsa512.pem", + "base_name": "dsa512", + "extension": ".pem", + "size": 280, + "date": "2017-02-16", + "sha1": "9c6c0494703a46beecae0881a0eeb50b55cda92a", + "md5": "9fb25b01f87ca6adb9547be842e63ae0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dsap.pem", + "type": "file", + "name": "dsap.pem", + "base_name": "dsap", + "extension": ".pem", + "size": 276, + "date": "2017-02-16", + "sha1": "43275eb6a34dd904b606ad8070bf5e0648d51185", + "md5": "9e7a855ed327b2423779801600a04344", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/dsaparam.c", + "type": "file", + "name": "dsaparam.c", + "base_name": "dsaparam", + "extension": ".c", + "size": 9141, + "date": "2017-02-16", + "sha1": "f8f353160dad10b72f57976b554ba7557232bffa", + "md5": "8244b2f3124158a2faca618f2822bf14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ec.c", + "type": "file", + "name": "ec.c", + "base_name": "ec", + "extension": ".c", + "size": 8346, + "date": "2017-02-16", + "sha1": "3e0f455523454914b4ed96664ee636ed57302b26", + "md5": "bc67000605d4c104be08d5e3d891556c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ecparam.c", + "type": "file", + "name": "ecparam.c", + "base_name": "ecparam", + "extension": ".c", + "size": 15776, + "date": "2017-02-16", + "sha1": "775d88e55933f16a05b605edde1d2dde9cd905b4", + "md5": "f9c54e53b01626af50cc8887307ca325", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/enc.c", + "type": "file", + "name": "enc.c", + "base_name": "enc", + "extension": ".c", + "size": 18416, + "date": "2017-02-16", + "sha1": "471b6485d58a2c1a535c2a0dc30309c80f6db95d", + "md5": "a1b14a2b0ffdd9c3952fa30002ba3ee1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Larry J. Hughes Jr. " + ], + "start_line": 432, + "end_line": 433 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/engine.c", + "type": "file", + "name": "engine.c", + "base_name": "engine", + "extension": ".c", + "size": 14728, + "date": "2017-02-16", + "sha1": "66bb79f4000994cc20de18a96c87e37d84c1b43f", + "md5": "27e18b71244c0e868ca6caea6b5b1694", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/errstr.c", + "type": "file", + "name": "errstr.c", + "base_name": "errstr", + "extension": ".c", + "size": 1875, + "date": "2017-02-16", + "sha1": "292cd6ee916eac4d9c043402c1e1739a797ef601", + "md5": "7dc472044e8411c1fa44971a360521a9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/gendsa.c", + "type": "file", + "name": "gendsa.c", + "base_name": "gendsa", + "extension": ".c", + "size": 4128, + "date": "2017-02-16", + "sha1": "c5ead848df17c6727a7ac723d9165c1ee3e5a205", + "md5": "b3cd57c625c7a152941d72545c22513a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/genpkey.c", + "type": "file", + "name": "genpkey.c", + "base_name": "genpkey", + "extension": ".c", + "size": 8409, + "date": "2017-02-16", + "sha1": "ad784592dc982618f9664615f7ebc0a9c581ce10", + "md5": "39c0d9b8bb594d2e1226dde44f0e4c02", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/genrsa.c", + "type": "file", + "name": "genrsa.c", + "base_name": "genrsa", + "extension": ".c", + "size": 5231, + "date": "2017-02-16", + "sha1": "5d4d57d39ec1229487627120c6743feeaa120e30", + "md5": "c1961259170ce43b4d823bb8194a1f33", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/nseq.c", + "type": "file", + "name": "nseq.c", + "base_name": "nseq", + "extension": ".c", + "size": 3051, + "date": "2017-02-16", + "sha1": "0400486e0ae2b202f1aa4a51b4a14ad3b5b2304c", + "md5": "07fc9e63a2761da793dec9068cbb1264", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ocsp.c", + "type": "file", + "name": "ocsp.c", + "base_name": "ocsp", + "extension": ".c", + "size": 40859, + "date": "2017-02-16", + "sha1": "ecee6dec9052c63fb7521bb9aa9b682f3e96f859", + "md5": "c981d577bb923a5bfb064e4e0daa7568", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/openssl-vms.cnf", + "type": "file", + "name": "openssl-vms.cnf", + "base_name": "openssl-vms", + "extension": ".cnf", + "size": 10798, + "date": "2017-02-16", + "sha1": "ec289eefe637c426c3760f6ca5285dbf92b587e9", + "md5": "27e586488d90091df01a50f9d9f96486", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/openssl.c", + "type": "file", + "name": "openssl.c", + "base_name": "openssl", + "extension": ".c", + "size": 17577, + "date": "2017-02-16", + "sha1": "3529f67218a94c98c441d9a1dd60223e99d0a734", + "md5": "008772f4862a794ab72f1c4c33ac343e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/openssl.cnf", + "type": "file", + "name": "openssl.cnf", + "base_name": "openssl", + "extension": ".cnf", + "size": 10771, + "date": "2017-02-16", + "sha1": "15659a84fdba7b60fbcc7892ebababf79dee0340", + "md5": "f697ef5df0d006882e6326606e8dbf4a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/opt.c", + "type": "file", + "name": "opt.c", + "base_name": "opt", + "extension": ".c", + "size": 26690, + "date": "2017-02-16", + "sha1": "d753b8461f4a6254b4ad585ad85126b1d23663ca", + "md5": "b433d1701f7963597815d21d1e7a1ffe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/passwd.c", + "type": "file", + "name": "passwd.c", + "base_name": "passwd", + "extension": ".c", + "size": 15411, + "date": "2017-02-16", + "sha1": "3356644073c512423236a9fce4665f8743a6f736", + "md5": "ebd2e95c26c507288d0f42aa352c5950", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pca-cert.srl", + "type": "file", + "name": "pca-cert.srl", + "base_name": "pca-cert", + "extension": ".srl", + "size": 3, + "date": "2017-02-16", + "sha1": "478330af84ea74932db60e35533215de649a06c4", + "md5": "307e629e5c5c1c4d31a678949d81548e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pca-key.pem", + "type": "file", + "name": "pca-key.pem", + "base_name": "pca-key", + "extension": ".pem", + "size": 916, + "date": "2017-02-16", + "sha1": "a724ebfa8fc4e5b797bd90c143a933073fe9cea8", + "md5": "fc8b8ff65a482e3d5fd6f4546f408f30", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pca-req.pem", + "type": "file", + "name": "pca-req.pem", + "base_name": "pca-req", + "extension": ".pem", + "size": 635, + "date": "2017-02-16", + "sha1": "6f1b190290b985330fd57bc50984449b3dd8a00d", + "md5": "98ef3edb85a9494d449817637acd7b0d", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pkcs12.c", + "type": "file", + "name": "pkcs12.c", + "base_name": "pkcs12", + "extension": ".c", + "size": 30073, + "date": "2017-02-16", + "sha1": "f0ff2030fe49e1d2e3cef5c3b6462182842bf55f", + "md5": "61d17e9d6814ea7b8ed5abdd55cd8812", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pkcs7.c", + "type": "file", + "name": "pkcs7.c", + "base_name": "pkcs7", + "extension": ".c", + "size": 5470, + "date": "2017-02-16", + "sha1": "a7d29c5440d54c4884f3647100276aed6b55b26a", + "md5": "7b55c461d9ff7645546c0adf27f73b5d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pkcs8.c", + "type": "file", + "name": "pkcs8.c", + "base_name": "pkcs8", + "extension": ".c", + "size": 11310, + "date": "2017-02-16", + "sha1": "d97874fdde6c162841480b4e33594f582aaacf0b", + "md5": "69b4954c34b013e33d4cf6d14f3a675d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pkey.c", + "type": "file", + "name": "pkey.c", + "base_name": "pkey", + "extension": ".c", + "size": 5765, + "date": "2017-02-16", + "sha1": "2eec2384c69d9b2e94d621085edb8a620592e7bd", + "md5": "4fa8a3888d6070a245eaa69dab8772ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pkeyparam.c", + "type": "file", + "name": "pkeyparam.c", + "base_name": "pkeyparam", + "extension": ".c", + "size": 2694, + "date": "2017-02-16", + "sha1": "940cd1d77ac9a1a4ad06c654ead4ca418493cd84", + "md5": "1be3ad04301887c29882c1db9ff03b8b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/pkeyutl.c", + "type": "file", + "name": "pkeyutl.c", + "base_name": "pkeyutl", + "extension": ".c", + "size": 14754, + "date": "2017-02-16", + "sha1": "77cfe11c7375cbf41c803007739ed52f8c0efe0f", + "md5": "f1f01b22b6c061f5b6654b29236756f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/prime.c", + "type": "file", + "name": "prime.c", + "base_name": "prime", + "extension": ".c", + "size": 3466, + "date": "2017-02-16", + "sha1": "0830bcab268be523556646e109d6f55967a0770e", + "md5": "e9f7af509d0adc11a616dd3fb4a455b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/privkey.pem", + "type": "file", + "name": "privkey.pem", + "base_name": "privkey", + "extension": ".pem", + "size": 916, + "date": "2017-02-16", + "sha1": "e65384f84101b9c5a55bdda539c1f1109e91a0db", + "md5": "b48659f594c9943ae292b16854de198a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/progs.h", + "type": "file", + "name": "progs.h", + "base_name": "progs", + "extension": ".h", + "size": 13759, + "date": "2017-02-16", + "sha1": "af6dd89cd7f4762b7829725c7127a9616a947128", + "md5": "fe62a668c41c273ad056be08bbd0b52b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 10, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/progs.pl", + "type": "file", + "name": "progs.pl", + "base_name": "progs", + "extension": ".pl", + "size": 4473, + "date": "2017-02-16", + "sha1": "97968583b1a621db25da3888163391c6ec3001f0", + "md5": "ae20c9becac999563b3c8da5ff7af7cc", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 37, + "end_line": 40, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 35 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/rand.c", + "type": "file", + "name": "rand.c", + "base_name": "rand", + "extension": ".c", + "size": 3544, + "date": "2017-02-16", + "sha1": "c54db5d432e66666721c6a61a9115dacb461c480", + "md5": "6bc3d87b949f5e0e9accfa1a30337182", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/rehash.c", + "type": "file", + "name": "rehash.c", + "base_name": "rehash", + "extension": ".c", + "size": 14167, + "date": "2017-02-16", + "sha1": "9ddb660efff7cdda92301c5e1d5598389a64391e", + "md5": "b9cd6998a33538839d8d95cc73aaeb54", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2013-2014 Timo Teras " + ], + "holders": [ + "Timo Teras" + ], + "authors": [], + "start_line": 13, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/req.c", + "type": "file", + "name": "req.c", + "base_name": "req", + "extension": ".c", + "size": 46694, + "date": "2017-02-16", + "sha1": "f1487961602358751244b85c30c9ed2192622db4", + "md5": "a1d46a51e7d83e4357457ee2e3dd7869", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/req.pem", + "type": "file", + "name": "req.pem", + "base_name": "req", + "extension": ".pem", + "size": 627, + "date": "2017-02-16", + "sha1": "c89530c89aada9fe968861403021edb41255ebe0", + "md5": "bfc4e98e4d7a8da63925b3cdddd5ea7f", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/rsa.c", + "type": "file", + "name": "rsa.c", + "base_name": "rsa", + "extension": ".c", + "size": 9498, + "date": "2017-02-16", + "sha1": "52c3b7a4570a2d007fe2c2211b3569b80740cf90", + "md5": "aad97122f6fcc1247c817e20583742c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/rsa8192.pem", + "type": "file", + "name": "rsa8192.pem", + "base_name": "rsa8192", + "extension": ".pem", + "size": 6365, + "date": "2017-02-16", + "sha1": "9ffe5621f4a29c213dbc74847794fd19d1fd4289", + "md5": "dbc2b90b1bb8f58f19d1dd490dae29f0", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/rsautl.c", + "type": "file", + "name": "rsautl.c", + "base_name": "rsautl", + "extension": ".c", + "size": 7972, + "date": "2017-02-16", + "sha1": "93b331f4083db7cc3fa08ecaacd42b47aa43ca4b", + "md5": "61bdb65ac7be50c26c81636b98500c22", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s1024key.pem", + "type": "file", + "name": "s1024key.pem", + "base_name": "s1024key", + "extension": ".pem", + "size": 891, + "date": "2017-02-16", + "sha1": "7b9a68f7dd2d8095183534db1b415f6cee0a91a4", + "md5": "0aa2a65e6591a0ce3f3369b8009d7392", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s1024req.pem", + "type": "file", + "name": "s1024req.pem", + "base_name": "s1024req", + "extension": ".pem", + "size": 643, + "date": "2017-02-16", + "sha1": "83ddb6c26151b23e653d7c36a2bdd5507bada013", + "md5": "12733faa195453ab93f484d6ee31a76f", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s512-key.pem", + "type": "file", + "name": "s512-key.pem", + "base_name": "s512-key", + "extension": ".pem", + "size": 497, + "date": "2017-02-16", + "sha1": "39747ee060b3900a6d0456e41e8d7abb9efd8737", + "md5": "aee63204f63396c8d9be843828f0e7bb", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s512-req.pem", + "type": "file", + "name": "s512-req.pem", + "base_name": "s512-req", + "extension": ".pem", + "size": 460, + "date": "2017-02-16", + "sha1": "48fb18b435648a13d540d9809ce58dbdfad4a2b6", + "md5": "8e23c9462e543c58573b5b9b041c1aee", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s_apps.h", + "type": "file", + "name": "s_apps.h", + "base_name": "s_apps", + "extension": ".h", + "size": 3921, + "date": "2017-02-16", + "sha1": "425d23a37d5edd4ed1745a7971c19d4fed51d11e", + "md5": "df782181f2d2c906d004ed014ca4c043", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s_cb.c", + "type": "file", + "name": "s_cb.c", + "base_name": "s_cb", + "extension": ".c", + "size": 40143, + "date": "2017-02-16", + "sha1": "228146b790e035ebd1ce71c609187bfd732220a1", + "md5": "93b4b54dc7c27b3638ec3e33f1cd69bd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s_client.c", + "type": "file", + "name": "s_client.c", + "base_name": "s_client", + "extension": ".c", + "size": 90408, + "date": "2017-02-16", + "sha1": "27097bdc531d3fe8c676aee6a41aec2c57c2a097", + "md5": "174bbed1fb61c03a5a76fbc2de90b0b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s_server.c", + "type": "file", + "name": "s_server.c", + "base_name": "s_server", + "extension": ".c", + "size": 107661, + "date": "2017-02-16", + "sha1": "95dc4a5bacbcc9abd5dc312210def90891ae5cdc", + "md5": "3bb37b5a025bfb3e2974716e852cd891", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s_socket.c", + "type": "file", + "name": "s_socket.c", + "base_name": "s_socket", + "extension": ".c", + "size": 6488, + "date": "2017-02-16", + "sha1": "a121403f2005faf68ce09d5c78517450f166aca3", + "md5": "acd6d8e7886082d834c0ecf32af22c9b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/s_time.c", + "type": "file", + "name": "s_time.c", + "base_name": "s_time", + "extension": ".c", + "size": 12066, + "date": "2017-02-16", + "sha1": "c5b5de4c28fb8b3f626f4b0623b2b94f5e21a285", + "md5": "e3a340af2d893ec1bf3ff9b31fd5037b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/server.pem", + "type": "file", + "name": "server.pem", + "base_name": "server", + "extension": ".pem", + "size": 3285, + "date": "2017-02-16", + "sha1": "e8b10dc1c9929bf674b95c34ba2de514bf336c04", + "md5": "effb83eee2d49f045628e6f54ba97012", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/server.srl", + "type": "file", + "name": "server.srl", + "base_name": "server", + "extension": ".srl", + "size": 3, + "date": "2017-02-16", + "sha1": "3351d58b1d3bf73122c431502fc94a77abba1edc", + "md5": "0ade138937c4b9cb36a28e2edb6485fc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/server2.pem", + "type": "file", + "name": "server2.pem", + "base_name": "server2", + "extension": ".pem", + "size": 3288, + "date": "2017-02-16", + "sha1": "864394dd547ffd335591f5070e7a10bc5a8f4389", + "md5": "02a27ee3e67890da0f3e67b442941c32", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/sess_id.c", + "type": "file", + "name": "sess_id.c", + "base_name": "sess_id", + "extension": ".c", + "size": 5456, + "date": "2017-02-16", + "sha1": "048aa280616e12f592e3365d99d726d9eeb6ae62", + "md5": "3797a6d80c7e09bb2e550d75c8089564", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/smime.c", + "type": "file", + "name": "smime.c", + "base_name": "smime", + "extension": ".c", + "size": 21614, + "date": "2017-02-16", + "sha1": "4b6f30024a84b994ab14f209f27e0891f84be37a", + "md5": "e560203e9f8f627724443621aa41e379", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/speed.c", + "type": "file", + "name": "speed.c", + "base_name": "speed", + "extension": ".c", + "size": 100132, + "date": "2017-02-16", + "sha1": "a432bd12c1b43821e4540edefee0b165ea3a6d15", + "md5": "26b12ff5a515657e38c57d9e5ac933a3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/spkac.c", + "type": "file", + "name": "spkac.c", + "base_name": "spkac", + "extension": ".c", + "size": 5468, + "date": "2017-02-16", + "sha1": "7ef2fceeba0f3a8b9821f1a2655a1e1241d5ed0c", + "md5": "851d3804b1d37991f2573baa918363ac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/srp.c", + "type": "file", + "name": "srp.c", + "base_name": "srp", + "extension": ".c", + "size": 20397, + "date": "2017-02-16", + "sha1": "be48dbc8758874a495546ff5e088b5b2a302c899", + "md5": "2ba20c8663cd05699b4fc407ca0d0f48", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/testCA.pem", + "type": "file", + "name": "testCA.pem", + "base_name": "testCA", + "extension": ".pem", + "size": 432, + "date": "2017-02-16", + "sha1": "60c578c5079407152a62483e5128678592b7f999", + "md5": "6fc2d0242801cf234b1d046afac67c53", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/testdsa.h", + "type": "file", + "name": "testdsa.h", + "base_name": "testdsa", + "extension": ".h", + "size": 12945, + "date": "2017-02-16", + "sha1": "b59016b420597e2f6476b3ac09c9873086cd0269", + "md5": "b28f984f82f3c1fdc423624efcfd5082", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/testrsa.h", + "type": "file", + "name": "testrsa.h", + "base_name": "testrsa", + "extension": ".h", + "size": 124026, + "date": "2017-02-16", + "sha1": "ee2e57efe247fbac43c862a0934c889e578878f9", + "md5": "f35272a4d5bf4d35b2bc788b1690e148", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/timeouts.h", + "type": "file", + "name": "timeouts.h", + "base_name": "timeouts", + "extension": ".h", + "size": 557, + "date": "2017-02-16", + "sha1": "4810ebd63d729d42b5f2ef13481605ed0011da0e", + "md5": "b9522e32f213e04d77be5e56b486a0ef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/ts.c", + "type": "file", + "name": "ts.c", + "base_name": "ts", + "extension": ".c", + "size": 31401, + "date": "2017-02-16", + "sha1": "77238d11484f03bfe061cf7665dac44aa033ec57", + "md5": "54ca67df3556e463232e43508ac74e10", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/tsget.in", + "type": "file", + "name": "tsget.in", + "base_name": "tsget", + "extension": ".in", + "size": 6640, + "date": "2017-02-16", + "sha1": "3fd1905ca5114f1ae492ca4a385719a0b16a0c33", + "md5": "b368c50481e3409a601bad28474c5bae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2002 The OpenTSA Project." + ], + "holders": [ + "The OpenTSA Project." + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/verify.c", + "type": "file", + "name": "verify.c", + "base_name": "verify", + "extension": ".c", + "size": 10268, + "date": "2017-02-16", + "sha1": "c50f189cef9dc46bd4e28cd327dc20b42998c43f", + "md5": "90dd4848c05c0ac8b77e3ec36c0f604c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/version.c", + "type": "file", + "name": "version.c", + "base_name": "version", + "extension": ".c", + "size": 3792, + "date": "2017-02-16", + "sha1": "66796026a9d0261b576756504e5f01123028ac15", + "md5": "7e11039c050da9280fd54e42f037f214", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/vms_decc_init.c", + "type": "file", + "name": "vms_decc_init.c", + "base_name": "vms_decc_init", + "extension": ".c", + "size": 6597, + "date": "2017-02-16", + "sha1": "c71de7b5c9032ba03da977947ae222d242ecb9af", + "md5": "7054a2643d7d3daa00d42f8b3c93c977", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/vms_term_sock.c", + "type": "file", + "name": "vms_term_sock.c", + "base_name": "vms_term_sock", + "extension": ".c", + "size": 17704, + "date": "2017-02-16", + "sha1": "1433377f9372ffb2174615db1d0ba048a1452e35", + "md5": "4c67ceed208a4b1f6df155e94cb7e5ac", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 VMS Software, Inc." + ], + "holders": [ + "VMS Software, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/vms_term_sock.h", + "type": "file", + "name": "vms_term_sock.h", + "base_name": "vms_term_sock", + "extension": ".h", + "size": 678, + "date": "2017-02-16", + "sha1": "0355d0b7b701fe149353902bc87a30a45049e6f7", + "md5": "2d35889e90bede89021a3bf4c69b3e40", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 VMS Software, Inc." + ], + "holders": [ + "VMS Software, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/win32_init.c", + "type": "file", + "name": "win32_init.c", + "base_name": "win32_init", + "extension": ".c", + "size": 8602, + "date": "2017-02-16", + "sha1": "d5f8b5acc59cf6afca3c3beab1445980624364bd", + "md5": "41089ee2bd860dae262b509bfc1b50e9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/x509.c", + "type": "file", + "name": "x509.c", + "base_name": "x509", + "extension": ".c", + "size": 37181, + "date": "2017-02-16", + "sha1": "5795e080287ac2c7aa2ee0865d6a8fe426f114db", + "md5": "646152ca9b362fa67b4e8962ebe5c2a5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoCA", + "type": "directory", + "name": "demoCA", + "base_name": "demoCA", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 1, + "size_count": 4399, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoCA/cacert.pem", + "type": "file", + "name": "cacert.pem", + "base_name": "cacert", + "extension": ".pem", + "size": 716, + "date": "2017-02-16", + "sha1": "9715f0492b6bb9e210afe9c7b557f26fa01e8026", + "md5": "324371bf8fba00ebe5328d8c850f55b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoCA/index.txt", + "type": "file", + "name": "index.txt", + "base_name": "index", + "extension": ".txt", + "size": 2464, + "date": "2017-02-16", + "sha1": "cfb31c4c60a8eaca44a7076db375f5e5d7e06ced", + "md5": "aa58079bdcdc1009d0351291cc4f3a18", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoCA/serial", + "type": "file", + "name": "serial", + "base_name": "serial", + "extension": "", + "size": 5, + "date": "2017-02-16", + "sha1": "a5da428e2bd8988718a1f1ccd3192f342f4f5fc0", + "md5": "a9f5d1907387cad302fa25893fa042a3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoCA/private", + "type": "directory", + "name": "private", + "base_name": "private", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1214, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoCA/private/cakey.pem", + "type": "file", + "name": "cakey.pem", + "base_name": "cakey", + "extension": ".pem", + "size": 1214, + "date": "2017-02-16", + "sha1": "f9e2c932980077ecef7cb02f5dbbbdb3bd69c283", + "md5": "0397a7cb737beb364b5cfd86c17c3a75", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoSRP", + "type": "directory", + "name": "demoSRP", + "base_name": "demoSRP", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 380, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoSRP/srp_verifier.txt", + "type": "file", + "name": "srp_verifier.txt", + "base_name": "srp_verifier", + "extension": ".txt", + "size": 359, + "date": "2017-02-16", + "sha1": "8c0dc4ff99213ad26699a88ec7fcb9290d253204", + "md5": "927245d80d8eb9e7c8edf55ec115dd5d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/apps/demoSRP/srp_verifier.txt.attr", + "type": "file", + "name": "srp_verifier.txt.attr", + "base_name": "srp_verifier.txt", + "extension": ".attr", + "size": 21, + "date": "2017-02-16", + "sha1": "8cf5465a17cdc7391f0f6bb01fa49399996c5217", + "md5": "ee8bd2ea88220c877a62e22e36a02d20", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations", + "type": "directory", + "name": "Configurations", + "base_name": "Configurations", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 0, + "size_count": 277736, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/00-base-templates.conf", + "type": "file", + "name": "00-base-templates.conf", + "base_name": "00-base-templates", + "extension": ".conf", + "size": 9470, + "date": "2017-02-16", + "sha1": "a8b02a3d43403297d3c3b52fa7480e4e4577a866", + "md5": "99e837648bdadd96ca4e3e99c9c35a6c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/10-main.conf", + "type": "file", + "name": "10-main.conf", + "base_name": "10-main", + "extension": ".conf", + "size": 86475, + "date": "2017-02-16", + "sha1": "b2f3959a04d4ddc5feed347d6def4e763c87019a", + "md5": "5ec97652bfeadb5ff243ba4021585a12", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/50-djgpp.conf", + "type": "file", + "name": "50-djgpp.conf", + "base_name": "50-djgpp", + "extension": ".conf", + "size": 554, + "date": "2017-02-16", + "sha1": "8f2fef543147f6156b0f0935a8cb35d7ffeb4d96", + "md5": "d5059c33e2a41516785f1cbf47f2975e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/50-haiku.conf", + "type": "file", + "name": "50-haiku.conf", + "base_name": "50-haiku", + "extension": ".conf", + "size": 1179, + "date": "2017-02-16", + "sha1": "d15dbe164e0085cd3131d037a0b9d787732dc739", + "md5": "ea363c78f189168c281da9bc84daadf8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/50-masm.conf", + "type": "file", + "name": "50-masm.conf", + "base_name": "50-masm", + "extension": ".conf", + "size": 711, + "date": "2017-02-16", + "sha1": "1b68c24f7411100cb3aca5ecb258e58a8b60197d", + "md5": "0f1a9f461d08fba45cd9b61ba7742b6f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/90-team.conf", + "type": "file", + "name": "90-team.conf", + "base_name": "90-team", + "extension": ".conf", + "size": 5319, + "date": "2017-02-16", + "sha1": "5f4b043fd39ef91e329aad554e621f0ed45f4316", + "md5": "2c74ee38b9b51a470d409fe2f8a23f9a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/common.tmpl", + "type": "file", + "name": "common.tmpl", + "base_name": "common", + "extension": ".tmpl", + "size": 8896, + "date": "2017-02-16", + "sha1": "c18f312587362c20707e39c96c80160cb04a0bb4", + "md5": "b0f115d99a252df7cef911b927d587d2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/descrip.mms.tmpl", + "type": "file", + "name": "descrip.mms.tmpl", + "base_name": "descrip.mms", + "extension": ".tmpl", + "size": 34986, + "date": "2017-02-16", + "sha1": "6a54decfac1dc7cd39e5967c70d8b57b1053914a", + "md5": "a543d70c3cc57309366235876b8b0713", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/INTERNALS.Configure", + "type": "file", + "name": "INTERNALS.Configure", + "base_name": "INTERNALS", + "extension": ".Configure", + "size": 7883, + "date": "2017-02-16", + "sha1": "f8f9e7ffd41c7059d98e7dd238f6b33466631607", + "md5": "b4a956536c3b3ceccf096d5748a7b21f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 29493, + "date": "2017-02-16", + "sha1": "64927e125e1b6b96fe8ba3b981dbaec32823546d", + "md5": "13242f1565a3544ab6b9f36e36317a04", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/README.design", + "type": "file", + "name": "README.design", + "base_name": "README", + "extension": ".design", + "size": 25777, + "date": "2017-02-16", + "sha1": "a91675e1bf3977b82477408862c90a88dcfd2cb3", + "md5": "a4674a0741d18bedb36bf3131075f533", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/unix-Makefile.tmpl", + "type": "file", + "name": "unix-Makefile.tmpl", + "base_name": "unix-Makefile", + "extension": ".tmpl", + "size": 43889, + "date": "2017-02-16", + "sha1": "8d4c51cd37c7f79fd72692c6630d3fbb1969532d", + "md5": "525f957818a9d408e6145dbfd5edafa3", + "mime_type": "text/x-makefile", + "file_type": "makefile script, UTF-8 Unicode text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/Configurations/windows-makefile.tmpl", + "type": "file", + "name": "windows-makefile.tmpl", + "base_name": "windows-makefile", + "extension": ".tmpl", + "size": 23104, + "date": "2017-02-16", + "sha1": "8b5a6754058e194d54cde306b64f187c0946bb0b", + "md5": "972baf4efb992ce0d301f6e986f1d80a", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto", + "type": "directory", + "name": "crypto", + "base_name": "crypto", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 961, + "dirs_count": 75, + "size_count": 11436324, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/alphacpuid.pl", + "type": "file", + "name": "alphacpuid.pl", + "base_name": "alphacpuid", + "extension": ".pl", + "size": 3950, + "date": "2017-02-16", + "sha1": "8d98dc1d809b8760e763b0e6a5041db9103cb5f4", + "md5": "890d8014de4d5d42b2b8fb27e45f3996", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/arm64cpuid.pl", + "type": "file", + "name": "arm64cpuid.pl", + "base_name": "arm64cpuid", + "extension": ".pl", + "size": 2502, + "date": "2017-02-16", + "sha1": "bea8f59c211ab22e03cd8c97929fcd0af50c0b9a", + "md5": "d11dc72a54f20038f9dff22a8f0db016", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/arm_arch.h", + "type": "file", + "name": "arm_arch.h", + "base_name": "arm_arch", + "extension": ".h", + "size": 2578, + "date": "2017-02-16", + "sha1": "daca5e672a41af3b26ed4000da9760eb98150727", + "md5": "d4a979684ad12cb94f9a3f577fc5a2d5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/armcap.c", + "type": "file", + "name": "armcap.c", + "base_name": "armcap", + "extension": ".c", + "size": 5309, + "date": "2017-02-16", + "sha1": "a44a9598a91297c58331962755d0cbeea176c423", + "md5": "1565964735cfd787c210158956022632", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/armv4cpuid.pl", + "type": "file", + "name": "armv4cpuid.pl", + "base_name": "armv4cpuid", + "extension": ".pl", + "size": 5426, + "date": "2017-02-16", + "sha1": "826e058ec942b08ab2a3ff713c1e19ecd56db6cf", + "md5": "f95caaa906b8eb7e8fed4bb715451f32", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 1526, + "date": "2017-02-16", + "sha1": "9221a891031430d6012f0d74e17a5805c961789b", + "md5": "16e4f67b54e54c33f68c4d8c1e8723b5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/c64xpluscpuid.pl", + "type": "file", + "name": "c64xpluscpuid.pl", + "base_name": "c64xpluscpuid", + "extension": ".pl", + "size": 5394, + "date": "2017-02-16", + "sha1": "76ff1f50b2c3b16992801f583166a98e98296170", + "md5": "a3b7d0a39fb73a93bb5f5c443ee8037a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cpt_err.c", + "type": "file", + "name": "cpt_err.c", + "base_name": "cpt_err", + "extension": ".c", + "size": 1948, + "date": "2017-02-16", + "sha1": "eb55b9c290c309b6965c97b75e87e2855c928c7a", + "md5": "5e53d3f6d16fdc643c6ffdf0b09c8203", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cryptlib.c", + "type": "file", + "name": "cryptlib.c", + "base_name": "cryptlib", + "extension": ".c", + "size": 10213, + "date": "2017-02-16", + "sha1": "c4da3364e706915ec12dc1a78e3beea7ff63fc62", + "md5": "11d78b6800fb4617d656d1573943f249", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cversion.c", + "type": "file", + "name": "cversion.c", + "base_name": "cversion", + "extension": ".c", + "size": 1492, + "date": "2017-02-16", + "sha1": "3a07b0ba50eba4a64f96ab13fec4734424c6d369", + "md5": "1af24b32b749af4cded0a538a0529cf6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dllmain.c", + "type": "file", + "name": "dllmain.c", + "base_name": "dllmain", + "extension": ".c", + "size": 1795, + "date": "2017-02-16", + "sha1": "5af891578dfb146dbddb2998af9048b0e3faf9df", + "md5": "631f3294efc6a24977abd6b1077963cc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ebcdic.c", + "type": "file", + "name": "ebcdic.c", + "base_name": "ebcdic", + "extension": ".c", + "size": 15484, + "date": "2017-02-16", + "sha1": "7461e47d50125acb3a94cd6349fb3eb8197d729a", + "md5": "3f18b8290ba2d99267c3003bc3e7a26a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "", + "" + ], + "start_line": 18, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ex_data.c", + "type": "file", + "name": "ex_data.c", + "base_name": "ex_data", + "extension": ".c", + "size": 10857, + "date": "2017-02-16", + "sha1": "0e5f597d6fbb560c12c37c3a8085ed315db9ed0c", + "md5": "aa41721830bbd2ac5be3f5d325a7d7eb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ia64cpuid.S", + "type": "file", + "name": "ia64cpuid.S", + "base_name": "ia64cpuid", + "extension": ".S", + "size": 6493, + "date": "2017-02-16", + "sha1": "1f373457c2d93adc8abeb357e4d3a83f6c77a9f9", + "md5": "9b0154013456fe6b0ba9cbc47d6801ac", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/init.c", + "type": "file", + "name": "init.c", + "base_name": "init", + "extension": ".c", + "size": 19179, + "date": "2017-02-16", + "sha1": "724728223b47405d62bc22bf16a6d6202702c143", + "md5": "89bb38d3bc016946ed49accc528b4d1a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/LPdir_nyi.c", + "type": "file", + "name": "LPdir_nyi.c", + "base_name": "LPdir_nyi", + "extension": ".c", + "size": 1989, + "date": "2017-02-16", + "sha1": "0122ae76db60f9dcb5f55c5d1b8c712f2015349b", + "md5": "1ddba15480b2b675357b2ed7a702ec05", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-simplified", + "score": 100.0, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 14, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_28.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/LPdir_unix.c", + "type": "file", + "name": "LPdir_unix.c", + "base_name": "LPdir_unix", + "extension": ".c", + "size": 4087, + "date": "2017-02-16", + "sha1": "2f306c42855d7a719caf40b088a84c726541d572", + "md5": "ed801d3820556a552bcf56cd1d8c6120", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/LPdir_vms.c", + "type": "file", + "name": "LPdir_vms.c", + "base_name": "LPdir_vms", + "extension": ".c", + "size": 6246, + "date": "2017-02-16", + "sha1": "8a312160c2b269a2c430486271e18c7e3c856626", + "md5": "57f2525688e84a77ca66cb43b57a3489", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/LPdir_win.c", + "type": "file", + "name": "LPdir_win.c", + "base_name": "LPdir_win", + "extension": ".c", + "size": 6959, + "date": "2017-02-16", + "sha1": "404fe7be818429f9c17d8126fa826081ebaf831e", + "md5": "bdd69721341054b2b72064ab70581a88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/LPdir_win32.c", + "type": "file", + "name": "LPdir_win32.c", + "base_name": "LPdir_win32", + "extension": ".c", + "size": 1808, + "date": "2017-02-16", + "sha1": "5db274f2ff0b1ca2781385d862988fcc5cf119a0", + "md5": "54bef4bf99adc7bc5e2a36d655f70d6d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/LPdir_wince.c", + "type": "file", + "name": "LPdir_wince.c", + "base_name": "LPdir_wince", + "extension": ".c", + "size": 1914, + "date": "2017-02-16", + "sha1": "763dff6dd8fd75be219033eba15b720b8c867f12", + "md5": "4adb8542a7f7d5f2ed0e0ba81accc730", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/mem.c", + "type": "file", + "name": "mem.c", + "base_name": "mem", + "extension": ".c", + "size": 4537, + "date": "2017-02-16", + "sha1": "7269082779d1b2dbf70e73b5ff3ef286061f1acf", + "md5": "f5850bcd5ef742494a122691077e06a7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/mem_clr.c", + "type": "file", + "name": "mem_clr.c", + "base_name": "mem_clr", + "extension": ".c", + "size": 770, + "date": "2017-02-16", + "sha1": "fa4d0ce5846abe636e7de63ca9dc6bff68f042e5", + "md5": "20fc7f6044f3162b196ab3197531ed32", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/mem_dbg.c", + "type": "file", + "name": "mem_dbg.c", + "base_name": "mem_dbg", + "extension": ".c", + "size": 17179, + "date": "2017-02-16", + "sha1": "ee8efe123681b5f7068a27be822f8be92e35cf09", + "md5": "37769fa67f5aea56bda7bd6a4c898c17", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/mem_sec.c", + "type": "file", + "name": "mem_sec.c", + "base_name": "mem_sec", + "extension": ".c", + "size": 15235, + "date": "2017-02-16", + "sha1": "1ffcd167998198f6bc80e9d5a1c01f5f577af5dd", + "md5": "1e48399e879fc5f6738a89515a346790", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 12, + "end_line": 12, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2004-2014, Akamai Technologies." + ], + "holders": [ + "Akamai Technologies." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/o_dir.c", + "type": "file", + "name": "o_dir.c", + "base_name": "o_dir", + "extension": ".c", + "size": 1026, + "date": "2017-02-16", + "sha1": "598ccb6d329bd6df58acfdef7b67a8037c1ae3a7", + "md5": "d8b8e3b18c0550ff58e8c14dcd903fd2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/o_fips.c", + "type": "file", + "name": "o_fips.c", + "base_name": "o_fips", + "extension": ".c", + "size": 742, + "date": "2017-02-16", + "sha1": "24d2b19d9eb25a6ea826a9e51e70cb81c5d1b938", + "md5": "9beb2dd01bc03f80ad830b4f06e5f787", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/o_fopen.c", + "type": "file", + "name": "o_fopen.c", + "base_name": "o_fopen", + "extension": ".c", + "size": 3324, + "date": "2017-02-16", + "sha1": "e08f5249ea0f8725e2e8bd2e58b88367e222a382", + "md5": "a4ef1d4dbbc9b2f37739ce706ed0e50b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/o_init.c", + "type": "file", + "name": "o_init.c", + "base_name": "o_init", + "extension": ".c", + "size": 898, + "date": "2017-02-16", + "sha1": "fb92cc985b4432d8aa85960c2d23666e1586c2ba", + "md5": "7228480ec5cade7a422240a8d8eb2c4b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/o_str.c", + "type": "file", + "name": "o_str.c", + "base_name": "o_str", + "extension": ".c", + "size": 5851, + "date": "2017-02-16", + "sha1": "3f62e0899066535f294b64e45a4a046368579632", + "md5": "27dd36539bb3e75a66ce6521e105e952", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/o_time.c", + "type": "file", + "name": "o_time.c", + "base_name": "o_time", + "extension": ".c", + "size": 11345, + "date": "2017-02-16", + "sha1": "4832981cd27062d67491b055bf7f06042bbff84e", + "md5": "a7bf649b8f339c12dd622864c831f751", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pariscid.pl", + "type": "file", + "name": "pariscid.pl", + "base_name": "pariscid", + "extension": ".pl", + "size": 4370, + "date": "2017-02-16", + "sha1": "5462045d72bd426d257999a675c7ab8ba68b9b4c", + "md5": "a76c4f49518e2253e458073ecf0a2a93", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ppc_arch.h", + "type": "file", + "name": "ppc_arch.h", + "base_name": "ppc_arch", + "extension": ".h", + "size": 753, + "date": "2017-02-16", + "sha1": "2d2718aca9d377732d2d691154866bfb7ef60b67", + "md5": "f300a403c6111f779a7d619189ef6c56", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ppccap.c", + "type": "file", + "name": "ppccap.c", + "base_name": "ppccap", + "extension": ".c", + "size": 10100, + "date": "2017-02-16", + "sha1": "be64e53323495f3e4de9906b2f7ef455b5eb47b3", + "md5": "0c1798d094144906f03f554af14fd87f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ppccpuid.pl", + "type": "file", + "name": "ppccpuid.pl", + "base_name": "ppccpuid", + "extension": ".pl", + "size": 5324, + "date": "2017-02-16", + "sha1": "cd1096b3ddb9c897ba2d3949ddb5a33ce0be1223", + "md5": "56c096ec7fb0a79799c49aa0a038989e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/s390xcap.c", + "type": "file", + "name": "s390xcap.c", + "base_name": "s390xcap", + "extension": ".c", + "size": 1339, + "date": "2017-02-16", + "sha1": "1e5228bb083d7369b334caf71c27aa96ed187420", + "md5": "b95fdda7497d862ea9992c3c837976e6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/s390xcpuid.S", + "type": "file", + "name": "s390xcpuid.S", + "base_name": "s390xcpuid", + "extension": ".S", + "size": 3455, + "date": "2017-02-16", + "sha1": "17fefc28824293363d3cd8e9cc910af9a669125a", + "md5": "b33892fa25d55173cba3e9330d81545d", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sparc_arch.h", + "type": "file", + "name": "sparc_arch.h", + "base_name": "sparc_arch", + "extension": ".h", + "size": 4319, + "date": "2017-02-16", + "sha1": "078c38503114cbaadb7b080515fcd0cfce8f84c4", + "md5": "acce134ab5dcc7ae4a536a86124a7baf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sparccpuid.S", + "type": "file", + "name": "sparccpuid.S", + "base_name": "sparccpuid", + "extension": ".S", + "size": 12352, + "date": "2017-02-16", + "sha1": "928a6917d63432d699d48022affbcef54dafbd4b", + "md5": "368e0dccf3c36085fa2648a03deb6123", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sparcv9cap.c", + "type": "file", + "name": "sparcv9cap.c", + "base_name": "sparcv9cap", + "extension": ".c", + "size": 10720, + "date": "2017-02-16", + "sha1": "88ffd523a729cb2b16722c79c5c22a92e9c9bfc6", + "md5": "a3e1222cba8adad88d42a8447e52b728", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/threads_none.c", + "type": "file", + "name": "threads_none.c", + "base_name": "threads_none", + "extension": ".c", + "size": 2510, + "date": "2017-02-16", + "sha1": "3147f6dc1f564ccb6f61bc3ea02de42ac190bd12", + "md5": "cab5a3ce094dd34580e5bdacae2611c0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/threads_pthread.c", + "type": "file", + "name": "threads_pthread.c", + "base_name": "threads_pthread", + "extension": ".c", + "size": 3483, + "date": "2017-02-16", + "sha1": "afa9a860a396ef06436ef58f0adff1cef7b66acf", + "md5": "a8a11c3fe27f5164ff259115a57ea1f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/threads_win.c", + "type": "file", + "name": "threads_win.c", + "base_name": "threads_win", + "extension": ".c", + "size": 2866, + "date": "2017-02-16", + "sha1": "da9c558b595c0becf6c323502fa280ad97246457", + "md5": "1918ea028a4dd5e86c16a2cca6f87577", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/uid.c", + "type": "file", + "name": "uid.c", + "base_name": "uid", + "extension": ".c", + "size": 871, + "date": "2017-02-16", + "sha1": "8c4197981d92dc201b37125bb9f186d7c27a7dee", + "md5": "c165ad53430a7c4fd400888fab21f063", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/vms_rms.h", + "type": "file", + "name": "vms_rms.h", + "base_name": "vms_rms", + "extension": ".h", + "size": 2150, + "date": "2017-02-16", + "sha1": "fe659c54612f43f9b611fb3489e6f7a7211d9abc", + "md5": "c699e07ac696d67f6bd2d1f58c688a93", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x86_64cpuid.pl", + "type": "file", + "name": "x86_64cpuid.pl", + "base_name": "x86_64cpuid", + "extension": ".pl", + "size": 9038, + "date": "2017-02-16", + "sha1": "eb18a9dc5d703b29f3a0fc9a8ae05c24fcb658e4", + "md5": "b55893fc7a1430f2e48bb842672b84bb", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x86cpuid.pl", + "type": "file", + "name": "x86cpuid.pl", + "base_name": "x86cpuid", + "extension": ".pl", + "size": 13776, + "date": "2017-02-16", + "sha1": "70f2c867ba06f2037b9fa00e4e9720d71f78602b", + "md5": "86480ed30e42ef3dcc66fb3f723f3352", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes", + "type": "directory", + "name": "aes", + "base_name": "aes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 36, + "dirs_count": 1, + "size_count": 1437966, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_cbc.c", + "type": "file", + "name": "aes_cbc.c", + "base_name": "aes_cbc", + "extension": ".c", + "size": 814, + "date": "2017-02-16", + "sha1": "12155b69ed8410fd4f5a90d757528b7a00467978", + "md5": "55245247dc7740c515765821d0897202", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_cfb.c", + "type": "file", + "name": "aes_cfb.c", + "base_name": "aes_cfb", + "extension": ".c", + "size": 1595, + "date": "2017-02-16", + "sha1": "a558bcf9ab2d58a39079bca421bcb0bc4d3023cc", + "md5": "359bd18db0269b16a54c49ccecd1a1f3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_core.c", + "type": "file", + "name": "aes_core.c", + "base_name": "aes_core", + "extension": ".c", + "size": 62847, + "date": "2017-02-16", + "sha1": "3bd52d5563d81b7f0eab5c93ae9850f9c0fbdd4c", + "md5": "9f35e1c65a88d33e57671169ba556266", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain-disclaimer", + "score": 100.0, + "short_name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 21, + "end_line": 33, + "matched_rule": { + "identifier": "public-domain-disclaimer.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vincent Rijmen ", + "Antoon Bosselaers ", + "Paulo Barreto " + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_ecb.c", + "type": "file", + "name": "aes_ecb.c", + "base_name": "aes_ecb", + "extension": ".c", + "size": 726, + "date": "2017-02-16", + "sha1": "2fccfabbcfb6e13ed3870fc0fed9b9499a763f79", + "md5": "47bf38a94700329787c82e637440c92c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_ige.c", + "type": "file", + "name": "aes_ige.c", + "base_name": "aes_ige", + "extension": ".c", + "size": 9548, + "date": "2017-02-16", + "sha1": "7557f60fd4c6d9720003e174654321bd747b1407", + "md5": "2ad516b544df345ec2b6d2f8e165a9e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_locl.h", + "type": "file", + "name": "aes_locl.h", + "base_name": "aes_locl", + "extension": ".h", + "size": 1331, + "date": "2017-02-16", + "sha1": "0e9869b8bde0ffb4aa1b86abee3c16a181d4ef24", + "md5": "7ebb0eb35adacf998b9892693c4af583", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_misc.c", + "type": "file", + "name": "aes_misc.c", + "base_name": "aes_misc", + "extension": ".c", + "size": 529, + "date": "2017-02-16", + "sha1": "29be7c3034116d12552880e984a37ebe3bc44816", + "md5": "f9c998e9d69c9e9a595ac78208f0b0eb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_ofb.c", + "type": "file", + "name": "aes_ofb.c", + "base_name": "aes_ofb", + "extension": ".c", + "size": 686, + "date": "2017-02-16", + "sha1": "cd734afa6257d291cca006f855521650728e08e7", + "md5": "2197b18526b6ddc6e6673916c893031d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_wrap.c", + "type": "file", + "name": "aes_wrap.c", + "base_name": "aes_wrap", + "extension": ".c", + "size": 932, + "date": "2017-02-16", + "sha1": "02252ea88a5f8e89f97e66fb5cacd409f12e94b5", + "md5": "0e66d7bf6afa7ca2a1ae2d555dcaf236", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/aes_x86core.c", + "type": "file", + "name": "aes_x86core.c", + "base_name": "aes_x86core", + "extension": ".c", + "size": 41413, + "date": "2017-02-16", + "sha1": "8c5c12031c0d73b706e0d946328ed88ee5222057", + "md5": "13a76e3190a6cef9f211e1412b4d8069", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain-disclaimer", + "score": 100.0, + "short_name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 21, + "end_line": 33, + "matched_rule": { + "identifier": "public-domain-disclaimer.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vincent Rijmen ", + "Antoon Bosselaers ", + "Paulo Barreto " + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 2284, + "date": "2017-02-16", + "sha1": "7bee7f22993e359017cf77b754880f2b4333fee6", + "md5": "629b47cad52f6cdc7680bb751ce98443", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 0, + "size_count": 1315261, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-586.pl", + "type": "file", + "name": "aes-586.pl", + "base_name": "aes-586", + "extension": ".pl", + "size": 103999, + "date": "2017-02-16", + "sha1": "f4bf9e1fd9c88b56ee84f6366bf14998db734cc5", + "md5": "c5ff2e33c5a9ab503df12ec397b252fe", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Dean Gaudet " + ], + "start_line": 42, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-armv4.pl", + "type": "file", + "name": "aes-armv4.pl", + "base_name": "aes-armv4", + "extension": ".pl", + "size": 33604, + "date": "2017-02-16", + "sha1": "06589d8925cfe9fc59538c92cf91595f440b59f5", + "md5": "b6a6cd855969552d8e934ce0be3ca7ed", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-c64xplus.pl", + "type": "file", + "name": "aes-c64xplus.pl", + "base_name": "aes-c64xplus", + "extension": ".pl", + "size": 44253, + "date": "2017-02-16", + "sha1": "a3411164b45932d230bdc493d54b362dd9d9f023", + "md5": "f3ab7a3b99545d80a91f103083e9a6d3", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-ia64.S", + "type": "file", + "name": "aes-ia64.S", + "base_name": "aes-ia64", + "extension": ".S", + "size": 41622, + "date": "2017-02-16", + "sha1": "602927926eafe2d36dd9f21c86f7b71d8c344040", + "md5": "fd9eef2514a1cf5f1ecfb236cee944ab", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 3, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 3, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 11, + "end_line": 11, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 9, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov " + ], + "start_line": 35, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-mips.pl", + "type": "file", + "name": "aes-mips.pl", + "base_name": "aes-mips", + "extension": ".pl", + "size": 52593, + "date": "2017-02-16", + "sha1": "ecd4a022e3a014a78eb57804c6daab34a4eccd3f", + "md5": "ba8320449a5aa9ba42c869648b943e4f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-parisc.pl", + "type": "file", + "name": "aes-parisc.pl", + "base_name": "aes-parisc", + "extension": ".pl", + "size": 29154, + "date": "2017-02-16", + "sha1": "7d27a476fefdc43d4bd6b060fc599fdd8265445f", + "md5": "930a6a22950a17038216d48844120e6c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-ppc.pl", + "type": "file", + "name": "aes-ppc.pl", + "base_name": "aes-ppc", + "extension": ".pl", + "size": 39969, + "date": "2017-02-16", + "sha1": "7c68ce37b5fe6ec2504379a22f98d1a647618193", + "md5": "2e1db26bc24b092bdd26226129edd7ea", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-s390x.pl", + "type": "file", + "name": "aes-s390x.pl", + "base_name": "aes-s390x", + "extension": ".pl", + "size": 53315, + "date": "2017-02-16", + "sha1": "4d58fbf1f4997c190a6ec0e6351008f8e093a55e", + "md5": "ebd043e054f99651f202bae1f31bf146", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-sparcv9.pl", + "type": "file", + "name": "aes-sparcv9.pl", + "base_name": "aes-sparcv9", + "extension": ".pl", + "size": 30300, + "date": "2017-02-16", + "sha1": "444d157f24d6f8d22eb12c713e1402d127c2139e", + "md5": "20944d5c516df04ef767f325705c5be9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aes-x86_64.pl", + "type": "file", + "name": "aes-x86_64.pl", + "base_name": "aes-x86_64", + "extension": ".pl", + "size": 75122, + "date": "2017-02-16", + "sha1": "5746bfe92222bfd67c1c5daafe165e7aa3a8308d", + "md5": "d168566feabb90741801e3a3b7feda6b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aesfx-sparcv9.pl", + "type": "file", + "name": "aesfx-sparcv9.pl", + "base_name": "aesfx-sparcv9", + "extension": ".pl", + "size": 28158, + "date": "2017-02-16", + "sha1": "8aff2ac1d4f2d72d740b710b2b7016e347db74e2", + "md5": "94c6a94fb3676fb3307b20ddc4fdde41", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aesni-mb-x86_64.pl", + "type": "file", + "name": "aesni-mb-x86_64.pl", + "base_name": "aesni-mb-x86_64", + "extension": ".pl", + "size": 36301, + "date": "2017-02-16", + "sha1": "f162ea14fef91ad3650dd2e523c133382b9c61c1", + "md5": "6ffa98a3c2fc846d9e56c7c2a2d05315", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aesni-sha1-x86_64.pl", + "type": "file", + "name": "aesni-sha1-x86_64.pl", + "base_name": "aesni-sha1-x86_64", + "extension": ".pl", + "size": 53033, + "date": "2017-02-16", + "sha1": "cdabf46597a8379cc165167595d688326a364446", + "md5": "4a86744895e50cd8953ee30867ebbb2e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aesni-sha256-x86_64.pl", + "type": "file", + "name": "aesni-sha256-x86_64.pl", + "base_name": "aesni-sha256-x86_64", + "extension": ".pl", + "size": 42190, + "date": "2017-02-16", + "sha1": "47afa728b20b85d105c951632b6a3bf639f48d8b", + "md5": "2b3f4326929c5294dac05b715f424f88", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aesni-x86.pl", + "type": "file", + "name": "aesni-x86.pl", + "base_name": "aesni-x86", + "extension": ".pl", + "size": 102049, + "date": "2017-02-16", + "sha1": "e54cbcc9a23b691560a820a634efca517c0ba5c9", + "md5": "0ba38fd4086789549fbecfca17e3d3c1", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aesni-x86_64.pl", + "type": "file", + "name": "aesni-x86_64.pl", + "base_name": "aesni-x86_64", + "extension": ".pl", + "size": 127843, + "date": "2017-02-16", + "sha1": "ee4d1b6e2fc2cb561e5cac92e33b91d0cdd5893f", + "md5": "bf855df3539ff4290c151938052c4fbb", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aesp8-ppc.pl", + "type": "file", + "name": "aesp8-ppc.pl", + "base_name": "aesp8-ppc", + "extension": ".pl", + "size": 93271, + "date": "2017-02-16", + "sha1": "626d1a5009629d344d525dd8c9aa1cabe39ece06", + "md5": "3b223ead172d4fba7cd548fb8fc725cf", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aest4-sparcv9.pl", + "type": "file", + "name": "aest4-sparcv9.pl", + "base_name": "aest4-sparcv9", + "extension": ".pl", + "size": 23246, + "date": "2017-02-16", + "sha1": "82c7e744e336971fc3d64c2a4e087c38f0a983c0", + "md5": "7e4bea2ecc99fac11900bbd8ce8f7b59", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 54.88, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 54.88, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 54.88, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller and Andy Polyakov " + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/aesv8-armx.pl", + "type": "file", + "name": "aesv8-armx.pl", + "base_name": "aesv8-armx", + "extension": ".pl", + "size": 22124, + "date": "2017-02-16", + "sha1": "c3cf1574c14ab44bc719f19261000818f8881e39", + "md5": "74a5aa944aa872ad8a82113494398c95", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/bsaes-armv7.pl", + "type": "file", + "name": "bsaes-armv7.pl", + "base_name": "bsaes-armv7", + "extension": ".pl", + "size": 63779, + "date": "2017-02-16", + "sha1": "31a0a0ff4103ac85a7eae092c2da89e549bcae63", + "md5": "0ddb5e0f508e914720bd18b8f89014eb", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 93.9, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 93.9, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 93.9, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl", + "score": 55.32, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 13, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_1.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-1.0-plus" + ] + } + }, + { + "key": "bsd-new", + "score": 55.32, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 13, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_1.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-1.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 55.32, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 13, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_1.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Ard Biesheuvel " + ], + "start_line": 16, + "end_line": 18 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/bsaes-x86_64.pl", + "type": "file", + "name": "bsaes-x86_64.pl", + "base_name": "bsaes-x86_64", + "extension": ".pl", + "size": 73427, + "date": "2017-02-16", + "sha1": "9494da07f9054e31eb953b6eaafcac6933f98bbf", + "md5": "b4071698e72983c1e773bbd2acf5d500", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 52.44, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 52.44, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 52.44, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Emilia Kasper and Peter Schwabe" + ], + "start_line": 13, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/vpaes-armv8.pl", + "type": "file", + "name": "vpaes-armv8.pl", + "base_name": "vpaes-armv8", + "extension": ".pl", + "size": 44096, + "date": "2017-02-16", + "sha1": "b8895f07cc129322dfab97837376f7a57358f647", + "md5": "478102600747c7af62e5777131cd0efe", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 21, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/vpaes-ppc.pl", + "type": "file", + "name": "vpaes-ppc.pl", + "base_name": "vpaes-ppc", + "extension": ".pl", + "size": 42759, + "date": "2017-02-16", + "sha1": "f0b5338fbd0870ca7f08a5ecde0d2358db167d17", + "md5": "ea98e2b72361bb85b759de8e3df2d858", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/vpaes-x86.pl", + "type": "file", + "name": "vpaes-x86.pl", + "base_name": "vpaes-x86", + "extension": ".pl", + "size": 28094, + "date": "2017-02-16", + "sha1": "6454951009d36e1a5a5734428356db8ce9283580", + "md5": "1355c6dd2eb58b830f41d90e63b4a595", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/aes/asm/vpaes-x86_64.pl", + "type": "file", + "name": "vpaes-x86_64.pl", + "base_name": "vpaes-x86_64", + "extension": ".pl", + "size": 30960, + "date": "2017-02-16", + "sha1": "cbc18ff14f042719e0f33a62733d947c191203fc", + "md5": "07d1b45708c38b48338ceee32c8543ac", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1", + "type": "directory", + "name": "asn1", + "base_name": "asn1", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 66, + "dirs_count": 0, + "size_count": 416341, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_bitstr.c", + "type": "file", + "name": "a_bitstr.c", + "base_name": "a_bitstr", + "extension": ".c", + "size": 5403, + "date": "2017-02-16", + "sha1": "7f6615d919923b9805e8bf7973c16dffa2a9d484", + "md5": "d0b438765c850f2fac386b6e6c167f96", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_d2i_fp.c", + "type": "file", + "name": "a_d2i_fp.c", + "base_name": "a_d2i_fp", + "extension": ".c", + "size": 6533, + "date": "2017-02-16", + "sha1": "72942a58aa64feedc14eb986f05237bf2cc68067", + "md5": "7e5af1aa5351ca36e0f3be30910a6bd7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_digest.c", + "type": "file", + "name": "a_digest.c", + "base_name": "a_digest", + "extension": ".c", + "size": 1482, + "date": "2017-02-16", + "sha1": "1221306c39e52f72754c18c4b0bedee143b4ec07", + "md5": "d426c54542da9c11ae297c5ae8323476", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_dup.c", + "type": "file", + "name": "a_dup.c", + "base_name": "a_dup", + "extension": ".c", + "size": 1559, + "date": "2017-02-16", + "sha1": "e853acde6e30b16a31ba115d3a858a5d20ac0c02", + "md5": "d0a0c7932e8ff80f555bf3fe3b4837d4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_gentm.c", + "type": "file", + "name": "a_gentm.c", + "base_name": "a_gentm", + "extension": ".c", + "size": 7425, + "date": "2017-02-16", + "sha1": "5a39f8925a3b5f1297640800f2acfc442b3f52b8", + "md5": "c39d200215b71f241979121b647a626c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_i2d_fp.c", + "type": "file", + "name": "a_i2d_fp.c", + "base_name": "a_i2d_fp", + "extension": ".c", + "size": 2280, + "date": "2017-02-16", + "sha1": "3b998eae8a4d76acf8d6fc721a05d96150f4dde6", + "md5": "d15e37bea3d18f18e15d25e4c84725e9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_int.c", + "type": "file", + "name": "a_int.c", + "base_name": "a_int", + "extension": ".c", + "size": 15769, + "date": "2017-02-16", + "sha1": "df8642cf2900020b6f63d76839cf8b39715a8759", + "md5": "ef61861e705dcdfc19b54112ce37bd78", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_mbstr.c", + "type": "file", + "name": "a_mbstr.c", + "base_name": "a_mbstr", + "extension": ".c", + "size": 11141, + "date": "2017-02-16", + "sha1": "1fa221ca8b618482edb5c4eb6faf8d052983d571", + "md5": "5442c7037f7bae58c8956694aab6af2f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_object.c", + "type": "file", + "name": "a_object.c", + "base_name": "a_object", + "extension": ".c", + "size": 9960, + "date": "2017-02-16", + "sha1": "bc6c329d7b77d24ab5bc4c5236478e36580db275", + "md5": "dc583556c69851e0ad8a9eb3414a2052", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_octet.c", + "type": "file", + "name": "a_octet.c", + "base_name": "a_octet", + "extension": ".c", + "size": 813, + "date": "2017-02-16", + "sha1": "5a315c2176641a3b1736d71116cd56dd99ee9b08", + "md5": "1209f8eae31742c3f6e3db85727db2ab", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_print.c", + "type": "file", + "name": "a_print.c", + "base_name": "a_print", + "extension": ".c", + "size": 2727, + "date": "2017-02-16", + "sha1": "5ffb71afd1f3bb0d95d16db44f63444f4a29db4a", + "md5": "d743df76b068f22ca00cf9641d5bc4e1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_sign.c", + "type": "file", + "name": "a_sign.c", + "base_name": "a_sign", + "extension": ".c", + "size": 6972, + "date": "2017-02-16", + "sha1": "16ebeaf5794bb43b365560b22b8551a11b319c2f", + "md5": "c455611575bf2943e6c1240c5242f10d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_strex.c", + "type": "file", + "name": "a_strex.c", + "base_name": "a_strex", + "extension": ".c", + "size": 18502, + "date": "2017-02-16", + "sha1": "06b120237feab47d563a0501db5dce78a5e7b96f", + "md5": "e100e1b7863d4b73d53f54084b418c80", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_strnid.c", + "type": "file", + "name": "a_strnid.c", + "base_name": "a_strnid", + "extension": ".c", + "size": 8667, + "date": "2017-02-16", + "sha1": "10b848d3c39a9dee097af2155a4f479fcef61f00", + "md5": "83e40d021cdea4318c63cc28012a9db5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_time.c", + "type": "file", + "name": "a_time.c", + "base_name": "a_time", + "extension": ".c", + "size": 4249, + "date": "2017-02-16", + "sha1": "214bfde3a85ed521fdaa0cd71e75206214994f35", + "md5": "82faae4b7d2b90157a6697134e47bd42", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_type.c", + "type": "file", + "name": "a_type.c", + "base_name": "a_type", + "extension": ".c", + "size": 3473, + "date": "2017-02-16", + "sha1": "185084d182c6ee983cd2a1ad73abeb0020d5127a", + "md5": "59a535263d1c0746969024c6de4b31f6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_utctm.c", + "type": "file", + "name": "a_utctm.c", + "base_name": "a_utctm", + "extension": ".c", + "size": 6278, + "date": "2017-02-16", + "sha1": "dd026b4ddc861c1c327413c22bf75af160c18532", + "md5": "15df9fb88bc3ad366f0715982e3b87d8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_utf8.c", + "type": "file", + "name": "a_utf8.c", + "base_name": "a_utf8", + "extension": ".c", + "size": 6028, + "date": "2017-02-16", + "sha1": "4578b9fae3c90e15003bc3aa0ed3f1885d6dcf38", + "md5": "43df20c45b9b9fefc6b8b94b82d05cdd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/a_verify.c", + "type": "file", + "name": "a_verify.c", + "base_name": "a_verify", + "extension": ".c", + "size": 5023, + "date": "2017-02-16", + "sha1": "22eb79d3a169b2e04fddecb3135c538107a7133d", + "md5": "bdb999a0200ccf65c782d0a241d27d94", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/ameth_lib.c", + "type": "file", + "name": "ameth_lib.c", + "base_name": "ameth_lib", + "extension": ".c", + "size": 12483, + "date": "2017-02-16", + "sha1": "28ee8d400d6c319c886bce2dbc94c1e8a58db366", + "md5": "b7e46e0ae0ff47bbf180dc7418f2349e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn1_err.c", + "type": "file", + "name": "asn1_err.c", + "base_name": "asn1_err", + "extension": ".c", + "size": 14462, + "date": "2017-02-16", + "sha1": "424ab4bd34ff51aba641f86c3524f319e8b999f1", + "md5": "ed5d7c87e463fe80491aeaeed3b9d58d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn1_gen.c", + "type": "file", + "name": "asn1_gen.c", + "base_name": "asn1_gen", + "extension": ".c", + "size": 23172, + "date": "2017-02-16", + "sha1": "4fbfc2f2eb4158fe216f8b11ab95490ae687b02a", + "md5": "aa0918fbf57e0027347d4e615fb3e073", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn1_lib.c", + "type": "file", + "name": "asn1_lib.c", + "base_name": "asn1_lib", + "extension": ".c", + "size": 8670, + "date": "2017-02-16", + "sha1": "83f2a835108ea2ff68d6d43d86b8678df7d76b36", + "md5": "5df1b3485c737ccd43057049c7310056", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn1_locl.h", + "type": "file", + "name": "asn1_locl.h", + "base_name": "asn1_locl", + "extension": ".h", + "size": 3034, + "date": "2017-02-16", + "sha1": "358a7cd1e140a40737c288fca2ea1b4d248cec57", + "md5": "50484a19664922d39b41a584b5f4fe5f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn1_par.c", + "type": "file", + "name": "asn1_par.c", + "base_name": "asn1_par", + "extension": ".c", + "size": 13196, + "date": "2017-02-16", + "sha1": "96b89d07732c84759858597ce2ca2d506b50a1e9", + "md5": "5f6671ffb3a3d8c0d87d6128c3a5a46e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn_mime.c", + "type": "file", + "name": "asn_mime.c", + "base_name": "asn_mime", + "extension": ".c", + "size": 28723, + "date": "2017-02-16", + "sha1": "3bc472c942aba6a29490e6d0f9469ae55d2a9553", + "md5": "00e40a612e3d7d0d3f2530b92c9ca59f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn_moid.c", + "type": "file", + "name": "asn_moid.c", + "base_name": "asn_moid", + "extension": ".c", + "size": 2567, + "date": "2017-02-16", + "sha1": "9fcaa5da8d6b3f4e888e8e7c554d6b0740eea331", + "md5": "75f8ee89fe351f63f538ebc70c192422", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn_mstbl.c", + "type": "file", + "name": "asn_mstbl.c", + "base_name": "asn_mstbl", + "extension": ".c", + "size": 3536, + "date": "2017-02-16", + "sha1": "77708743b32d543e00c42e73511c3af7e8df66f4", + "md5": "11b2d78bdac7c32c88507d76858e0cb5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/asn_pack.c", + "type": "file", + "name": "asn_pack.c", + "base_name": "asn_pack", + "extension": ".c", + "size": 1629, + "date": "2017-02-16", + "sha1": "7b773827d6917da6d65af2b3bb604558ce892fcf", + "md5": "d778114d08f304895c7107b37265114e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/bio_asn1.c", + "type": "file", + "name": "bio_asn1.c", + "base_name": "bio_asn1", + "extension": ".c", + "size": 11053, + "date": "2017-02-16", + "sha1": "03b3979e5ddf304b7ee5a40aa7a633d11314382b", + "md5": "9c80bb7bb5d9de6f3f7656c7336007af", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/bio_ndef.c", + "type": "file", + "name": "bio_ndef.c", + "base_name": "bio_ndef", + "extension": ".c", + "size": 5252, + "date": "2017-02-16", + "sha1": "79ea65d5d3fb01c86ef554d6817746dde5775706", + "md5": "73aea3cfdcef46dcd0b8a550f572cf55", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 810, + "date": "2017-02-16", + "sha1": "f01c17447f6ae726badd2be987f1d409213701d5", + "md5": "4232b61daa8aaecc7088a0086c994dc8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/charmap.h", + "type": "file", + "name": "charmap.h", + "base_name": "charmap", + "extension": ".h", + "size": 1440, + "date": "2017-02-16", + "sha1": "035b7c0da78b377839cf61df08e01bf4b739d8f8", + "md5": "db6777624d421f78c2e3f05854d32f2c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 10, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/charmap.pl", + "type": "file", + "name": "charmap.pl", + "base_name": "charmap", + "extension": ".pl", + "size": 3564, + "date": "2017-02-16", + "sha1": "1570e0b6e93f032a9da0c6769e95ffc860a59d34", + "md5": "594769b2fc4bf4135444b94abdc110f9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 92, + "end_line": 95, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 90, + "end_line": 90 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/d2i_pr.c", + "type": "file", + "name": "d2i_pr.c", + "base_name": "d2i_pr", + "extension": ".c", + "size": 3661, + "date": "2017-02-16", + "sha1": "eeb9cb5a4b61a55786113a7a8d3a7f978dcd9321", + "md5": "c515232ef9707570945217365600e485", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/d2i_pu.c", + "type": "file", + "name": "d2i_pu.c", + "base_name": "d2i_pu", + "extension": ".c", + "size": 2061, + "date": "2017-02-16", + "sha1": "229b48d670acd6d8ba9441e77933a5fd7c9e78a5", + "md5": "72380b573dbe0af61d760d8731e6d11a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/evp_asn1.c", + "type": "file", + "name": "evp_asn1.c", + "base_name": "evp_asn1", + "extension": ".c", + "size": 2961, + "date": "2017-02-16", + "sha1": "b1576b1e27823b50cc0b6239ecbfc95a11151aa6", + "md5": "d7c846e1d78032cb4172a61c6f69b9ad", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/f_int.c", + "type": "file", + "name": "f_int.c", + "base_name": "f_int", + "extension": ".c", + "size": 4493, + "date": "2017-02-16", + "sha1": "fc2f575ac98b50b4139edb15a10d89c8fb68dd67", + "md5": "4879680a00ed3d504bfa90195cbc0d31", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/f_string.c", + "type": "file", + "name": "f_string.c", + "base_name": "f_string", + "extension": ".c", + "size": 4038, + "date": "2017-02-16", + "sha1": "c4027932516b5a89fb47e71e8eda130e05031eaf", + "md5": "6ea8ac5e52a4f34ef0cda1fb3eeb237f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/i2d_pr.c", + "type": "file", + "name": "i2d_pr.c", + "base_name": "i2d_pr", + "extension": ".c", + "size": 1018, + "date": "2017-02-16", + "sha1": "64c0206ae1a45720d78fb11e367bd987e8302f28", + "md5": "9d6fd5927ba5ce9ab49c936370e0a01b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/i2d_pu.c", + "type": "file", + "name": "i2d_pu.c", + "base_name": "i2d_pu", + "extension": ".c", + "size": 1071, + "date": "2017-02-16", + "sha1": "dca5661c44848edb7c17f9be558dbafac09a2818", + "md5": "7c0461f76411c5214845700c2423faec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/n_pkey.c", + "type": "file", + "name": "n_pkey.c", + "base_name": "n_pkey", + "extension": ".c", + "size": 1930, + "date": "2017-02-16", + "sha1": "cfef56857e49111f348bdd7242ac2951428c628b", + "md5": "62827a94cecdc47a93b03e3dae930e6d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/nsseq.c", + "type": "file", + "name": "nsseq.c", + "base_name": "nsseq", + "extension": ".c", + "size": 1141, + "date": "2017-02-16", + "sha1": "95ced7105d1807c79832ec08edfe4f7c0491c07c", + "md5": "1b2412f8675c9392c370fc81db46131e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/p5_pbe.c", + "type": "file", + "name": "p5_pbe.c", + "base_name": "p5_pbe", + "extension": ".c", + "size": 2583, + "date": "2017-02-16", + "sha1": "6839e8c2106edbbb0ba011e08d71c37ba8a0bf55", + "md5": "4ec8445fdf497facf93c7c50643a8b01", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/p5_pbev2.c", + "type": "file", + "name": "p5_pbev2.c", + "base_name": "p5_pbev2", + "extension": ".c", + "size": 6138, + "date": "2017-02-16", + "sha1": "bb5480ee98e4043042b18c08bc5f24f1a1c913f0", + "md5": "461100c6f0a653c85119504eb1b6b271", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/p5_scrypt.c", + "type": "file", + "name": "p5_scrypt.c", + "base_name": "p5_scrypt", + "extension": ".c", + "size": 8199, + "date": "2017-02-16", + "sha1": "00091a259e9543a7a7866381266ce644979e7a5b", + "md5": "9aa61b1fdab7e1567262075e08daeacc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/p8_pkey.c", + "type": "file", + "name": "p8_pkey.c", + "base_name": "p8_pkey", + "extension": ".c", + "size": 2597, + "date": "2017-02-16", + "sha1": "f8bdbe4a2498329d67046600db22e5cc1309bfa2", + "md5": "25fe6ebe4682a992a5c77a668f6d4d91", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/t_bitst.c", + "type": "file", + "name": "t_bitst.c", + "base_name": "t_bitst", + "extension": ".c", + "size": 1593, + "date": "2017-02-16", + "sha1": "87a3d446b6a23de7c71a1f657973b94bf7a8fd22", + "md5": "3b92f0b561a8c3b9bb0d0f61e747666c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/t_pkey.c", + "type": "file", + "name": "t_pkey.c", + "base_name": "t_pkey", + "extension": ".c", + "size": 2587, + "date": "2017-02-16", + "sha1": "4c4866558feefadebdbeb7835a419a2e7a71f382", + "md5": "b06562070158cb3bc3e1b73418e1f92b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/t_spki.c", + "type": "file", + "name": "t_spki.c", + "base_name": "t_spki", + "extension": ".c", + "size": 1780, + "date": "2017-02-16", + "sha1": "175780eb584ea4cae797b4fc9e02dfd4d41d6706", + "md5": "86016cfe105e45227d320fb6815b66ee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/tasn_dec.c", + "type": "file", + "name": "tasn_dec.c", + "base_name": "tasn_dec", + "extension": ".c", + "size": 36533, + "date": "2017-02-16", + "sha1": "fbbc78b5836707d8f1d95370df5ecacd0fa581fd", + "md5": "f03d6ee8f931525dbe39e9ce5a61a804", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/tasn_enc.c", + "type": "file", + "name": "tasn_enc.c", + "base_name": "tasn_enc", + "extension": ".c", + "size": 18584, + "date": "2017-02-16", + "sha1": "72898c8cd9266a38d877ec399839fd4b556fa2b2", + "md5": "7453093cac3debb57e4460f94df544dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/tasn_fre.c", + "type": "file", + "name": "tasn_fre.c", + "base_name": "tasn_fre", + "extension": ".c", + "size": 5476, + "date": "2017-02-16", + "sha1": "25cababee99ff58c6ca91caf70029cacd9748835", + "md5": "2d1ce4aa82983c21478a4d64a3c4e660", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/tasn_new.c", + "type": "file", + "name": "tasn_new.c", + "base_name": "tasn_new", + "extension": ".c", + "size": 8803, + "date": "2017-02-16", + "sha1": "e5726cd10e411da56a8f6c7c3f40dcb466f9c9d1", + "md5": "1a0a444c88edc7e18226daf3a64fc073", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/tasn_prn.c", + "type": "file", + "name": "tasn_prn.c", + "base_name": "tasn_prn", + "extension": ".c", + "size": 14912, + "date": "2017-02-16", + "sha1": "ff56710953118eeccca1a5521a5eb67905c59c8e", + "md5": "3293ca2b955ba10a081fa2866a7a53d5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/tasn_scn.c", + "type": "file", + "name": "tasn_scn.c", + "base_name": "tasn_scn", + "extension": ".c", + "size": 1398, + "date": "2017-02-16", + "sha1": "802ff8c2507eae675178f5d1e55541769bc6e71c", + "md5": "566148a56b75ef1adb958878c60b6bbc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/tasn_typ.c", + "type": "file", + "name": "tasn_typ.c", + "base_name": "tasn_typ", + "extension": ".c", + "size": 3007, + "date": "2017-02-16", + "sha1": "6bac8c7d1512624d3a0b6a2e761e23ec972b2b77", + "md5": "cf88616bc9bd8965a081dd2408dea33a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/tasn_utl.c", + "type": "file", + "name": "tasn_utl.c", + "base_name": "tasn_utl", + "extension": ".c", + "size": 6523, + "date": "2017-02-16", + "sha1": "dbff0e124718888f4242136a1234ec898a64f041", + "md5": "8e1b45796d654fc6d16f7df53d6e020b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/x_algor.c", + "type": "file", + "name": "x_algor.c", + "base_name": "x_algor", + "extension": ".c", + "size": 2602, + "date": "2017-02-16", + "sha1": "9b56445241cb7bb40c891ad3fd01d63c68ad2292", + "md5": "09e67067441a44c6fb40cf2150d05f44", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/x_bignum.c", + "type": "file", + "name": "x_bignum.c", + "base_name": "x_bignum", + "extension": ".c", + "size": 3915, + "date": "2017-02-16", + "sha1": "d3b78147ad71bd2d66e7ef9c9a8dede6d800cbae", + "md5": "8bc0f3419780bd0dc512647ef09720dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/x_info.c", + "type": "file", + "name": "x_info.c", + "base_name": "x_info", + "extension": ".c", + "size": 895, + "date": "2017-02-16", + "sha1": "013c14c97fba8fb6f98895d73e267224ddafaa4e", + "md5": "fc325fdb8d24226d13a427a4d295bbbc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/x_long.c", + "type": "file", + "name": "x_long.c", + "base_name": "x_long", + "extension": ".c", + "size": 4004, + "date": "2017-02-16", + "sha1": "77f58b07eba447b914f8992ab22631d2da2d701d", + "md5": "dc343aedb2ef039cb7b90e72b47455ba", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/x_pkey.c", + "type": "file", + "name": "x_pkey.c", + "base_name": "x_pkey", + "extension": ".c", + "size": 1148, + "date": "2017-02-16", + "sha1": "b75002e184724adfb711db2f9d668548c1a466df", + "md5": "602134f3fec065af5f839b5a3f1d96dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/x_sig.c", + "type": "file", + "name": "x_sig.c", + "base_name": "x_sig", + "extension": ".c", + "size": 1082, + "date": "2017-02-16", + "sha1": "4a385bf1d61e3483cb432c14a12c8c5aee238714", + "md5": "85757629a1d3b6592e67e24cc3fcb274", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/x_spki.c", + "type": "file", + "name": "x_spki.c", + "base_name": "x_spki", + "extension": ".c", + "size": 1097, + "date": "2017-02-16", + "sha1": "5ac6191626692285d3d796b19eed18aa443a2066", + "md5": "e3b2913e8f5ac16e78821350a93be633", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/asn1/x_val.c", + "type": "file", + "name": "x_val.c", + "base_name": "x_val", + "extension": ".c", + "size": 636, + "date": "2017-02-16", + "sha1": "856fb836170223205ffc3d2e94b82e6e0c6df7a4", + "md5": "a1aaafddc20f3065bfd88ac00d10be3b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async", + "type": "directory", + "name": "async", + "base_name": "async", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 1, + "size_count": 26234, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/async.c", + "type": "file", + "name": "async.c", + "base_name": "async", + "extension": ".c", + "size": 10727, + "date": "2017-02-16", + "sha1": "ace75774c0c707cfca62633ad2218f2f52482647", + "md5": "bffff8b1839fbc4006152087406fdae1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/async_err.c", + "type": "file", + "name": "async_err.c", + "base_name": "async_err", + "extension": ".c", + "size": 1623, + "date": "2017-02-16", + "sha1": "078e428b8194978258088ee332194c98b25fa26b", + "md5": "247441ff682d9d9b44d015cb17846512", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/async_locl.h", + "type": "file", + "name": "async_locl.h", + "base_name": "async_locl", + "extension": ".h", + "size": 1830, + "date": "2017-02-16", + "sha1": "782a0cc6cae81b1a5bdfd7cf15075942d5312b6e", + "md5": "35b0c9564bebd40785d7783fc8cad79a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/async_wait.c", + "type": "file", + "name": "async_wait.c", + "base_name": "async_wait", + "extension": ".c", + "size": 5508, + "date": "2017-02-16", + "sha1": "49a2e7d100bd8f6842ed97fb664b31c433c58dc5", + "md5": "0ddd26e8d8c4c3854591a38beed83376", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 152, + "date": "2017-02-16", + "sha1": "ed6c8da2ed5b93085310e960dee235ffffed9fb5", + "md5": "efc659cd7c62d16ebc31ee7e40f6768c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/arch", + "type": "directory", + "name": "arch", + "base_name": "arch", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 6394, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/arch/async_null.c", + "type": "file", + "name": "async_null.c", + "base_name": "async_null", + "extension": ".c", + "size": 512, + "date": "2017-02-16", + "sha1": "c737c7eec1f595282ccf168ed339c3eec5e5790d", + "md5": "da5f80ac3339fbdb90fc9b514fc97b91", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/arch/async_null.h", + "type": "file", + "name": "async_null.h", + "base_name": "async_null", + "extension": ".h", + "size": 762, + "date": "2017-02-16", + "sha1": "a30fb2d06acb36c11280e351a15b76b650fbaf29", + "md5": "5c4c1038393988b72e0e6983afac0ee0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/arch/async_posix.c", + "type": "file", + "name": "async_posix.c", + "base_name": "async_posix", + "extension": ".c", + "size": 1409, + "date": "2017-02-16", + "sha1": "304034e2fd570e005c80b9820c523d3044d5e991", + "md5": "63ae681bf4b7e3813e0d79573b9d0d7d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/arch/async_posix.h", + "type": "file", + "name": "async_posix.h", + "base_name": "async_posix", + "extension": ".h", + "size": 1391, + "date": "2017-02-16", + "sha1": "fffe1ddceea0ae25b8b050811a84c51f2122f816", + "md5": "e456b1409bc429da3dc4c6d66fc597ea", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/arch/async_win.c", + "type": "file", + "name": "async_win.c", + "base_name": "async_win", + "extension": ".c", + "size": 1239, + "date": "2017-02-16", + "sha1": "69f5de7eb859a0cb256bc7698ffbd2532143087f", + "md5": "6b4ab21c7b3a604980d645e9ba877224", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/async/arch/async_win.h", + "type": "file", + "name": "async_win.h", + "base_name": "async_win", + "extension": ".h", + "size": 1081, + "date": "2017-02-16", + "sha1": "2e00ac305a13c7eadf5d1f9a4eb01ac89a507ac9", + "md5": "68043e4216617081647c465c8128aae4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf", + "type": "directory", + "name": "bf", + "base_name": "bf", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 1, + "size_count": 49996, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/bf_cbc.c", + "type": "file", + "name": "bf_cbc.c", + "base_name": "bf_cbc", + "extension": ".c", + "size": 2450, + "date": "2017-02-16", + "sha1": "f4c1a386748c990b582269d832c08f628c7565a0", + "md5": "48dc37d7a43ca1ccaa55264f5cacd7af", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/bf_cfb64.c", + "type": "file", + "name": "bf_cfb64.c", + "base_name": "bf_cfb64", + "extension": ".c", + "size": 2164, + "date": "2017-02-16", + "sha1": "e04069c9b2828bd4d79ec2153da0a95fd03454fb", + "md5": "e41eb4d8b2b9be6cdbd05b8c2d85f047", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/bf_ecb.c", + "type": "file", + "name": "bf_ecb.c", + "base_name": "bf_ecb", + "extension": ".c", + "size": 1070, + "date": "2017-02-16", + "sha1": "415645eed425e20960e1b1643fcff469a9b1c6c2", + "md5": "84e8b9dd893703250acd0eba8cb4b2fc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/bf_enc.c", + "type": "file", + "name": "bf_enc.c", + "base_name": "bf_enc", + "extension": ".c", + "size": 4609, + "date": "2017-02-16", + "sha1": "140c2a951235fbf78a44b10048240aed04fdd13b", + "md5": "e955c9deb81f3655a102161715862e34", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/bf_locl.h", + "type": "file", + "name": "bf_locl.h", + "base_name": "bf_locl", + "extension": ".h", + "size": 2973, + "date": "2017-02-16", + "sha1": "4c964fec9ada9791b975d65bbde4dd3f23e67a82", + "md5": "06ca3517e40cd7188c1504a83dbf6557", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/bf_ofb64.c", + "type": "file", + "name": "bf_ofb64.c", + "base_name": "bf_ofb64", + "extension": ".c", + "size": 1607, + "date": "2017-02-16", + "sha1": "53272e9f884c1af2e163c163e99b5a8c3fb88604", + "md5": "943e09d8a2071b8cba6ac58d612c7975", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/bf_pi.h", + "type": "file", + "name": "bf_pi.h", + "base_name": "bf_pi", + "extension": ".h", + "size": 30366, + "date": "2017-02-16", + "sha1": "51a231520e4d8118f6413596d11f29b4c9bb26e7", + "md5": "02e7d8de8e495e90d0233edd60c7a26c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/bf_skey.c", + "type": "file", + "name": "bf_skey.c", + "base_name": "bf_skey", + "extension": ".c", + "size": 1450, + "date": "2017-02-16", + "sha1": "654d1fa06fdbfb27c07b7b4a8b2ccccc09f14413", + "md5": "43927df1bf6961081504cd60d8ffbe89", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 267, + "date": "2017-02-16", + "sha1": "77f759327696fd3f30e37ccacf11980314df05aa", + "md5": "0f48a6df715e52f10595df3211aebb56", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3040, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bf/asm/bf-586.pl", + "type": "file", + "name": "bf-586.pl", + "base_name": "bf-586", + "extension": ".pl", + "size": 3040, + "date": "2017-02-16", + "sha1": "d3b1b8f68a814a8034d53e01c74fd5a6c1aef03b", + "md5": "cd46f42258d0059caa2d93e9d35097d4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio", + "type": "directory", + "name": "bio", + "base_name": "bio", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 0, + "size_count": 282885, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/b_addr.c", + "type": "file", + "name": "b_addr.c", + "base_name": "b_addr", + "extension": ".c", + "size": 24722, + "date": "2017-02-16", + "sha1": "d2bc4bb385561c01c9046518d51f155060e71dd0", + "md5": "82b02477d7fd0ff145f830c97d0e4dcb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/b_dump.c", + "type": "file", + "name": "b_dump.c", + "base_name": "b_dump", + "extension": ".c", + "size": 4430, + "date": "2017-02-16", + "sha1": "4ae88b01e9d0f1bc7d09c942ad0ea86f58034b40", + "md5": "19f1faf5bfe3217a96b2eae5ecfdf677", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/b_print.c", + "type": "file", + "name": "b_print.c", + "base_name": "b_print", + "extension": ".c", + "size": 26488, + "date": "2017-02-16", + "sha1": "a2b3dd88fb71c13889e19cbdb954dd5abf8ebb9f", + "md5": "b4145fd48a4d1f93f97f7b27587ac8bd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "snprintf", + "score": 94.74, + "short_name": "snprintf License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:snprintf", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 28, + "end_line": 31, + "matched_rule": { + "identifier": "snprintf.LICENSE", + "license_choice": false, + "licenses": [ + "snprintf" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright Patrick Powell 1995" + ], + "holders": [ + "Patrick Powell" + ], + "authors": [ + "Patrick Powell " + ], + "start_line": 28, + "end_line": 31 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/b_sock.c", + "type": "file", + "name": "b_sock.c", + "base_name": "b_sock", + "extension": ".c", + "size": 10217, + "date": "2017-02-16", + "sha1": "c16f3c3161e648dc5a82c25c7ff4c7e10585c35b", + "md5": "a577fa3b10ec782fa932b3e0451c8818", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/b_sock2.c", + "type": "file", + "name": "b_sock2.c", + "base_name": "b_sock2", + "extension": ".c", + "size": 8762, + "date": "2017-02-16", + "sha1": "fa41c5f87f7d3d42cb4028bbd90c5a3682b37d3d", + "md5": "8f2d99c0174a8cbb4b38b9987fca9d6b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bf_buff.c", + "type": "file", + "name": "bf_buff.c", + "base_name": "bf_buff", + "extension": ".c", + "size": 12065, + "date": "2017-02-16", + "sha1": "4abf62addc675fb8fa7713b70311845ac248af18", + "md5": "1004117f46cf93dbe53635b6e97a3b8e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bf_lbuf.c", + "type": "file", + "name": "bf_lbuf.c", + "base_name": "bf_lbuf", + "extension": ".c", + "size": 8642, + "date": "2017-02-16", + "sha1": "de06167d769455b9c354a1aaafcbce6c737cbe19", + "md5": "7ac022b139f057511de2f3757a14978e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bf_nbio.c", + "type": "file", + "name": "bf_nbio.c", + "base_name": "bf_nbio", + "extension": ".c", + "size": 4122, + "date": "2017-02-16", + "sha1": "1a7024191c98690a5bedbf04333b2de4b8b5ecef", + "md5": "a3dad01bc784528d771d97a88d45f4f3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bf_null.c", + "type": "file", + "name": "bf_null.c", + "base_name": "bf_null", + "extension": ".c", + "size": 3082, + "date": "2017-02-16", + "sha1": "35a7bf0e14328dad6c21f522fa32cf00afb065a0", + "md5": "7bc1a4ca380dae0e92cd4501e2976ead", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bio_cb.c", + "type": "file", + "name": "bio_cb.c", + "base_name": "bio_cb", + "extension": ".c", + "size": 3199, + "date": "2017-02-16", + "sha1": "531fe3a06496cbd90fdb73b0541224ce08d049a4", + "md5": "9d05f0242e270f7744561c9084959a21", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bio_err.c", + "type": "file", + "name": "bio_err.c", + "base_name": "bio_err", + "extension": ".c", + "size": 5521, + "date": "2017-02-16", + "sha1": "08dce1bfeeaa923c865c4eb62a5b80a6c3ecbc63", + "md5": "7a481d7c3d70fd14f96c3783b2d70294", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bio_lcl.h", + "type": "file", + "name": "bio_lcl.h", + "base_name": "bio_lcl", + "extension": ".h", + "size": 5586, + "date": "2017-02-16", + "sha1": "2b67a73ef440f10ad2300f9338408a2f21f160cb", + "md5": "0909e3c6168450e6c92353bac5431001", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bio_lib.c", + "type": "file", + "name": "bio_lib.c", + "base_name": "bio_lib", + "extension": ".c", + "size": 12674, + "date": "2017-02-16", + "sha1": "0b38356923a229941c0fad45110dd9ec849f77ad", + "md5": "f93aa152226a3de0f3dbf26f9399fc47", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bio_meth.c", + "type": "file", + "name": "bio_meth.c", + "base_name": "bio_meth", + "extension": ".c", + "size": 3188, + "date": "2017-02-16", + "sha1": "c5d0e568a6057123468a96a89892d6ca1c0a689a", + "md5": "a35669c76f3e133dc3d57dcf6bd93c99", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_acpt.c", + "type": "file", + "name": "bss_acpt.c", + "base_name": "bss_acpt", + "extension": ".c", + "size": 16099, + "date": "2017-02-16", + "sha1": "b7410404b4fec5bb3cca9034ed30b5de1cc7d7e7", + "md5": "118ceff0162a72ae17a7fe0e903e7333", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_bio.c", + "type": "file", + "name": "bss_bio.c", + "base_name": "bss_bio", + "extension": ".c", + "size": 18874, + "date": "2017-02-16", + "sha1": "39beac44957068ce1ce9afb51bd031cabab20c49", + "md5": "36bd6a9a35439053e5ad89dd929e6737", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_conn.c", + "type": "file", + "name": "bss_conn.c", + "base_name": "bss_conn", + "extension": ".c", + "size": 15911, + "date": "2017-02-16", + "sha1": "3d402f9b968a5be5a862f848eb2b90c1d7fc427d", + "md5": "05163f1735a4512492f3ae19a13f3b2b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_dgram.c", + "type": "file", + "name": "bss_dgram.c", + "base_name": "bss_dgram", + "extension": ".c", + "size": 58294, + "date": "2017-02-16", + "sha1": "d797883f589b491116eeb95ae751dc49f84061f7", + "md5": "a599b99085b58ad540ff1cc4511109d4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_fd.c", + "type": "file", + "name": "bss_fd.c", + "base_name": "bss_fd", + "extension": ".c", + "size": 5482, + "date": "2017-02-16", + "sha1": "324d6850f3c915a2d8c2aa8198b80e8775f42db2", + "md5": "6b35fe0967b80d63ef650dc9aadc0c30", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_file.c", + "type": "file", + "name": "bss_file.c", + "base_name": "bss_file", + "extension": ".c", + "size": 11269, + "date": "2017-02-16", + "sha1": "6a83c4a14a548df3a2bda9a7446451a6a61963cd", + "md5": "5248fcdd99af3fac2d1254041bd718ec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_log.c", + "type": "file", + "name": "bss_log.c", + "base_name": "bss_log", + "extension": ".c", + "size": 9347, + "date": "2017-02-16", + "sha1": "cf1f04c0102a1637e337ee80193320f5339a54d3", + "md5": "c2ac9036181429fbbbf5575d596747fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_mem.c", + "type": "file", + "name": "bss_mem.c", + "base_name": "bss_mem", + "extension": ".c", + "size": 8145, + "date": "2017-02-16", + "sha1": "2e9d27c22589cf5fd98326efea78db2a052c4266", + "md5": "6cda5f8e4f9fef2974d10c02a8e98f0a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_null.c", + "type": "file", + "name": "bss_null.c", + "base_name": "bss_null", + "extension": ".c", + "size": 2031, + "date": "2017-02-16", + "sha1": "5aad88c5bd4d493e5d9e25fe5326d9fe680a4035", + "md5": "2e81c3625960cc749f5cf77ea6da1198", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/bss_sock.c", + "type": "file", + "name": "bss_sock.c", + "base_name": "bss_sock", + "extension": ".c", + "size": 4397, + "date": "2017-02-16", + "sha1": "f70ec602396df9044728410ea1bc2820eb2d4506", + "md5": "ea7f62c666b55c8ad69c383a7cb5be51", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bio/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 338, + "date": "2017-02-16", + "sha1": "10536129d1a6c1d192c2d4eec85938d19cd2bb3f", + "md5": "d4713215727ec27f6ec941e0d599912f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/blake2", + "type": "directory", + "name": "blake2", + "base_name": "blake2", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 25212, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/blake2/blake2_impl.h", + "type": "file", + "name": "blake2_impl.h", + "base_name": "blake2_impl", + "extension": ".h", + "size": 3261, + "date": "2017-02-16", + "sha1": "b9d35f48c6e634b489e1b11386f663d9981660f4", + "md5": "015e80d32099f9ac193c5a6530490afa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/blake2/blake2_locl.h", + "type": "file", + "name": "blake2_locl.h", + "base_name": "blake2_locl", + "extension": ".h", + "size": 2689, + "date": "2017-02-16", + "sha1": "a8ebaceecc4584dd23336b171b228be33cf3f7be", + "md5": "5030367932b68825159b209f5ba81540", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/blake2/blake2b.c", + "type": "file", + "name": "blake2b.c", + "base_name": "blake2b", + "extension": ".c", + "size": 8359, + "date": "2017-02-16", + "sha1": "73ef5dfd6e5369940a8423a27cd0fd33558d80df", + "md5": "4e1a8c6d8fdc41b4d27350b8630f5ba8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/blake2/blake2s.c", + "type": "file", + "name": "blake2s.c", + "base_name": "blake2s", + "extension": ".c", + "size": 8038, + "date": "2017-02-16", + "sha1": "a3f80886f34f61200a8741e3b4e15424312ac5df", + "md5": "a06b7fb467e6102232dc6746895ecec9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/blake2/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 99, + "date": "2017-02-16", + "sha1": "333eae26cbf7fa77ab86e9142530d5288db10227", + "md5": "dc148256d83ec9ac109a80316ce0a4c3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/blake2/m_blake2b.c", + "type": "file", + "name": "m_blake2b.c", + "base_name": "m_blake2b", + "extension": ".c", + "size": 1383, + "date": "2017-02-16", + "sha1": "63d562d15c39f060adf41db3f55112a03a964699", + "md5": "a7ef3c66fd4dd9f3003de98c56f73723", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/blake2/m_blake2s.c", + "type": "file", + "name": "m_blake2s.c", + "base_name": "m_blake2s", + "extension": ".c", + "size": 1383, + "date": "2017-02-16", + "sha1": "ed789ae4e4ea9f6fb54bf73841f301527216aa70", + "md5": "9945a02af93e7ec083e8168fedc4e6ff", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn", + "type": "directory", + "name": "bn", + "base_name": "bn", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 76, + "dirs_count": 1, + "size_count": 1382006, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_add.c", + "type": "file", + "name": "bn_add.c", + "base_name": "bn_add", + "extension": ".c", + "size": 3938, + "date": "2017-02-16", + "sha1": "58dab109a112aee2713a034cf6342f7f2cd08e5e", + "md5": "7ac65a81391358a2b1f98a32f6b0d658", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_asm.c", + "type": "file", + "name": "bn_asm.c", + "base_name": "bn_asm", + "extension": ".c", + "size": 27575, + "date": "2017-02-16", + "sha1": "97af54bc5ec7df47cdfdf71d30c6c54b60aef6c1", + "md5": "2b12f160bdf63029be3340028eaaa276", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_blind.c", + "type": "file", + "name": "bn_blind.c", + "base_name": "bn_blind", + "extension": ".c", + "size": 7128, + "date": "2017-02-16", + "sha1": "454fd456c79b326c3b4220d869200f9bbf561b42", + "md5": "0eb7702d50f82ac522c5c0d32c2556b0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_const.c", + "type": "file", + "name": "bn_const.c", + "base_name": "bn_const", + "extension": ".c", + "size": 26919, + "date": "2017-02-16", + "sha1": "2d452f296e43a1bfc926e42947f1eb7da37204be", + "md5": "55d9ea7f42163abdd0da54d71dda9338", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_ctx.c", + "type": "file", + "name": "bn_ctx.c", + "base_name": "bn_ctx", + "extension": ".c", + "size": 9510, + "date": "2017-02-16", + "sha1": "b9679a59b1e8af3f0556b963d88b120c5b3381e3", + "md5": "66dd5c0075f5b2b911784eca79e0818a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_depr.c", + "type": "file", + "name": "bn_depr.c", + "base_name": "bn_depr", + "extension": ".c", + "size": 1932, + "date": "2017-02-16", + "sha1": "db3bc4983c2181dea326904198fe69a205f7d043", + "md5": "5f228bdd6ec9f38fd3519dfb7c9860b5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_dh.c", + "type": "file", + "name": "bn_dh.c", + "base_name": "bn_dh", + "extension": ".c", + "size": 10404, + "date": "2017-02-16", + "sha1": "5eefe90dcef56035b57ca8107a237b7d35ba83a6", + "md5": "c65f1e0671bf289800cb35231b9065a1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_div.c", + "type": "file", + "name": "bn_div.c", + "base_name": "bn_div", + "extension": ".c", + "size": 12412, + "date": "2017-02-16", + "sha1": "7a29d9a7b59aa507473180c9b018bc2cd5055b5e", + "md5": "a7bd8952264362b50ddc4df9c7305fad", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_err.c", + "type": "file", + "name": "bn_err.c", + "base_name": "bn_err", + "extension": ".c", + "size": 4656, + "date": "2017-02-16", + "sha1": "7072d9005806d379d60b52d0d8afe69a4a62b088", + "md5": "467863744520a2c5fcf9a8d8794f4358", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_exp.c", + "type": "file", + "name": "bn_exp.c", + "base_name": "bn_exp", + "extension": ".c", + "size": 43618, + "date": "2017-02-16", + "sha1": "bdd40816afb5921fd931b4170c91f38b75cbeacd", + "md5": "2919cec82c9ba3e521861bcfea51ed07", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_exp2.c", + "type": "file", + "name": "bn_exp2.c", + "base_name": "bn_exp2", + "extension": ".c", + "size": 5961, + "date": "2017-02-16", + "sha1": "0f8b6bcc4d1b782d7cade4bc71de7f1c8bec8a68", + "md5": "edf5606c79e162c002ee8289b19e1f1d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_gcd.c", + "type": "file", + "name": "bn_gcd.c", + "base_name": "bn_gcd", + "extension": ".c", + "size": 17271, + "date": "2017-02-16", + "sha1": "642929e855ea636648e178b5479854e3b64aea48", + "md5": "a3461a1698016b0442c2fb8f349a7ab5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_gf2m.c", + "type": "file", + "name": "bn_gf2m.c", + "base_name": "bn_gf2m", + "extension": ".c", + "size": 31344, + "date": "2017-02-16", + "sha1": "1fef9c3048e8f3311cb1c084d565d534459da381", + "md5": "33ccbb33f6720800a9d86eb60f0aae64", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_intern.c", + "type": "file", + "name": "bn_intern.c", + "base_name": "bn_intern", + "extension": ".c", + "size": 5625, + "date": "2017-02-16", + "sha1": "203171316bbee23bf8b9fb9bbddf1f6ac21702cd", + "md5": "b3c0cb046f0c7beb70e631ec44b6abb7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_kron.c", + "type": "file", + "name": "bn_kron.c", + "base_name": "bn_kron", + "extension": ".c", + "size": 3294, + "date": "2017-02-16", + "sha1": "b55d08c2f95c9c531c8fc237c99201d0cb7b8d08", + "md5": "fc6290a2e7439f2d5d5e068284486025", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_lcl.h", + "type": "file", + "name": "bn_lcl.h", + "base_name": "bn_lcl", + "extension": ".h", + "size": 25390, + "date": "2017-02-16", + "sha1": "84dac987fe5b910f162a53906e95ce6cd3f1ea01", + "md5": "817861adf11b6ff9c5c8491c556eef33", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_lib.c", + "type": "file", + "name": "bn_lib.c", + "base_name": "bn_lib", + "extension": ".c", + "size": 23462, + "date": "2017-02-16", + "sha1": "57e08e25051162345cf6a09acd3d9ff81c5186e2", + "md5": "1a47bdc39688eb0a87f710ed87aa4f29", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_mod.c", + "type": "file", + "name": "bn_mod.c", + "base_name": "bn_mod", + "extension": ".c", + "size": 4525, + "date": "2017-02-16", + "sha1": "c16bf0579e3aca22ee4ba56c9dc12ab1e2c71959", + "md5": "54a3b2e1d49dd2a2a2f29a0490167f2e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_mont.c", + "type": "file", + "name": "bn_mont.c", + "base_name": "bn_mont", + "extension": ".c", + "size": 11375, + "date": "2017-02-16", + "sha1": "94b6e0e3f172a2e2f670d9256d18d1beddf0a85a", + "md5": "bfa80679f1f9efaa9e1d562f7e80e8eb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_mpi.c", + "type": "file", + "name": "bn_mpi.c", + "base_name": "bn_mpi", + "extension": ".c", + "size": 1909, + "date": "2017-02-16", + "sha1": "15a17548aa479599c84f5ee836bab39fab9f0fff", + "md5": "c8a451ddbf8290fa93413d419010a61f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_mul.c", + "type": "file", + "name": "bn_mul.c", + "base_name": "bn_mul", + "extension": ".c", + "size": 28525, + "date": "2017-02-16", + "sha1": "0d8516485ec43821dd223fd790d318bddc289f67", + "md5": "d2a577aa59cc02571a7611e9cca32e11", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_nist.c", + "type": "file", + "name": "bn_nist.c", + "base_name": "bn_nist", + "extension": ".c", + "size": 38166, + "date": "2017-02-16", + "sha1": "c0ba9871f16522e6a7a9653cb1ddbbf55c000bb4", + "md5": "c7a38dab33103917a42361ae7574bae7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_prime.c", + "type": "file", + "name": "bn_prime.c", + "base_name": "bn_prime", + "extension": ".c", + "size": 18043, + "date": "2017-02-16", + "sha1": "132b282055e64bf6cb72881f7f7916430b104306", + "md5": "8bcf0fbf8dbf2e3da48d298340723dca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_prime.h", + "type": "file", + "name": "bn_prime.h", + "base_name": "bn_prime", + "extension": ".h", + "size": 14886, + "date": "2017-02-16", + "sha1": "e8c577c8245b592debb7b7c41aa651460372dda7", + "md5": "d85371e6b7c91799af69ec5897925ed3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 10, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_prime.pl", + "type": "file", + "name": "bn_prime.pl", + "base_name": "bn_prime", + "extension": ".pl", + "size": 1312, + "date": "2017-02-16", + "sha1": "077afac4f589cc8f68f9c8dbad6c3bf2d3d173bd", + "md5": "c5b48940185d84921321c4bb130db204", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 16, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 14, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_print.c", + "type": "file", + "name": "bn_print.c", + "base_name": "bn_print", + "extension": ".c", + "size": 7985, + "date": "2017-02-16", + "sha1": "b6bdf7ac3457452142b508367aaa8b37fe0e4042", + "md5": "70b308efe144706c648610e476deddf0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_rand.c", + "type": "file", + "name": "bn_rand.c", + "base_name": "bn_rand", + "extension": ".c", + "size": 7378, + "date": "2017-02-16", + "sha1": "8017c637e0acff704cee894aed01b2c362bdd17a", + "md5": "7bee2df39e3a303705dc58dc9022e4f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_recp.c", + "type": "file", + "name": "bn_recp.c", + "base_name": "bn_recp", + "extension": ".c", + "size": 4663, + "date": "2017-02-16", + "sha1": "5026dff433384f34d6fb649cfb2460088760c9c6", + "md5": "7cb1f5d73038406549606778e0a0da87", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_shift.c", + "type": "file", + "name": "bn_shift.c", + "base_name": "bn_shift", + "extension": ".c", + "size": 3827, + "date": "2017-02-16", + "sha1": "c41c8108391419c9524a96899f40aaf7a3149562", + "md5": "59785e83dc70a6e2f78750de52348453", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_sqr.c", + "type": "file", + "name": "bn_sqr.c", + "base_name": "bn_sqr", + "extension": ".c", + "size": 5504, + "date": "2017-02-16", + "sha1": "90f68787cb3676233a306620b359fd221bc5d9c0", + "md5": "b459d15bd9efc3c88794e029e2f49db6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_sqrt.c", + "type": "file", + "name": "bn_sqrt.c", + "base_name": "bn_sqrt", + "extension": ".c", + "size": 9441, + "date": "2017-02-16", + "sha1": "c71a12b983998edb4936cc1de1d43f5a9cdb0758", + "md5": "aaa4bca79970b5bea3c86ce9e560c0f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_srp.c", + "type": "file", + "name": "bn_srp.c", + "base_name": "bn_srp", + "extension": ".c", + "size": 21875, + "date": "2017-02-16", + "sha1": "02b7a2c63636d6d6a000dc7b73012acbbccfaf1e", + "md5": "147ae8e7be81880cad701d45ebfaac8a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_word.c", + "type": "file", + "name": "bn_word.c", + "base_name": "bn_word", + "extension": ".c", + "size": 4525, + "date": "2017-02-16", + "sha1": "2bd10aee62e2875b2b1e94714075ad5c2c38d844", + "md5": "bd3ecbc27db42d54b4bc4907c0d6c136", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/bn_x931p.c", + "type": "file", + "name": "bn_x931p.c", + "base_name": "bn_x931p", + "extension": ".c", + "size": 5698, + "date": "2017-02-16", + "sha1": "4088061ccf61f0a4826c18451d61f6d78e5dab51", + "md5": "be24262d6f5b05c0e12ed9bb54c77653", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 3487, + "date": "2017-02-16", + "sha1": "73bbf61649eea89c7eb37f723ecf5e853fcdab7f", + "md5": "8f046762c03864ba6dcfeeb43debf1f1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/README.pod", + "type": "file", + "name": "README.pod", + "base_name": "README", + "extension": ".pod", + "size": 9830, + "date": "2017-02-16", + "sha1": "783325d89bd30a8c377d5c31f4ffb56cbcaffebb", + "md5": "feef15bc85cb3113fe14c9ca6d5e0dfb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 242, + "end_line": 244, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 238, + "end_line": 240 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/rsaz_exp.c", + "type": "file", + "name": "rsaz_exp.c", + "base_name": "rsaz_exp", + "extension": ".c", + "size": 14029, + "date": "2017-02-16", + "sha1": "f38ea2e959bed4de7257e1f280dd13282db7555e", + "md5": "8a5da9ae184ff21dbc1e2c79d6c8054e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 43, + "matched_rule": { + "identifier": "bsd-new_152.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012, Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 46, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/rsaz_exp.h", + "type": "file", + "name": "rsaz_exp.h", + "base_name": "rsaz_exp", + "extension": ".h", + "size": 4382, + "date": "2017-02-16", + "sha1": "c28e43cd491eda758aec866db429e84fc1b1f2d2", + "md5": "3fb3cc62081f9410eb223b1eb11f7173", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 43, + "matched_rule": { + "identifier": "bsd-new_152.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012, Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 46, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 38, + "dirs_count": 0, + "size_count": 900202, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/alpha-mont.pl", + "type": "file", + "name": "alpha-mont.pl", + "base_name": "alpha-mont", + "extension": ".pl", + "size": 5948, + "date": "2017-02-16", + "sha1": "e808abc9b7c14e22716449d6c5f16f71ee40fe68", + "md5": "f89314b192e3f957e0b5b10cf439cb47", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/armv4-gf2m.pl", + "type": "file", + "name": "armv4-gf2m.pl", + "base_name": "armv4-gf2m", + "extension": ".pl", + "size": 8385, + "date": "2017-02-16", + "sha1": "54d9727bd532f3c347f2a5e9e65eefb7a3a1ddd7", + "md5": "770a546d35074f1dec7d9eeb2b400782", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/armv4-mont.pl", + "type": "file", + "name": "armv4-mont.pl", + "base_name": "armv4-mont", + "extension": ".pl", + "size": 19690, + "date": "2017-02-16", + "sha1": "b12a1331c10b2d9ec03bfd857e535cfbc79e07cc", + "md5": "57779966b3899c754d080e467aecffb4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/armv8-mont.pl", + "type": "file", + "name": "armv8-mont.pl", + "base_name": "armv8-mont", + "extension": ".pl", + "size": 36761, + "date": "2017-02-16", + "sha1": "5b4da62a71ebc01f37b5f8bad7e79825170c73d1", + "md5": "13ebd0617fa724ac8b5c6cd9667c68e6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/bn-586.pl", + "type": "file", + "name": "bn-586.pl", + "base_name": "bn-586", + "extension": ".pl", + "size": 16794, + "date": "2017-02-16", + "sha1": "3be882d57adbc706c9156c895f8790ca3f28af6f", + "md5": "d0f399c0feeba930b90e77a11a5a53c0", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/bn-c64xplus.asm", + "type": "file", + "name": "bn-c64xplus.asm", + "base_name": "bn-c64xplus", + "extension": ".asm", + "size": 10129, + "date": "2017-02-16", + "sha1": "dc0b3ba93030285eadb549f6833f70a7e98aac9d", + "md5": "7e01af712f33c714d734d4f1e5caea4f", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "NASM", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 3, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 3, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 9, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/c64xplus-gf2m.pl", + "type": "file", + "name": "c64xplus-gf2m.pl", + "base_name": "c64xplus-gf2m", + "extension": ".pl", + "size": 4091, + "date": "2017-02-16", + "sha1": "cdc4de56b6e8a60f21eb0f67b33f2ed5d385feda", + "md5": "8ca025df74885c1bb3c916bf672d0116", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/co-586.pl", + "type": "file", + "name": "co-586.pl", + "base_name": "co-586", + "extension": ".pl", + "size": 6014, + "date": "2017-02-16", + "sha1": "16b26a5742a2dcf749d62cb1a028bb2a4b27717d", + "md5": "dc3ed1e7802b1d8d8b68856ea225f8ca", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/ia64-mont.pl", + "type": "file", + "name": "ia64-mont.pl", + "base_name": "ia64-mont", + "extension": ".pl", + "size": 26350, + "date": "2017-02-16", + "sha1": "5de7cbe46fe52e6a5d7a712dc8ed4e8d6b18da2c", + "md5": "aaf59f22c6652f45935fc7ff1895434b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/ia64.S", + "type": "file", + "name": "ia64.S", + "base_name": "ia64", + "extension": ".S", + "size": 45642, + "date": "2017-02-16", + "sha1": "cb5fbb6595820a6f456d916cd13d470f6aefcaa2", + "md5": "ba62c216d00c3960554050c0d97e43d1", + "mime_type": "text/x-asm", + "file_type": "assembler source, UTF-8 Unicode text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 8, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 8, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 19, + "end_line": 19, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov " + ], + "start_line": 3, + "end_line": 4 + }, + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 6, + "end_line": 6 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 15, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/mips-mont.pl", + "type": "file", + "name": "mips-mont.pl", + "base_name": "mips-mont", + "extension": ".pl", + "size": 9207, + "date": "2017-02-16", + "sha1": "d5bfb87e7166812544bf1f1d19a98412f9e05624", + "md5": "fd7e2887e1c099f04e3ce3d422cf658d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/mips.pl", + "type": "file", + "name": "mips.pl", + "base_name": "mips", + "extension": ".pl", + "size": 45730, + "date": "2017-02-16", + "sha1": "276f549469a05448c3be74f66ef58d541b95775a", + "md5": "a55803c2ae50e6fc8dd195f82d19a935", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 15, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 15, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 15, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/pa-risc2.s", + "type": "file", + "name": "pa-risc2.s", + "base_name": "pa-risc2", + "extension": ".s", + "size": 48919, + "date": "2017-02-16", + "sha1": "de4425a019e5934a960dc7a0aaea376a814e3cd1", + "md5": "2c71c898c465d9ae218d732f5ed2e60f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Chris Ruemmler" + ], + "start_line": 23, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/pa-risc2W.s", + "type": "file", + "name": "pa-risc2W.s", + "base_name": "pa-risc2W", + "extension": ".s", + "size": 46995, + "date": "2017-02-16", + "sha1": "c4f9cff4d7f30fc953ab0d799cba8dfaebebda8b", + "md5": "127133ce30f7f7a50cccd1151f0a0c36", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Chris Ruemmler" + ], + "start_line": 18, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/parisc-mont.pl", + "type": "file", + "name": "parisc-mont.pl", + "base_name": "parisc-mont", + "extension": ".pl", + "size": 27348, + "date": "2017-02-16", + "sha1": "a8282e03d8bad03bef2ac98ca20746bf7002655c", + "md5": "feedeb09de65697bfe45d4a17e640ab1", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/ppc-mont.pl", + "type": "file", + "name": "ppc-mont.pl", + "base_name": "ppc-mont", + "extension": ".pl", + "size": 7950, + "date": "2017-02-16", + "sha1": "676962a37ca5fa91f666c0cdadacf8749544eae4", + "md5": "7e3438064fc728a3c91b0c9a35090eaa", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/ppc.pl", + "type": "file", + "name": "ppc.pl", + "base_name": "ppc", + "extension": ".pl", + "size": 45663, + "date": "2017-02-16", + "sha1": "98aa1a0ff52a59fdb3b8b243667c0aed6a7310ce", + "md5": "3ccd6e68f29f416713762cce8047b393", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/ppc64-mont.pl", + "type": "file", + "name": "ppc64-mont.pl", + "base_name": "ppc64-mont", + "extension": ".pl", + "size": 40493, + "date": "2017-02-16", + "sha1": "d6ab806f193aa17c65d415cefd801c249c55741d", + "md5": "99016aa9a5b005befad44965a1db71ce", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/rsaz-avx2.pl", + "type": "file", + "name": "rsaz-avx2.pl", + "base_name": "rsaz-avx2", + "extension": ".pl", + "size": 54456, + "date": "2017-02-16", + "sha1": "fd60f1565575d8d28cd88f98f32afe6a288d75fa", + "md5": "b562d72f9f6d82e2a115de84dcadc7c3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 43, + "matched_rule": { + "identifier": "bsd-new_152.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012, Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 46, + "end_line": 49 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 67, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/rsaz-x86_64.pl", + "type": "file", + "name": "rsaz-x86_64.pl", + "base_name": "rsaz-x86_64", + "extension": ".pl", + "size": 47931, + "date": "2017-02-16", + "sha1": "91e4510bd1b7738c6d27d2044664a29cb2e51fbc", + "md5": "a97f67baedf2a12487a8f0580049d71d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 43, + "matched_rule": { + "identifier": "bsd-new_152.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012, Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 46, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/s390x-gf2m.pl", + "type": "file", + "name": "s390x-gf2m.pl", + "base_name": "s390x-gf2m", + "extension": ".pl", + "size": 5463, + "date": "2017-02-16", + "sha1": "4646f1d02736eed0296daf033675fd2d0620b8e9", + "md5": "d78f07aa105510c5b065e323309e2fa8", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/s390x-mont.pl", + "type": "file", + "name": "s390x-mont.pl", + "base_name": "s390x-mont", + "extension": ".pl", + "size": 7000, + "date": "2017-02-16", + "sha1": "f7b866551e4237021da876a06479c48e71068da4", + "md5": "9755af1305fd21bad6552250494bac15", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/s390x.S", + "type": "file", + "name": "s390x.S", + "base_name": "s390x", + "extension": ".S", + "size": 13351, + "date": "2017-02-16", + "sha1": "5e67ea7c493b30c39abdc4ecd359ab4f50456fd1", + "md5": "261776f103d2142f9198697934f0b8e0", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/sparct4-mont.pl", + "type": "file", + "name": "sparct4-mont.pl", + "base_name": "sparct4-mont", + "extension": ".pl", + "size": 27929, + "date": "2017-02-16", + "sha1": "76eb2abd632d639ed8726e5fa4da1f349b97a0bd", + "md5": "b9d8d3c6f06ed226417311c15ebc0226", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 54.88, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 54.88, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 54.88, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller and Andy Polyakov " + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/sparcv8.S", + "type": "file", + "name": "sparcv8.S", + "base_name": "sparcv8", + "extension": ".S", + "size": 28335, + "date": "2017-02-16", + "sha1": "73008b2b0ed2f269b5f8adb5d76caf63e228bd0d", + "md5": "28e74ed83f1aafd82fef608aa253877c", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 8, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov " + ], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 6, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/sparcv8plus.S", + "type": "file", + "name": "sparcv8plus.S", + "base_name": "sparcv8plus", + "extension": ".S", + "size": 33288, + "date": "2017-02-16", + "sha1": "015f39a3b81f7db1b365225a7fef1089954c14e7", + "md5": "a58123879057107658529edd9aae744e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 8, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov " + ], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 6, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/sparcv9-gf2m.pl", + "type": "file", + "name": "sparcv9-gf2m.pl", + "base_name": "sparcv9-gf2m", + "extension": ".pl", + "size": 4818, + "date": "2017-02-16", + "sha1": "ab9cc3b1eaa6980dac7b29e1059161e8a86bd6ca", + "md5": "b79e61dc54c18b2303133fb745732231", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/sparcv9-mont.pl", + "type": "file", + "name": "sparcv9-mont.pl", + "base_name": "sparcv9-mont", + "extension": ".pl", + "size": 13980, + "date": "2017-02-16", + "sha1": "1e92cc913b6e434b900b749a72f53c0f0fb5f5ac", + "md5": "3dd479379f2e033622b1605524ce21fb", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/sparcv9a-mont.pl", + "type": "file", + "name": "sparcv9a-mont.pl", + "base_name": "sparcv9a-mont", + "extension": ".pl", + "size": 20965, + "date": "2017-02-16", + "sha1": "5ffa0fa20e108ea3685bbdee00dc4e0f91770daf", + "md5": "46fae0d06289faf47db5694a39206ba9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/via-mont.pl", + "type": "file", + "name": "via-mont.pl", + "base_name": "via-mont", + "extension": ".pl", + "size": 9367, + "date": "2017-02-16", + "sha1": "d17a9aa3972225e12580054d552b5d607e18029f", + "md5": "0cdb7724ba48da12e5aee7986fb5b301", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/vis3-mont.pl", + "type": "file", + "name": "vis3-mont.pl", + "base_name": "vis3-mont", + "extension": ".pl", + "size": 9279, + "date": "2017-02-16", + "sha1": "0181506d12d812dfcbab53fb178af0f15a0a5ba7", + "md5": "6dca2620f0340eeed6176e2be10f85a6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/x86-gf2m.pl", + "type": "file", + "name": "x86-gf2m.pl", + "base_name": "x86-gf2m", + "extension": ".pl", + "size": 8100, + "date": "2017-02-16", + "sha1": "623f892e7c656c6f15d0fa3a5a019ece8f594a3b", + "md5": "6a3db558215427313dadf4a5ccb97724", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/x86-mont.pl", + "type": "file", + "name": "x86-mont.pl", + "base_name": "x86-mont", + "extension": ".pl", + "size": 17648, + "date": "2017-02-16", + "sha1": "e203972a57fdffed3e58045a9cbbada0552ffbf1", + "md5": "82cacfe99ed146f32775065ea6770d97", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/x86.pl", + "type": "file", + "name": "x86.pl", + "base_name": "x86", + "extension": ".pl", + "size": 996, + "date": "2017-02-16", + "sha1": "fe16a6c5b781fea763d868bcf787949dd6bccee5", + "md5": "dbfbf2fc5fcb5e6e770b80b8ffee6e2d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/x86_64-gcc.c", + "type": "file", + "name": "x86_64-gcc.c", + "base_name": "x86_64-gcc", + "extension": ".c", + "size": 19083, + "date": "2017-02-16", + "sha1": "458fd0c2462eb2a4f97ad4fed4f7a163cfa85765", + "md5": "a48cee8487d3e57c6f70d3a73ae04716", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 21, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 21, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 21, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 21, + "end_line": 21, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/x86_64-gf2m.pl", + "type": "file", + "name": "x86_64-gf2m.pl", + "base_name": "x86_64-gf2m", + "extension": ".pl", + "size": 8917, + "date": "2017-02-16", + "sha1": "0db43f14adc1376e2c02a28ea63a07391a2e4106", + "md5": "4d52aff55f4081960f2e6c709ad340f9", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/x86_64-mont.pl", + "type": "file", + "name": "x86_64-mont.pl", + "base_name": "x86_64-mont", + "extension": ".pl", + "size": 31828, + "date": "2017-02-16", + "sha1": "0eb0ffd297b7b815cfe22c5e81d6c0d298562947", + "md5": "993506cab23d94da9f172d4b59865ca4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/bn/asm/x86_64-mont5.pl", + "type": "file", + "name": "x86_64-mont5.pl", + "base_name": "x86_64-mont5", + "extension": ".pl", + "size": 85359, + "date": "2017-02-16", + "sha1": "1f208c01aa7487f2382a7c2443f146e988b35efb", + "md5": "084554c3045ca4f31abf414703bdea8f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/buffer", + "type": "directory", + "name": "buffer", + "base_name": "buffer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 5340, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/buffer/buf_err.c", + "type": "file", + "name": "buf_err.c", + "base_name": "buf_err", + "extension": ".c", + "size": 1152, + "date": "2017-02-16", + "sha1": "40e423d2c9a6ee7e209fc0c0994ac2c9cbf3bd21", + "md5": "820728f2f09b826981bc83c932261deb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/buffer/buffer.c", + "type": "file", + "name": "buffer.c", + "base_name": "buffer", + "extension": ".c", + "size": 4124, + "date": "2017-02-16", + "sha1": "a7667ef9fef0125f734f46f1cce096d8486793f2", + "md5": "8b456247f683ffbdd35136516e8abfbc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/buffer/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 64, + "date": "2017-02-16", + "sha1": "54bde9e994b97dde16fce62313ad9199bc9614d5", + "md5": "0f1eaeb41744fbb3c6ae35ec24a714a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia", + "type": "directory", + "name": "camellia", + "base_name": "camellia", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 1, + "size_count": 118849, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 480, + "date": "2017-02-16", + "sha1": "949f0c9a72d95eefc9a7cb2eda351995a2570069", + "md5": "f99d88717a3321031ab49b12c950fc71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/camellia.c", + "type": "file", + "name": "camellia.c", + "base_name": "camellia", + "extension": ".c", + "size": 27311, + "date": "2017-02-16", + "sha1": "0e3bc2a5793f0f274b3534be4dcde5093f152c3b", + "md5": "10e9b29752efb651314bb88dbe42385f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation)" + ], + "holders": [ + "NTT (Nippon Telegraph and Telephone Corporation)" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/cmll_cbc.c", + "type": "file", + "name": "cmll_cbc.c", + "base_name": "cmll_cbc", + "extension": ".c", + "size": 849, + "date": "2017-02-16", + "sha1": "b510b5db4beeadb5732a5bca510f27fa44258537", + "md5": "2784b6b6acd418bfee3860133b2d141d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/cmll_cfb.c", + "type": "file", + "name": "cmll_cfb.c", + "base_name": "cmll_cfb", + "extension": ".c", + "size": 1675, + "date": "2017-02-16", + "sha1": "6dc268aade18d9567a058e41bd0b788d78f22cb5", + "md5": "6caf305f780f129fcc691463322e7cce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/cmll_ctr.c", + "type": "file", + "name": "cmll_ctr.c", + "base_name": "cmll_ctr", + "extension": ".c", + "size": 863, + "date": "2017-02-16", + "sha1": "a4053c26f5198103e428fcf31fc3d6d4feef0991", + "md5": "db6b7192eee5f567aa3993f8e8b1f7f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/cmll_ecb.c", + "type": "file", + "name": "cmll_ecb.c", + "base_name": "cmll_ecb", + "extension": ".c", + "size": 651, + "date": "2017-02-16", + "sha1": "7eba6da268270adf39d199dd7349108644254416", + "md5": "16be8b4a64824a7bc57ecdf42e81a13b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/cmll_locl.h", + "type": "file", + "name": "cmll_locl.h", + "base_name": "cmll_locl", + "extension": ".h", + "size": 1850, + "date": "2017-02-16", + "sha1": "dc3da24312fce5ece228db2677b070db9ca832d9", + "md5": "d7e89a362d23a84b8ec3d17e4d2f6cea", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation)" + ], + "holders": [ + "NTT (Nippon Telegraph and Telephone Corporation)" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/cmll_misc.c", + "type": "file", + "name": "cmll_misc.c", + "base_name": "cmll_misc", + "extension": ".c", + "size": 1122, + "date": "2017-02-16", + "sha1": "4823f718de4aa618cb335d916808f50e1b815608", + "md5": "0c1f1d643a7f81fcb300458e4504564e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/cmll_ofb.c", + "type": "file", + "name": "cmll_ofb.c", + "base_name": "cmll_ofb", + "extension": ".c", + "size": 906, + "date": "2017-02-16", + "sha1": "e227381071f921ab700ff772810deb7939d0acf9", + "md5": "b12f9dd2d4403426c2ed37d873ef97b8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 83142, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/asm/cmll-x86.pl", + "type": "file", + "name": "cmll-x86.pl", + "base_name": "cmll-x86", + "extension": ".pl", + "size": 33413, + "date": "2017-02-16", + "sha1": "262abb8e49c054997d18a2aed019149579c856f8", + "md5": "dff1a051cee0db21873c488d21ab0bb6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "gpl-2.0", + "score": 30.0, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 13, + "end_line": 14, + "matched_rule": { + "identifier": "gpl-2.0_39.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0" + ] + } + }, + { + "key": "lgpl-2.1", + "score": 40.0, + "short_name": "LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", + "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1", + "spdx_license_key": "LGPL-2.1", + "spdx_url": "https://spdx.org/licenses/LGPL-2.1", + "start_line": 14, + "end_line": 15, + "matched_rule": { + "identifier": "lgpl-2.1_36.RULE", + "license_choice": false, + "licenses": [ + "lgpl-2.1" + ] + } + }, + { + "key": "mpl-1.1", + "score": 30.0, + "short_name": "MPL 1.1", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/MPL-1.1.html", + "text_url": "http://www.mozilla.com/MPL/1.1/index.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mpl-1.1", + "spdx_license_key": "MPL-1.1", + "spdx_url": "https://spdx.org/licenses/MPL-1.1", + "start_line": 15, + "end_line": 16, + "matched_rule": { + "identifier": "mpl-1.1_16.RULE", + "license_choice": false, + "licenses": [ + "mpl-1.1" + ] + } + }, + { + "key": "bsd-new", + "score": 15.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "bsd-new_145.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2008 Andy Polyakov " + ], + "holders": [ + "Andy Polyakov" + ], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/asm/cmll-x86_64.pl", + "type": "file", + "name": "cmll-x86_64.pl", + "base_name": "cmll-x86_64", + "extension": ".pl", + "size": 26014, + "date": "2017-02-16", + "sha1": "c3f742e43dfbebddb524f5225a7f7b7635f94536", + "md5": "d0e752dcc45dfb4557af4eeb0e84ca4b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "gpl-2.0", + "score": 30.0, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 13, + "end_line": 14, + "matched_rule": { + "identifier": "gpl-2.0_39.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0" + ] + } + }, + { + "key": "lgpl-2.1", + "score": 40.0, + "short_name": "LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", + "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1", + "spdx_license_key": "LGPL-2.1", + "spdx_url": "https://spdx.org/licenses/LGPL-2.1", + "start_line": 14, + "end_line": 15, + "matched_rule": { + "identifier": "lgpl-2.1_36.RULE", + "license_choice": false, + "licenses": [ + "lgpl-2.1" + ] + } + }, + { + "key": "mpl-1.1", + "score": 30.0, + "short_name": "MPL 1.1", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/MPL-1.1.html", + "text_url": "http://www.mozilla.com/MPL/1.1/index.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mpl-1.1", + "spdx_license_key": "MPL-1.1", + "spdx_url": "https://spdx.org/licenses/MPL-1.1", + "start_line": 15, + "end_line": 16, + "matched_rule": { + "identifier": "mpl-1.1_16.RULE", + "license_choice": false, + "licenses": [ + "mpl-1.1" + ] + } + }, + { + "key": "bsd-new", + "score": 15.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "bsd-new_145.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2008 Andy Polyakov " + ], + "holders": [ + "Andy Polyakov" + ], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/camellia/asm/cmllt4-sparcv9.pl", + "type": "file", + "name": "cmllt4-sparcv9.pl", + "base_name": "cmllt4-sparcv9", + "extension": ".pl", + "size": 23715, + "date": "2017-02-16", + "sha1": "3a9e3d7292db6b0ee77f40fc432732aba2ec6b96", + "md5": "e0cd2d3794d15c7b4540fd63fda02af5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 54.88, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 54.88, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 54.88, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller and Andy Polyakov " + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast", + "type": "directory", + "name": "cast", + "base_name": "cast", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 1, + "size_count": 53143, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 271, + "date": "2017-02-16", + "sha1": "fdf2e2570fb39d0cb7dd6a0516e0cf14df398548", + "md5": "b2c782ebdf8dda21303c1b12abc259e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/c_cfb64.c", + "type": "file", + "name": "c_cfb64.c", + "base_name": "c_cfb64", + "extension": ".c", + "size": 2088, + "date": "2017-02-16", + "sha1": "79a8f929a72217de264109e3f218c6b02667052e", + "md5": "468ffd9511c12cbc68c4266b9ac84ec5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/c_ecb.c", + "type": "file", + "name": "c_ecb.c", + "base_name": "c_ecb", + "extension": ".c", + "size": 786, + "date": "2017-02-16", + "sha1": "5b230dc8bfe885881ef47322413a1a8f9eb23291", + "md5": "37f416265fcd710117e7a40928c741b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/c_enc.c", + "type": "file", + "name": "c_enc.c", + "base_name": "c_enc", + "extension": ".c", + "size": 4095, + "date": "2017-02-16", + "sha1": "05339d54026b15959dcdf47ddc2908d9e02a9030", + "md5": "3ac6b94cf7af9820ed8e1661709f8b23", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/c_ofb64.c", + "type": "file", + "name": "c_ofb64.c", + "base_name": "c_ofb64", + "extension": ".c", + "size": 1586, + "date": "2017-02-16", + "sha1": "2cb81078bebe6bd61a4a486a8b1b3858828c465d", + "md5": "a9dba63ce71972deb97e5f718336abbb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/c_skey.c", + "type": "file", + "name": "c_skey.c", + "base_name": "c_skey", + "extension": ".c", + "size": 4453, + "date": "2017-02-16", + "sha1": "4a3801aceaef21bd700428cda2cc55f5996ef947", + "md5": "f955a374f2a1c1643d09dd678c1553ff", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/cast_lcl.h", + "type": "file", + "name": "cast_lcl.h", + "base_name": "cast_lcl", + "extension": ".h", + "size": 7335, + "date": "2017-02-16", + "sha1": "7e5d35beaf9708dc2ad496def6809287c1659c23", + "md5": "c105ad0fa1235b0741374675292327e3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/cast_s.h", + "type": "file", + "name": "cast_s.h", + "base_name": "cast_s", + "extension": ".h", + "size": 27421, + "date": "2017-02-16", + "sha1": "9e8ad5d342a4c7745cedbc544e9393ee9a6b015e", + "md5": "cfd52bdc72601cc504ca38f188cc27e7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 5108, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cast/asm/cast-586.pl", + "type": "file", + "name": "cast-586.pl", + "base_name": "cast-586", + "extension": ".pl", + "size": 5108, + "date": "2017-02-16", + "sha1": "5104b919f71282fc1cc0f6f765ba218dad3ec2f6", + "md5": "099d4d188d52d97760edba2ac59aa7da", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha", + "type": "directory", + "name": "chacha", + "base_name": "chacha", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 1, + "size_count": 206534, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 670, + "date": "2017-02-16", + "sha1": "f5d911f96a2e12a7ca976c9cedd7127ef130ac06", + "md5": "2ce0b42f4cf5a7ecf10683a0b9d7a86b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/chacha_enc.c", + "type": "file", + "name": "chacha_enc.c", + "base_name": "chacha_enc", + "extension": ".c", + "size": 3702, + "date": "2017-02-16", + "sha1": "e638a9a64ecedb252b2a9d6ebc06adfd4b880b2e", + "md5": "39fa8aabb028db04445910c7909803b8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 202162, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/asm/chacha-armv4.pl", + "type": "file", + "name": "chacha-armv4.pl", + "base_name": "chacha-armv4", + "extension": ".pl", + "size": 27559, + "date": "2017-02-16", + "sha1": "1f5b64784bb713c75b629de0cac35740459c635a", + "md5": "fe8280017e318be43e1b398a5e421e2d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/asm/chacha-armv8.pl", + "type": "file", + "name": "chacha-armv8.pl", + "base_name": "chacha-armv8", + "extension": ".pl", + "size": 26836, + "date": "2017-02-16", + "sha1": "6f8f06ae693f80b355ff2e4ca0e5a1b088817b05", + "md5": "df20c1529c594301c21086b61bdab693", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/asm/chacha-c64xplus.pl", + "type": "file", + "name": "chacha-c64xplus.pl", + "base_name": "chacha-c64xplus", + "extension": ".pl", + "size": 25899, + "date": "2017-02-16", + "sha1": "d628dc21e77fdd1e66415a8b24ca973e0a54447e", + "md5": "af90968a64c510f04e3d0ad8b5e3c6f0", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/asm/chacha-ppc.pl", + "type": "file", + "name": "chacha-ppc.pl", + "base_name": "chacha-ppc", + "extension": ".pl", + "size": 23253, + "date": "2017-02-16", + "sha1": "c915316b38ae836a84c56caebb901205c9953720", + "md5": "ac32d0e2bf0b98550d6b27a2b2fc31f3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/asm/chacha-s390x.pl", + "type": "file", + "name": "chacha-s390x.pl", + "base_name": "chacha-s390x", + "extension": ".pl", + "size": 8014, + "date": "2017-02-16", + "sha1": "2d01626028507ab40dc4792c989108060c39d44d", + "md5": "ef55aa0816f57dc40c2b21cc94197543", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/asm/chacha-x86.pl", + "type": "file", + "name": "chacha-x86.pl", + "base_name": "chacha-x86", + "extension": ".pl", + "size": 33790, + "date": "2017-02-16", + "sha1": "64b894be14c60a5674aa4a5a571012b2d4ca8961", + "md5": "2226c31a19052877a8091d3a1e280d2e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/chacha/asm/chacha-x86_64.pl", + "type": "file", + "name": "chacha-x86_64.pl", + "base_name": "chacha-x86_64", + "extension": ".pl", + "size": 56811, + "date": "2017-02-16", + "sha1": "52a1411e1490aa22ca38514f20c30946ac5f75c0", + "md5": "a64472a35ebe2a0a9a620328f6ccd538", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cmac", + "type": "directory", + "name": "cmac", + "base_name": "cmac", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 11320, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cmac/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 74, + "date": "2017-02-16", + "sha1": "78cc9652682636a6c53f9f884b81e342109fb5d6", + "md5": "ca06eec3439222870bf39f8f8be36a01", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cmac/cm_ameth.c", + "type": "file", + "name": "cm_ameth.c", + "base_name": "cm_ameth", + "extension": ".c", + "size": 1038, + "date": "2017-02-16", + "sha1": "478805ba6838abd6a6e75abaeb72d8e158d5cb7d", + "md5": "aba312ba5250f0bf2649903e0b74a422", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cmac/cm_pmeth.c", + "type": "file", + "name": "cm_pmeth.c", + "base_name": "cm_pmeth", + "extension": ".c", + "size": 3649, + "date": "2017-02-16", + "sha1": "3efaee70738eaebfffc58e718e4194d1ce7a93b2", + "md5": "e8f95e050a6d4578da705c3d2dc48f26", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cmac/cmac.c", + "type": "file", + "name": "cmac.c", + "base_name": "cmac", + "extension": ".c", + "size": 6559, + "date": "2017-02-16", + "sha1": "f0ecb354f08c868178de5c3dfaa2565b41f12428", + "md5": "883118e698ef5697f5d4c9648f6b8948", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms", + "type": "directory", + "name": "cms", + "base_name": "cms", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 0, + "size_count": 185810, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 217, + "date": "2017-02-16", + "sha1": "34dcdbdb662b534362e2d9a150b5158e174b4120", + "md5": "6646335865ada8fc8778a60c313381e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_asn1.c", + "type": "file", + "name": "cms_asn1.c", + "base_name": "cms_asn1", + "extension": ".c", + "size": 17683, + "date": "2017-02-16", + "sha1": "7ad89941caf33fb95a0545be3d23d8202e7cee39", + "md5": "0ab60b381e538488bbf4834805db57cf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_att.c", + "type": "file", + "name": "cms_att.c", + "base_name": "cms_att", + "extension": ".c", + "size": 4506, + "date": "2017-02-16", + "sha1": "03a3166add336c70c3c003fb64ef41d48139abce", + "md5": "a613a43e60990c47312d5f24b4cddb33", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_cd.c", + "type": "file", + "name": "cms_cd.c", + "base_name": "cms_cd", + "extension": ".c", + "size": 2263, + "date": "2017-02-16", + "sha1": "31db8b334574fbbff5330a99337aed151a939b71", + "md5": "75dd8fb31b43671bf06758f97b39f4e5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_dd.c", + "type": "file", + "name": "cms_dd.c", + "base_name": "cms_dd", + "extension": ".c", + "size": 2391, + "date": "2017-02-16", + "sha1": "9356ba3ae0e6b5530861db0554af57fb3461abd9", + "md5": "7fa6b94275b237fafc40cbadd6ffce3b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_enc.c", + "type": "file", + "name": "cms_enc.c", + "base_name": "cms_enc", + "extension": ".c", + "size": 6365, + "date": "2017-02-16", + "sha1": "ac8ffe088a5be6306cea49bc0b0a8e774b881e12", + "md5": "ce865ea97b88708ff867950e8e78b5f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_env.c", + "type": "file", + "name": "cms_env.c", + "base_name": "cms_env", + "extension": ".c", + "size": 23576, + "date": "2017-02-16", + "sha1": "40506749662219362cec4a95f4781c436e4589d2", + "md5": "0aa9d5999bb2867c944b6940b8151b77", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_err.c", + "type": "file", + "name": "cms_err.c", + "base_name": "cms_err", + "extension": ".c", + "size": 12834, + "date": "2017-02-16", + "sha1": "19aac1ca82b5b65fa1823a83d7bb40264227953b", + "md5": "fdca2fdd34390ad69fc61bf60a62519c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_ess.c", + "type": "file", + "name": "cms_ess.c", + "base_name": "cms_ess", + "extension": ".c", + "size": 9586, + "date": "2017-02-16", + "sha1": "b572e10fbc5b5f1999c9ed6033ae954597704554", + "md5": "613e480fbed6dc6cd139ce97bfe6edca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_io.c", + "type": "file", + "name": "cms_io.c", + "base_name": "cms_io", + "extension": ".c", + "size": 2782, + "date": "2017-02-16", + "sha1": "3b797e2b6270bfabd255afa10f28821120c5f868", + "md5": "4887a05a32c04c9ddcd43f73915ed62a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_kari.c", + "type": "file", + "name": "cms_kari.c", + "base_name": "cms_kari", + "extension": ".c", + "size": 12612, + "date": "2017-02-16", + "sha1": "5dc73eccb4e64e63a4ada5f65a879708b1d3d5eb", + "md5": "cd7ba017f5f908e70da2115c23e66751", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_lcl.h", + "type": "file", + "name": "cms_lcl.h", + "base_name": "cms_lcl", + "extension": ".h", + "size": 13721, + "date": "2017-02-16", + "sha1": "7584a7e20412ddb7394865ef46f41308473b8e8e", + "md5": "6a3817c4ef1ce9e4d338a71b4f5e227c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_lib.c", + "type": "file", + "name": "cms_lib.c", + "base_name": "cms_lib", + "extension": ".c", + "size": 15821, + "date": "2017-02-16", + "sha1": "157d41d96f53623b927591f8336043def46b2f0d", + "md5": "ab961d30e4b25b4019835ddf78622456", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_pwri.c", + "type": "file", + "name": "cms_pwri.c", + "base_name": "cms_pwri", + "extension": ".c", + "size": 11537, + "date": "2017-02-16", + "sha1": "c7b9fd87d28e98d10003a9e9ee3dbb22cbeefaa0", + "md5": "27c7b8b0b4320c2978d6da29d43aa9ee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_sd.c", + "type": "file", + "name": "cms_sd.c", + "base_name": "cms_sd", + "extension": ".c", + "size": 26750, + "date": "2017-02-16", + "sha1": "cc7583989752a9d254a220cfa805562587b9acc4", + "md5": "00f246fd70c04c64f1bc59709acbcc43", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/cms/cms_smime.c", + "type": "file", + "name": "cms_smime.c", + "base_name": "cms_smime", + "extension": ".c", + "size": 23166, + "date": "2017-02-16", + "sha1": "61bcc764126ca95c892c35fd2149bbd79c38b32f", + "md5": "fbb9cde122a7eb37209f5888c3b85819", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/comp", + "type": "directory", + "name": "comp", + "base_name": "comp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 21714, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/comp/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 97, + "date": "2017-02-16", + "sha1": "8007359b709a91efb54a90f8b1f7b110e5b94254", + "md5": "9090290d29626017501ed93781866969", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/comp/c_zlib.c", + "type": "file", + "name": "c_zlib.c", + "base_name": "c_zlib", + "extension": ".c", + "size": 17114, + "date": "2017-02-16", + "sha1": "a1e97b368b1884f83a7adadd0bd575e82470741d", + "md5": "5600af551051829dd3145937b22cdbaa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/comp/comp_err.c", + "type": "file", + "name": "comp_err.c", + "base_name": "comp_err", + "extension": ".c", + "size": 1415, + "date": "2017-02-16", + "sha1": "7eb2416bc044e5154b471ca79cddf0bf04e32a1f", + "md5": "022c5abecb9c6b15f887ff462f251504", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/comp/comp_lcl.h", + "type": "file", + "name": "comp_lcl.h", + "base_name": "comp_lcl", + "extension": ".h", + "size": 1074, + "date": "2017-02-16", + "sha1": "25e9b205f73d788f6ebe4b3613314129e697d35e", + "md5": "64f6f337abce3eafc3fc48f2266d1a1b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/comp/comp_lib.c", + "type": "file", + "name": "comp_lib.c", + "base_name": "comp_lib", + "extension": ".c", + "size": 2014, + "date": "2017-02-16", + "sha1": "6643e7e5ad746509a7f76f22eb50794ccd2d1a8c", + "md5": "5d81240dc037cc74a9976573648b97bf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf", + "type": "directory", + "name": "conf", + "base_name": "conf", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 61904, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 144, + "date": "2017-02-16", + "sha1": "88e9310accca7f7febf266150bdac6894a892647", + "md5": "a0874812bc86d331143981994d76c6cf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/conf_api.c", + "type": "file", + "name": "conf_api.c", + "base_name": "conf_api", + "extension": ".c", + "size": 5481, + "date": "2017-02-16", + "sha1": "dfebde7e4b1ec1baefb12f34d28924ee2f63e77f", + "md5": "17fc95af74f77afa58740beeaff826cb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/conf_def.c", + "type": "file", + "name": "conf_def.c", + "base_name": "conf_def", + "extension": ".c", + "size": 16300, + "date": "2017-02-16", + "sha1": "3fb1455929ec50e4595cee7a4b7aafe8dcfd6426", + "md5": "96d0e5a00c98edccdc991147868ce588", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/conf_def.h", + "type": "file", + "name": "conf_def.h", + "base_name": "conf_def", + "extension": ".h", + "size": 7538, + "date": "2017-02-16", + "sha1": "249e26de725931dd62e591488a76f436464abb94", + "md5": "818643173d68bc97a0c9bd33d053fde4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/conf_err.c", + "type": "file", + "name": "conf_err.c", + "base_name": "conf_err", + "extension": ".c", + "size": 3060, + "date": "2017-02-16", + "sha1": "99bd9148d20749c2e657eeb63e655d3ef7f604f1", + "md5": "405ad13dfc6d97a4cf06e53c9c08698a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/conf_lib.c", + "type": "file", + "name": "conf_lib.c", + "base_name": "conf_lib", + "extension": ".c", + "size": 8386, + "date": "2017-02-16", + "sha1": "1960cb17b6712e10b4136bf2421bfa1a7425308c", + "md5": "2f869148a38450313f6d48829e23d095", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/conf_mall.c", + "type": "file", + "name": "conf_mall.c", + "base_name": "conf_mall", + "extension": ".c", + "size": 784, + "date": "2017-02-16", + "sha1": "d84eb7983efefb69d2f1798698b16853fb490688", + "md5": "049c3134af55e166d05b9a32df5d64c8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/conf_mod.c", + "type": "file", + "name": "conf_mod.c", + "base_name": "conf_mod", + "extension": ".c", + "size": 13645, + "date": "2017-02-16", + "sha1": "a5bf9399153d7c0f1810d0217c4e34f30fc48368", + "md5": "ebaeba951facfc0a0ba0f625e89980b2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/conf_sap.c", + "type": "file", + "name": "conf_sap.c", + "base_name": "conf_sap", + "extension": ".c", + "size": 1630, + "date": "2017-02-16", + "sha1": "818df60b35653575ba1edb119bbe7a5534147665", + "md5": "3fe35ca8d2b3be6ec3eff4d02b34dd5f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/conf/keysets.pl", + "type": "file", + "name": "keysets.pl", + "base_name": "keysets", + "extension": ".pl", + "size": 4936, + "date": "2017-02-16", + "sha1": "5465132247be0f679ff0816b4e08cdd8b872afac", + "md5": "10db201638c60f9ac36985ebf4370b38", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct", + "type": "directory", + "name": "ct", + "base_name": "ct", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 63018, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 173, + "date": "2017-02-16", + "sha1": "133c14b06f809f490791f7ec3afd8b0beac66fd9", + "md5": "e5a316c3661470d91f92a43ca7a6c27d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_b64.c", + "type": "file", + "name": "ct_b64.c", + "base_name": "ct_b64", + "extension": ".c", + "size": 4197, + "date": "2017-02-16", + "sha1": "a0afda0fcff2e245ac92b5b15767b45ef9c1476d", + "md5": "5ef7b038d625e30d5d8097a17e8bca3d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_err.c", + "type": "file", + "name": "ct_err.c", + "base_name": "ct_err", + "extension": ".c", + "size": 3734, + "date": "2017-02-16", + "sha1": "31f40f13d38f68568d3dbfc63de61668002fb35a", + "md5": "28f0151c1129a62846786ef990890d85", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_locl.h", + "type": "file", + "name": "ct_locl.h", + "base_name": "ct_locl", + "extension": ".h", + "size": 7893, + "date": "2017-02-16", + "sha1": "b4fd3611558b92dd6c46f3ef5f4eea4b2b085c97", + "md5": "fa2119b4eca84f82d4b7a80b112e3315", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_log.c", + "type": "file", + "name": "ct_log.c", + "base_name": "ct_log", + "extension": ".c", + "size": 7386, + "date": "2017-02-16", + "sha1": "60b1aac0f350d5595a35155bda12de970cbe17ed", + "md5": "95b73da2e3a17bdfa09af16f00e93134", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_oct.c", + "type": "file", + "name": "ct_oct.c", + "base_name": "ct_oct", + "extension": ".c", + "size": 9778, + "date": "2017-02-16", + "sha1": "c3b2b6d667323d8b70f5423f651f79352b30032b", + "md5": "9e68bb1450ea97b80b89f97bb11f3ce9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_policy.c", + "type": "file", + "name": "ct_policy.c", + "base_name": "ct_policy", + "extension": ".c", + "size": 2461, + "date": "2017-02-16", + "sha1": "113d568feb9111e17033b883f151d6be755d0177", + "md5": "3c65d6869d64dfaf48a700768258677a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_prn.c", + "type": "file", + "name": "ct_prn.c", + "base_name": "ct_prn", + "extension": ".c", + "size": 3938, + "date": "2017-02-16", + "sha1": "660ec0d192e54509c3644c2b0856ed317fc2025d", + "md5": "a52fe1d0a911a124aef5cf3d9f5afb9b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_sct.c", + "type": "file", + "name": "ct_sct.c", + "base_name": "ct_sct", + "extension": ".c", + "size": 10793, + "date": "2017-02-16", + "sha1": "05be7c29b6d3b10d841006f5f661ccb1116c5859", + "md5": "924c4eda350e2643b5e56a1998e17121", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_sct_ctx.c", + "type": "file", + "name": "ct_sct_ctx.c", + "base_name": "ct_sct_ctx", + "extension": ".c", + "size": 7054, + "date": "2017-02-16", + "sha1": "d457d6d812f5219b98ac3f30364cc6d7c884f97c", + "md5": "62bd65b9c27dc490342fdaa8c34cf261", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_vfy.c", + "type": "file", + "name": "ct_vfy.c", + "base_name": "ct_vfy", + "extension": ".c", + "size": 3892, + "date": "2017-02-16", + "sha1": "4db77ff9efc6cdfb571e771a9927a9baef8aae01", + "md5": "4caa7f3c4ff56d54f57c8dfb16538540", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ct/ct_x509v3.c", + "type": "file", + "name": "ct_x509v3.c", + "base_name": "ct_x509v3", + "extension": ".c", + "size": 1719, + "date": "2017-02-16", + "sha1": "06236af776e46c75ce31c80ff986dd7137cf6997", + "md5": "c79b22ec7859940f6b8259604d66e176", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des", + "type": "directory", + "name": "des", + "base_name": "des", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 30, + "dirs_count": 1, + "size_count": 171134, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 732, + "date": "2017-02-16", + "sha1": "0cf3ffda47b8775b1d727aae6010206bb47857aa", + "md5": "1e981ee961b117c7b73f0fe59b3478b2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/cbc_cksm.c", + "type": "file", + "name": "cbc_cksm.c", + "base_name": "cbc_cksm", + "extension": ".c", + "size": 1642, + "date": "2017-02-16", + "sha1": "b425d1e5aa4a96adab4ebbdd5e921199ab1c09fc", + "md5": "e6d89569c5e2cbfbfc82ca6b42082402", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/cbc_enc.c", + "type": "file", + "name": "cbc_enc.c", + "base_name": "cbc_enc", + "extension": ".c", + "size": 423, + "date": "2017-02-16", + "sha1": "71896dd1b7879c409d39b55b1e5e355d1fb1abf8", + "md5": "89789285c2b9596b20476894c166689f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/cfb64ede.c", + "type": "file", + "name": "cfb64ede.c", + "base_name": "cfb64ede", + "extension": ".c", + "size": 5532, + "date": "2017-02-16", + "sha1": "c08e3e9bce03a4483f586a870e2772305716d93d", + "md5": "cfc7fc280111f73c9d22f0f94ad810d9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/cfb64enc.c", + "type": "file", + "name": "cfb64enc.c", + "base_name": "cfb64enc", + "extension": ".c", + "size": 2092, + "date": "2017-02-16", + "sha1": "e8cbf8c15ab9468d6ab7c11e4aa459db3bb41ca5", + "md5": "c5bd5bbd0e269c303e01ecc003f09ecc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/cfb_enc.c", + "type": "file", + "name": "cfb_enc.c", + "base_name": "cfb_enc", + "extension": ".c", + "size": 4468, + "date": "2017-02-16", + "sha1": "2921e5953c632e60816e4eb8f5b432b137eff3a3", + "md5": "ed36617e6e63e68946ff4f3e72171522", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/des_enc.c", + "type": "file", + "name": "des_enc.c", + "base_name": "des_enc", + "extension": ".c", + "size": 8783, + "date": "2017-02-16", + "sha1": "8d5b096f4c71b8e5f50ecc76da86a81f3ef61707", + "md5": "9c8fc09004f92213e40354738f3a6e9f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/des_locl.h", + "type": "file", + "name": "des_locl.h", + "base_name": "des_locl", + "extension": ".h", + "size": 8254, + "date": "2017-02-16", + "sha1": "64d5bb659f9b59ddafbde76254892643c8aaf6fd", + "md5": "eebb5e57041c59da5b14ff8f332af4fc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/ecb3_enc.c", + "type": "file", + "name": "ecb3_enc.c", + "base_name": "ecb3_enc", + "extension": ".c", + "size": 923, + "date": "2017-02-16", + "sha1": "aeaf4c5af43d4108e57ff428745641fd0d6141d6", + "md5": "fab2a9202d0939b0fd3a36c0a6a9875c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/ecb_enc.c", + "type": "file", + "name": "ecb_enc.c", + "base_name": "ecb_enc", + "extension": ".c", + "size": 1188, + "date": "2017-02-16", + "sha1": "2c44a00ec90e025e0dc5443f78db4d6ac6c79006", + "md5": "d5a33d0ee14538a1c41d75d4fc9506e3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/fcrypt.c", + "type": "file", + "name": "fcrypt.c", + "base_name": "fcrypt", + "extension": ".c", + "size": 4129, + "date": "2017-02-16", + "sha1": "51d497017cf77ad9519c0ce847dc1f6282320f69", + "md5": "dfaee307ee3293050a59e934387cd4ab", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Bjorn Gronvall " + ], + "start_line": 25, + "end_line": 26 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/fcrypt_b.c", + "type": "file", + "name": "fcrypt_b.c", + "base_name": "fcrypt_b", + "extension": ".c", + "size": 1977, + "date": "2017-02-16", + "sha1": "3238d5780357979e6792181de8c4a00cec1e304a", + "md5": "637f0608b9651f15d7bf47368fb3895e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/ncbc_enc.c", + "type": "file", + "name": "ncbc_enc.c", + "base_name": "ncbc_enc", + "extension": ".c", + "size": 3022, + "date": "2017-02-16", + "sha1": "422a911e3a4049a8ff135991c9519a9f50f360bb", + "md5": "2e73ac1bb0f28f8276bd74699d11c571", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/ofb64ede.c", + "type": "file", + "name": "ofb64ede.c", + "base_name": "ofb64ede", + "extension": ".c", + "size": 1664, + "date": "2017-02-16", + "sha1": "14d641da240bacd0dc9db5bbb41005166bf56b5a", + "md5": "c25e586788369063ebabaf7200520cff", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/ofb64enc.c", + "type": "file", + "name": "ofb64enc.c", + "base_name": "ofb64enc", + "extension": ".c", + "size": 1573, + "date": "2017-02-16", + "sha1": "4a331056bc6e2eb15327795e2b0f1eb6f36e4ad0", + "md5": "1db6309b76745bca78419ccf7e0b0635", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/ofb_enc.c", + "type": "file", + "name": "ofb_enc.c", + "base_name": "ofb_enc", + "extension": ".c", + "size": 2447, + "date": "2017-02-16", + "sha1": "a360e52df7f87d0751e65dff9b7f064092f8f402", + "md5": "185918c2a928693c049a7dc9244a13b7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/pcbc_enc.c", + "type": "file", + "name": "pcbc_enc.c", + "base_name": "pcbc_enc", + "extension": ".c", + "size": 1996, + "date": "2017-02-16", + "sha1": "d2a8c712ae71d850d7e11cc5aef678477d7e43fe", + "md5": "294124818f5ce99e96c05fae083018ba", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/qud_cksm.c", + "type": "file", + "name": "qud_cksm.c", + "base_name": "qud_cksm", + "extension": ".c", + "size": 2445, + "date": "2017-02-16", + "sha1": "9264a12ab2776d03460e43bea4e6b63a9d4cfde4", + "md5": "d60ddcf09ccfefd8f662dc11db353977", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/rand_key.c", + "type": "file", + "name": "rand_key.c", + "base_name": "rand_key", + "extension": ".c", + "size": 611, + "date": "2017-02-16", + "sha1": "dc5577dadb8bdbf2c93c78e03977dc5896bb07af", + "md5": "ebca1b20b83525b4c635f32bcf80d31a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/rpc_des.h", + "type": "file", + "name": "rpc_des.h", + "base_name": "rpc_des", + "extension": ".h", + "size": 2769, + "date": "2017-02-16", + "sha1": "21ff29694fcc87d425aa5a2268c46a0c7f067b75", + "md5": "7d003045b036662331730725911045da", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "sun-rpc", + "score": 100.0, + "short_name": "Sun RPC License", + "category": "Permissive", + "owner": "Oracle (Sun)", + "homepage_url": "http://www.opensource.apple.com/license/sunrpc/", + "text_url": "http://www.opensource.apple.com/license/sunrpc/", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:sun-rpc", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 12, + "end_line": 37, + "matched_rule": { + "identifier": "sun-rpc.LICENSE", + "license_choice": false, + "licenses": [ + "sun-rpc" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 1986 by Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 41, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/rpc_enc.c", + "type": "file", + "name": "rpc_enc.c", + "base_name": "rpc_enc", + "extension": ".c", + "size": 979, + "date": "2017-02-16", + "sha1": "4b04a79055d2926d80cbba949cce10e9526f5dc9", + "md5": "15c0ba1ee53ea3ca3d1f751969ca4c2d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/set_key.c", + "type": "file", + "name": "set_key.c", + "base_name": "set_key", + "extension": ".c", + "size": 15556, + "date": "2017-02-16", + "sha1": "f46b5f33c40e5c8ca083a2e717e06dff63368bca", + "md5": "8924d0937a55265e2e4469f4f1a4d476", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/spr.h", + "type": "file", + "name": "spr.h", + "base_name": "spr", + "extension": ".h", + "size": 8357, + "date": "2017-02-16", + "sha1": "03dcc3b1113733fc28dc1336f63fc1deeadfdd26", + "md5": "5f2514c495e32dd67f4cccd7f6ecafaf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/str2key.c", + "type": "file", + "name": "str2key.c", + "base_name": "str2key", + "extension": ".c", + "size": 2954, + "date": "2017-02-16", + "sha1": "3c3d52ac477916952b623221b11bb481dd13dd7c", + "md5": "ee2279c91b60d3e86f3ebd19a10f3f3b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/xcbc_enc.c", + "type": "file", + "name": "xcbc_enc.c", + "base_name": "xcbc_enc", + "extension": ".c", + "size": 3006, + "date": "2017-02-16", + "sha1": "57c03eb23d23e44275227fd623c56600342e5573", + "md5": "a8c25cf9f4cea636141fdd82a73fbdb4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 83612, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/asm/crypt586.pl", + "type": "file", + "name": "crypt586.pl", + "base_name": "crypt586", + "extension": ".pl", + "size": 4633, + "date": "2017-02-16", + "sha1": "280ba9e4be531882ca75cd906da1a309e36952fe", + "md5": "d8040f21fa13108c3091b785f4493e60", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/asm/des-586.pl", + "type": "file", + "name": "des-586.pl", + "base_name": "des-586", + "extension": ".pl", + "size": 14925, + "date": "2017-02-16", + "sha1": "036cad40581751a6ff9a305113210478bff46475", + "md5": "6657e4e150a90eb90ccea8bfddc795fc", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/asm/des_enc.m4", + "type": "file", + "name": "des_enc.m4", + "base_name": "des_enc", + "extension": ".m4", + "size": 46725, + "date": "2017-02-16", + "sha1": "2f70dee7bb9cba1b9e8ec4b758df4849e49168bd", + "md5": "3ea8a8eec8addbc6b0f33a51b2fb13a6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/asm/desboth.pl", + "type": "file", + "name": "desboth.pl", + "base_name": "desboth", + "extension": ".pl", + "size": 1695, + "date": "2017-02-16", + "sha1": "06c023bd2cbf0f8da21ec3a7784d471f1466bfdf", + "md5": "8ed0a4586abdd770e05507f8ffdde92a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/des/asm/dest4-sparcv9.pl", + "type": "file", + "name": "dest4-sparcv9.pl", + "base_name": "dest4-sparcv9", + "extension": ".pl", + "size": 15634, + "date": "2017-02-16", + "sha1": "2045e3470f296d55529f880cf561a96e581adaa4", + "md5": "65d191aed2ea65dfa6f44527f48528d3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 54.88, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 54.88, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 54.88, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller and Andy Polyakov " + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh", + "type": "directory", + "name": "dh", + "base_name": "dh", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 20, + "dirs_count": 0, + "size_count": 75289, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 195, + "date": "2017-02-16", + "sha1": "6c262a217359337f781a53877846bb3371e44f7b", + "md5": "c32bfb61feda35b08490635e76028c13", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh1024.pem", + "type": "file", + "name": "dh1024.pem", + "base_name": "dh1024", + "extension": ".pem", + "size": 245, + "date": "2017-02-16", + "sha1": "da4ca87ebe296b9a3da0ce36416425cb28b4ec1c", + "md5": "b0096a85178a06119c05867670572313", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh192.pem", + "type": "file", + "name": "dh192.pem", + "base_name": "dh192", + "extension": ".pem", + "size": 103, + "date": "2017-02-16", + "sha1": "27f1581407a9ba4c0f209226c7cfb8d46e8cd717", + "md5": "e373b4cac0facb8b1f5f2955a2c92693", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh2048.pem", + "type": "file", + "name": "dh2048.pem", + "base_name": "dh2048", + "extension": ".pem", + "size": 848, + "date": "2017-02-16", + "sha1": "70de2a72fd6288024189d43c0797c2fbbd4dfc6d", + "md5": "8a7193ec85c2baecccf862f109ddce6f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh4096.pem", + "type": "file", + "name": "dh4096.pem", + "base_name": "dh4096", + "extension": ".pem", + "size": 770, + "date": "2017-02-16", + "sha1": "770c50e94578ac0e2b97c7d77796d28c23013f1c", + "md5": "85b04fff1538d2eb247db6841c95f935", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh512.pem", + "type": "file", + "name": "dh512.pem", + "base_name": "dh512", + "extension": ".pem", + "size": 156, + "date": "2017-02-16", + "sha1": "08a827918953f1c173a6b923113e40acf48257f5", + "md5": "4567f6709f7a315c2dbbc28dc797f62a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_ameth.c", + "type": "file", + "name": "dh_ameth.c", + "base_name": "dh_ameth", + "extension": ".c", + "size": 22140, + "date": "2017-02-16", + "sha1": "b6eef1b02742be51ec705af8fa42feebb057c00e", + "md5": "d18fdc4859b3f020557b03db99c3f01e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_asn1.c", + "type": "file", + "name": "dh_asn1.c", + "base_name": "dh_asn1", + "extension": ".c", + "size": 3694, + "date": "2017-02-16", + "sha1": "da44f28d29aad17ca9764aaaa980ceee4a99ffdb", + "md5": "c91e9a00899d78b73b48357bde6be41d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_check.c", + "type": "file", + "name": "dh_check.c", + "base_name": "dh_check", + "extension": ".c", + "size": 4597, + "date": "2017-02-16", + "sha1": "730a24bd0822e91d3c33a9052269036d82ef467f", + "md5": "4d600154b927b260c9eeac498e47374e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_depr.c", + "type": "file", + "name": "dh_depr.c", + "base_name": "dh_depr", + "extension": ".c", + "size": 1178, + "date": "2017-02-16", + "sha1": "3f72890c600a97c489d7ef2de6cb931226c0f186", + "md5": "570a83b76fc96cb360746e3523defba7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_err.c", + "type": "file", + "name": "dh_err.c", + "base_name": "dh_err", + "extension": ".c", + "size": 2812, + "date": "2017-02-16", + "sha1": "cb9f774720e51e87bbd9f180de00ebd8ff397c59", + "md5": "5a317e8fc5a9abc036aae8a06636511f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_gen.c", + "type": "file", + "name": "dh_gen.c", + "base_name": "dh_gen", + "extension": ".c", + "size": 3915, + "date": "2017-02-16", + "sha1": "3ed3a4b5df0e66d3a5852e722f993572f12b52a3", + "md5": "17f8bbb9089362d56e16610dd7b950e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_kdf.c", + "type": "file", + "name": "dh_kdf.c", + "base_name": "dh_kdf", + "extension": ".c", + "size": 4331, + "date": "2017-02-16", + "sha1": "124efd88350255131cd472ec6c1aa0591857ecd0", + "md5": "06bb739206b3dfd52106e65b5c65da14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_key.c", + "type": "file", + "name": "dh_key.c", + "base_name": "dh_key", + "extension": ".c", + "size": 5257, + "date": "2017-02-16", + "sha1": "f7136f88c46d6a67624e9fef86453d0e2037a756", + "md5": "a6e096dd42aef3bd9c6639cdcbd786ca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_lib.c", + "type": "file", + "name": "dh_lib.c", + "base_name": "dh_lib", + "extension": ".c", + "size": 5884, + "date": "2017-02-16", + "sha1": "c785d0299dba31ce752a926fe6ff7df317964a98", + "md5": "340d82bd5a1a64ea0ba78cd7d065fe82", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_locl.h", + "type": "file", + "name": "dh_locl.h", + "base_name": "dh_locl", + "extension": ".h", + "size": 1634, + "date": "2017-02-16", + "sha1": "da71417a785c935cb80c5e82ad560cfc7b85b22c", + "md5": "cdc8735e8cf4d926631ee9dcf7c81b53", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_meth.c", + "type": "file", + "name": "dh_meth.c", + "base_name": "dh_meth", + "extension": ".c", + "size": 3617, + "date": "2017-02-16", + "sha1": "cb3308d96f6f388671bcd48475935a6cfab6893d", + "md5": "3406d11972ecc97082fc903d1682d8ce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_pmeth.c", + "type": "file", + "name": "dh_pmeth.c", + "base_name": "dh_pmeth", + "extension": ".c", + "size": 12020, + "date": "2017-02-16", + "sha1": "b7adced9029ff8580e84ca52cd9f698f4805a386", + "md5": "21a9d89390e066f4f35766ed57dc7140", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_prn.c", + "type": "file", + "name": "dh_prn.c", + "base_name": "dh_prn", + "extension": ".c", + "size": 771, + "date": "2017-02-16", + "sha1": "ed0cf6080236b0f2856c6989440cd68496109efb", + "md5": "9a6459ba7f89db4830eb256c52789b77", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dh/dh_rfc5114.c", + "type": "file", + "name": "dh_rfc5114.c", + "base_name": "dh_rfc5114", + "extension": ".c", + "size": 1122, + "date": "2017-02-16", + "sha1": "acf71ac54bbea59bad00c9b34c42ab77f074d2a3", + "md5": "6af97ea36accb72e5448d179e0c32398", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa", + "type": "directory", + "name": "dsa", + "base_name": "dsa", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 15, + "dirs_count": 0, + "size_count": 76246, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 214, + "date": "2017-02-16", + "sha1": "e807066ce5b2e244ea92cbfaa03f560a18c7b37f", + "md5": "27a621fb0039fdc2b38472d3c4cabc59", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_ameth.c", + "type": "file", + "name": "dsa_ameth.c", + "base_name": "dsa_ameth", + "extension": ".c", + "size": 13830, + "date": "2017-02-16", + "sha1": "66b25d70ab1ee1d76781b0c94413863c619b9c8e", + "md5": "81446ff9f74ed49fad1de1cc95d48346", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_asn1.c", + "type": "file", + "name": "dsa_asn1.c", + "base_name": "dsa_asn1", + "extension": ".c", + "size": 4160, + "date": "2017-02-16", + "sha1": "f87bca9f4362cfab59bdf75a9b648c1f7eac63fa", + "md5": "0327baedcff19cc4a58ace204232ebac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_depr.c", + "type": "file", + "name": "dsa_depr.c", + "base_name": "dsa_depr", + "extension": ".c", + "size": 1651, + "date": "2017-02-16", + "sha1": "3442e6c77df1a1d5692a2e769ce4d50d0730b8b5", + "md5": "b1be2f0eb795c690b8c092f725219650", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_err.c", + "type": "file", + "name": "dsa_err.c", + "base_name": "dsa_err", + "extension": ".c", + "size": 2995, + "date": "2017-02-16", + "sha1": "6da7847cb7cca3bec9237886ba1f79f720c1ecdc", + "md5": "ed962eecb185a04f31b01d34358faf2f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_gen.c", + "type": "file", + "name": "dsa_gen.c", + "base_name": "dsa_gen", + "extension": ".c", + "size": 16564, + "date": "2017-02-16", + "sha1": "0ad381ef95bd426ac5da35b377e4db2959ddc082", + "md5": "6327b07ce70c23f9884c6acc073b9fdc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_key.c", + "type": "file", + "name": "dsa_key.c", + "base_name": "dsa_key", + "extension": ".c", + "size": 1822, + "date": "2017-02-16", + "sha1": "6496dde9862e978864b0c96f58c7ac20f65dd78f", + "md5": "729c07d5d2623065c9ae16f9e8f852da", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_lib.c", + "type": "file", + "name": "dsa_lib.c", + "base_name": "dsa_lib", + "extension": ".c", + "size": 7870, + "date": "2017-02-16", + "sha1": "1e303f93dd15e955449ee1858ec443438757b4a5", + "md5": "cfe9236c33a5c2f77c2850e524a6ae84", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_locl.h", + "type": "file", + "name": "dsa_locl.h", + "base_name": "dsa_locl", + "extension": ".h", + "size": 2884, + "date": "2017-02-16", + "sha1": "6c6cd4a7746f3c57e8509316198e7bf5342a1c32", + "md5": "12841b27a35bac02427e09fc7ace5998", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_meth.c", + "type": "file", + "name": "dsa_meth.c", + "base_name": "dsa_meth", + "extension": ".c", + "size": 5152, + "date": "2017-02-16", + "sha1": "d8a68669db7e50742dc89b87bee315c85fd54fc3", + "md5": "77d02f1ab56a2dba38078bb8f30fe223", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 11, + "end_line": 13, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_ossl.c", + "type": "file", + "name": "dsa_ossl.c", + "base_name": "dsa_ossl", + "extension": ".c", + "size": 9030, + "date": "2017-02-16", + "sha1": "6c14d009add6e035731f80e53217ac4c4f1884d6", + "md5": "d7b8eda06314e42816f7d7dfea8ffe91", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_pmeth.c", + "type": "file", + "name": "dsa_pmeth.c", + "base_name": "dsa_pmeth", + "extension": ".c", + "size": 7073, + "date": "2017-02-16", + "sha1": "11a2b74b3541bcf6a58b419b94dec11cc24809d3", + "md5": "a8d2eb11bb069b5f43a23b5907403e09", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_prn.c", + "type": "file", + "name": "dsa_prn.c", + "base_name": "dsa_prn", + "extension": ".c", + "size": 1626, + "date": "2017-02-16", + "sha1": "40dc111a508dda3ba7ebbcea1f3faf978fe1191e", + "md5": "dc4842316b95e16e8d0dc896f59f22e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_sign.c", + "type": "file", + "name": "dsa_sign.c", + "base_name": "dsa_sign", + "extension": ".c", + "size": 748, + "date": "2017-02-16", + "sha1": "4e56262bcc7d72151eb1d4b458373da0aa84cc95", + "md5": "1abe03762dfb2b88b02d37ffee4de305", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dsa/dsa_vrf.c", + "type": "file", + "name": "dsa_vrf.c", + "base_name": "dsa_vrf", + "extension": ".c", + "size": 627, + "date": "2017-02-16", + "sha1": "7a85d8fa75d8e0489b38a7c002b16e4d41cc5b28", + "md5": "7cbda96778b89fe594f10ef4f3d441fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso", + "type": "directory", + "name": "dso", + "base_name": "dso", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 0, + "size_count": 68444, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 142, + "date": "2017-02-16", + "sha1": "ab4fe924365881d653c114fa2287b0496a2fd2e3", + "md5": "10b8908e3f32b819ef5941bd2fe860dc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/dso_dl.c", + "type": "file", + "name": "dso_dl.c", + "base_name": "dso_dl", + "extension": ".c", + "size": 8335, + "date": "2017-02-16", + "sha1": "84fdd5c6208db2f1e4a1be73f293d598e42cd88a", + "md5": "edbefd1a676d966b0f787a6dfb4b8e4f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/dso_dlfcn.c", + "type": "file", + "name": "dso_dlfcn.c", + "base_name": "dso_dlfcn", + "extension": ".c", + "size": 10173, + "date": "2017-02-16", + "sha1": "a779db0a631e45eb047c4f12c2035d88db68765d", + "md5": "aad4589f5081de409b34a2c8eb560c4b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/dso_err.c", + "type": "file", + "name": "dso_err.c", + "base_name": "dso_err", + "extension": ".c", + "size": 3958, + "date": "2017-02-16", + "sha1": "fda42d27407e1846402b4fbe17296c1936c98f82", + "md5": "49163ba0635e32833fa3f588436a4330", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/dso_lib.c", + "type": "file", + "name": "dso_lib.c", + "base_name": "dso_lib", + "extension": ".c", + "size": 9502, + "date": "2017-02-16", + "sha1": "f9d47e43337c6842a9154dc0221ec098760bb24a", + "md5": "c5a558a363182f16e62cfcfa9d1e88f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/dso_locl.h", + "type": "file", + "name": "dso_locl.h", + "base_name": "dso_locl", + "extension": ".h", + "size": 4108, + "date": "2017-02-16", + "sha1": "e325cf958f06cb2c3707901b3166ac8e8ca8dab3", + "md5": "6c0209f52fd34bdf3c37caee3302d1ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/dso_openssl.c", + "type": "file", + "name": "dso_openssl.c", + "base_name": "dso_openssl", + "extension": ".c", + "size": 617, + "date": "2017-02-16", + "sha1": "bfe29379048b6236994d193e09a963a7aab4e2f3", + "md5": "cd88118106d0b4b1f4b676116845d3d9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/dso_vms.c", + "type": "file", + "name": "dso_vms.c", + "base_name": "dso_vms", + "extension": ".c", + "size": 14554, + "date": "2017-02-16", + "sha1": "3b807b837b48412fe950afb2787064110b2285aa", + "md5": "ba10dde083cc2aebe0f0b854390b38c3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/dso/dso_win32.c", + "type": "file", + "name": "dso_win32.c", + "base_name": "dso_win32", + "extension": ".c", + "size": 17055, + "date": "2017-02-16", + "sha1": "c3dd426b440cdc3c1ad497c78fd10fb02190a296", + "md5": "3f8cf61066a0ea7d619445c8ea3372f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec", + "type": "directory", + "name": "ec", + "base_name": "ec", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 42, + "dirs_count": 1, + "size_count": 1866943, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 1250, + "date": "2017-02-16", + "sha1": "844c873c5fcd3645df70acf2b3ba243e1b38124c", + "md5": "1a9e64b42cb555a0d228f09c687961a0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/curve25519.c", + "type": "file", + "name": "curve25519.c", + "base_name": "curve25519", + "extension": ".c", + "size": 141706, + "date": "2017-02-16", + "sha1": "df940d851f6258cbb0e824aa60c87c16c27c2bf5", + "md5": "f860fbf70b09c1d1686992f9745ab57e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec2_mult.c", + "type": "file", + "name": "ec2_mult.c", + "base_name": "ec2_mult", + "extension": ".c", + "size": 11852, + "date": "2017-02-16", + "sha1": "15edbbc63e52362e1ae094ca228ca5fea4758920", + "md5": "95ea4a8036359d0e1b307b4b4a8e6d0c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec2_oct.c", + "type": "file", + "name": "ec2_oct.c", + "base_name": "ec2_oct", + "extension": ".c", + "size": 10262, + "date": "2017-02-16", + "sha1": "b636a36aea57bef30b05cd41bfea5fdd8a3c471c", + "md5": "8f8357e7d577708f04550d324483aefe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec2_smpl.c", + "type": "file", + "name": "ec2_smpl.c", + "base_name": "ec2_smpl", + "extension": ".c", + "size": 19977, + "date": "2017-02-16", + "sha1": "cb28d7d992357bb1e0543ab0c721c01b50ac4163", + "md5": "64b560c744e5b842fc541cabca12227a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_ameth.c", + "type": "file", + "name": "ec_ameth.c", + "base_name": "ec_ameth", + "extension": ".c", + "size": 23772, + "date": "2017-02-16", + "sha1": "2b5d0039db246fb40b053dce862553e6e330e981", + "md5": "fdbf5a55d4785da762fb6745cb3ae4bf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_asn1.c", + "type": "file", + "name": "ec_asn1.c", + "base_name": "ec_asn1", + "extension": ".c", + "size": 36453, + "date": "2017-02-16", + "sha1": "6f559ca755cdfc0b3c2bb8e75bf180a3a07d16be", + "md5": "960861eea31962aabda6405ea6be7363", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_check.c", + "type": "file", + "name": "ec_check.c", + "base_name": "ec_check", + "extension": ".c", + "size": 1937, + "date": "2017-02-16", + "sha1": "be9a9fefaae4fb52fab78732b53b0f92b33fb1e7", + "md5": "2baeed94f47775a219f180993151e04c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_curve.c", + "type": "file", + "name": "ec_curve.c", + "base_name": "ec_curve", + "extension": ".c", + "size": 136350, + "date": "2017-02-16", + "sha1": "ac960858565a230bbd1eaaa4906c31eb7c791051", + "md5": "769e221542e61e85a6158fe8bc29f25c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Annie Yousar " + ], + "start_line": 2220, + "end_line": 2222 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_cvt.c", + "type": "file", + "name": "ec_cvt.c", + "base_name": "ec_cvt", + "extension": ".c", + "size": 3179, + "date": "2017-02-16", + "sha1": "954945377f828b3c26cd1bfca3eebea2d1163d0d", + "md5": "f5fb439a929c1ea10f173ed276b9e257", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_err.c", + "type": "file", + "name": "ec_err.c", + "base_name": "ec_err", + "extension": ".c", + "size": 15563, + "date": "2017-02-16", + "sha1": "bf48e872d7815427cc914ab1c73d57e4c580ffa4", + "md5": "44f53bc986aa25d5ca2d2dbca1bed703", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_key.c", + "type": "file", + "name": "ec_key.c", + "base_name": "ec_key", + "extension": ".c", + "size": 17110, + "date": "2017-02-16", + "sha1": "8c4ca51f13459d6e2d617fc32fc694dc9fc530f4", + "md5": "fc64fe4999162ef9ab8acc50a42beb20", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_kmeth.c", + "type": "file", + "name": "ec_kmeth.c", + "base_name": "ec_kmeth", + "extension": ".c", + "size": 10569, + "date": "2017-02-16", + "sha1": "47017453d7e6b0c23195443f3efa9fd5f6d3cf57", + "md5": "ce9e43faced769115f3cdec3b774147d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_lcl.h", + "type": "file", + "name": "ec_lcl.h", + "base_name": "ec_lcl", + "extension": ".h", + "size": 29817, + "date": "2017-02-16", + "sha1": "9f0b5389b666c44a4cc687aa59958a4356f84256", + "md5": "0d474a4c3926217df2c3d10edccfaa0c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_lib.c", + "type": "file", + "name": "ec_lib.c", + "base_name": "ec_lib", + "extension": ".c", + "size": 27774, + "date": "2017-02-16", + "sha1": "2a92e56ffefeb31e04871f8cee774ae8cacdf7be", + "md5": "4b52542dd1441cebab2c68318e84d7c9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_mult.c", + "type": "file", + "name": "ec_mult.c", + "base_name": "ec_mult", + "extension": ".c", + "size": 21168, + "date": "2017-02-16", + "sha1": "9365e96faadb20624a31883b5f98705feb217f1d", + "md5": "85dadafd872cc3db389102b81166b03f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_oct.c", + "type": "file", + "name": "ec_oct.c", + "base_name": "ec_oct", + "extension": ".c", + "size": 5968, + "date": "2017-02-16", + "sha1": "9e7fc5c1a4eab065ac0300076c01f5a0a0e2f354", + "md5": "758cb8c219b5d8cca433151de835adbb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_pmeth.c", + "type": "file", + "name": "ec_pmeth.c", + "base_name": "ec_pmeth", + "extension": ".c", + "size": 12113, + "date": "2017-02-16", + "sha1": "90005879606eb2e67f92daecd43781ca8c7d71bd", + "md5": "572b4420d8b5b03bbaf16ac2bc675173", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ec_print.c", + "type": "file", + "name": "ec_print.c", + "base_name": "ec_print", + "extension": ".c", + "size": 2832, + "date": "2017-02-16", + "sha1": "32a5e4079eff4835145e52d0f82bbfb36bf76f83", + "md5": "5c49cb4460a0c2db6646122ef589706a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecdh_kdf.c", + "type": "file", + "name": "ecdh_kdf.c", + "base_name": "ecdh_kdf", + "extension": ".c", + "size": 2029, + "date": "2017-02-16", + "sha1": "da8bdef3563382e439fd6fe70deead1a4035d274", + "md5": "f1de0fc9898cb1af22d10849818f6647", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecdh_ossl.c", + "type": "file", + "name": "ecdh_ossl.c", + "base_name": "ecdh_ossl", + "extension": ".c", + "size": 4054, + "date": "2017-02-16", + "sha1": "25bdd5bd4709e5ea4729e6747882e2be2dcd5946", + "md5": "ef7e759f549ac753280fdbadddb2dcc4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecdsa_ossl.c", + "type": "file", + "name": "ecdsa_ossl.c", + "base_name": "ecdsa_ossl", + "extension": ".c", + "size": 14062, + "date": "2017-02-16", + "sha1": "2916fd6d145e6c7d85c124747bcbaa01ea2938b9", + "md5": "38a9ce972ef6723428f99933ea9c2677", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecdsa_sign.c", + "type": "file", + "name": "ecdsa_sign.c", + "base_name": "ecdsa_sign", + "extension": ".c", + "size": 1809, + "date": "2017-02-16", + "sha1": "82f94b65a3a673f9d5c4475b82c5b557f059ba92", + "md5": "e53103cb721bf5d9c26bc31af363974e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecdsa_vrf.c", + "type": "file", + "name": "ecdsa_vrf.c", + "base_name": "ecdsa_vrf", + "extension": ".c", + "size": 1279, + "date": "2017-02-16", + "sha1": "aeab859289f777b2180adf1c7a8d8b0a98faf35c", + "md5": "8e72b834489618e64342b96f177719dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/eck_prn.c", + "type": "file", + "name": "eck_prn.c", + "base_name": "eck_prn", + "extension": ".c", + "size": 7957, + "date": "2017-02-16", + "sha1": "f67974e392e0fff6d99768fa5314ed014a40d9b8", + "md5": "449c417280a293e20d799eff1e626f08", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_mont.c", + "type": "file", + "name": "ecp_mont.c", + "base_name": "ecp_mont", + "extension": ".c", + "size": 6727, + "date": "2017-02-16", + "sha1": "7ac0b4fb0620069397b5a7e99785149d6ab075d5", + "md5": "94ebc99d217f26fd77fb9c3f81b11495", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_nist.c", + "type": "file", + "name": "ecp_nist.c", + "base_name": "ecp_nist", + "extension": ".c", + "size": 4860, + "date": "2017-02-16", + "sha1": "fa0112e8511e5aa6a3ea0f8db31171f40ed0eedb", + "md5": "e8002c2a7a42169f2bc55dcc560a295d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_nistp224.c", + "type": "file", + "name": "ecp_nistp224.c", + "base_name": "ecp_nistp224", + "extension": ".c", + "size": 60179, + "date": "2017-02-16", + "sha1": "d7548e0a3ea6e8ea9d2f9b2eb507b31c7f3ecab1", + "md5": "cd3c737389c3581c70b2f72e54409494", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 23, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 29, + "end_line": 29, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 30, + "end_line": 30, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2011 Google Inc." + ], + "holders": [ + "Google Inc." + ], + "authors": [], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_nistp256.c", + "type": "file", + "name": "ecp_nistp256.c", + "base_name": "ecp_nistp256", + "extension": ".c", + "size": 74960, + "date": "2017-02-16", + "sha1": "6f0ff97f2fb8e8d87ebd628f8a38989473c2cf21", + "md5": "6d221d4f6391fa1fcbb3c3c78cfd8857", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 23, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2011 Google Inc." + ], + "holders": [ + "Google Inc." + ], + "authors": [], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_nistp521.c", + "type": "file", + "name": "ecp_nistp521.c", + "base_name": "ecp_nistp521", + "extension": ".c", + "size": 71866, + "date": "2017-02-16", + "sha1": "16c789eb22fcd84e39d7d31c89a804431d87c3f1", + "md5": "d0b97efcb01971ab4e99f3e5ea7f49c5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 23, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2011 Google Inc." + ], + "holders": [ + "Google Inc." + ], + "authors": [], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_nistputil.c", + "type": "file", + "name": "ecp_nistputil.c", + "base_name": "ecp_nistputil", + "extension": ".c", + "size": 10022, + "date": "2017-02-16", + "sha1": "c3c015d4bbea466ca4499edd57a4db4184afd077", + "md5": "a5d857b2ea7c341d411121d7e450d00f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 23, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2011 Google Inc." + ], + "holders": [ + "Google Inc." + ], + "authors": [], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_nistz256.c", + "type": "file", + "name": "ecp_nistz256.c", + "base_name": "ecp_nistz256", + "extension": ".c", + "size": 53858, + "date": "2017-02-16", + "sha1": "32c7d4dc83fa67316d0cb89da966110e0e00f4b1", + "md5": "d096d311986ccc648b18a610fd9cc7fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 24, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2014 Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 28, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_nistz256_table.c", + "type": "file", + "name": "ecp_nistz256_table.c", + "base_name": "ecp_nistz256_table", + "extension": ".c", + "size": 617448, + "date": "2017-02-16", + "sha1": "ebfce55249bc24ba0e9bcea7fcd502f13a52ae3f", + "md5": "5a298d7c9b9916e3f6edec1d82d5adb0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_oct.c", + "type": "file", + "name": "ecp_oct.c", + "base_name": "ecp_oct", + "extension": ".c", + "size": 10622, + "date": "2017-02-16", + "sha1": "fb25378a437e4002a2a9b320a7527864294a4b96", + "md5": "ab71c154fe1b08458610476a5dfaf787", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecp_smpl.c", + "type": "file", + "name": "ecp_smpl.c", + "base_name": "ecp_smpl", + "extension": ".c", + "size": 37282, + "date": "2017-02-16", + "sha1": "2671142589ba17022b7b6bc6a3f39cf0dacb9ad9", + "md5": "b112fc2354fc3fe57c1097ccbb142069", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/ecx_meth.c", + "type": "file", + "name": "ecx_meth.c", + "base_name": "ecx_meth", + "extension": ".c", + "size": 9567, + "date": "2017-02-16", + "sha1": "55c82aaddbe83bea5795297b28075e41522f7c65", + "md5": "da8795919f3b709b413415e596ee092e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 348710, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/asm/ecp_nistz256-armv4.pl", + "type": "file", + "name": "ecp_nistz256-armv4.pl", + "base_name": "ecp_nistz256-armv4", + "extension": ".pl", + "size": 45704, + "date": "2017-02-16", + "sha1": "132eac80c01eb0c0b79dc26909d6cd2aafd17936", + "md5": "f65963d597a634d2b949c1aed5ae35d9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/asm/ecp_nistz256-armv8.pl", + "type": "file", + "name": "ecp_nistz256-armv8.pl", + "base_name": "ecp_nistz256-armv8", + "extension": ".pl", + "size": 38725, + "date": "2017-02-16", + "sha1": "b0f3fb7799e1cb35482106f85278e923dab33207", + "md5": "35810d78a6839257d5fbd661389480d6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/asm/ecp_nistz256-avx2.pl", + "type": "file", + "name": "ecp_nistz256-avx2.pl", + "base_name": "ecp_nistz256-avx2", + "extension": ".pl", + "size": 57858, + "date": "2017-02-16", + "sha1": "d727ac6fc80cc2d5391febf672d6ab68b7a77046", + "md5": "69014a9c201c083fb35724a1ef7ce76b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "apache-2.0", + "score": 100.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 14, + "end_line": 24, + "matched_rule": { + "identifier": "apache-2.0_7.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2014 Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 28, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/asm/ecp_nistz256-sparcv9.pl", + "type": "file", + "name": "ecp_nistz256-sparcv9.pl", + "base_name": "ecp_nistz256-sparcv9", + "extension": ".pl", + "size": 78273, + "date": "2017-02-16", + "sha1": "f3d6278e0cf979f4474287e30150fa42494e7bd6", + "md5": "75c09b0e14087db3fdf2bf1290c6d7fb", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/asm/ecp_nistz256-x86.pl", + "type": "file", + "name": "ecp_nistz256-x86.pl", + "base_name": "ecp_nistz256-x86", + "extension": ".pl", + "size": 57331, + "date": "2017-02-16", + "sha1": "5410becec50c553885c28c7837bee2ea63af8e28", + "md5": "2ca812d918ec21a297ef875e6c08204b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ec/asm/ecp_nistz256-x86_64.pl", + "type": "file", + "name": "ecp_nistz256-x86_64.pl", + "base_name": "ecp_nistz256-x86_64", + "extension": ".pl", + "size": 70819, + "date": "2017-02-16", + "sha1": "194ff4d58af3cbf05368859c2880e86acf257323", + "md5": "6b13a6a7ea2f35d26c6f98d214257bbd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "apache-2.0", + "score": 100.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 14, + "end_line": 24, + "matched_rule": { + "identifier": "apache-2.0_7.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2014 Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 28, + "end_line": 32 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 38, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine", + "type": "directory", + "name": "engine", + "base_name": "engine", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 26, + "dirs_count": 0, + "size_count": 198151, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 359, + "date": "2017-02-16", + "sha1": "b5885f5876fccbb760e2f74b58f0d1f8d4ceeaff", + "md5": "2dbaafc8b9969e6d077bab96f5aece70", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_all.c", + "type": "file", + "name": "eng_all.c", + "base_name": "eng_all", + "extension": ".c", + "size": 958, + "date": "2017-02-16", + "sha1": "4d3036cda8a7cff8268063976139ffe036454d13", + "md5": "90a4e13ee6dc9a025ebc7e332e4a5370", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_cnf.c", + "type": "file", + "name": "eng_cnf.c", + "base_name": "eng_cnf", + "extension": ".c", + "size": 5689, + "date": "2017-02-16", + "sha1": "045cbd9405af9b18dbabbaaaad62ccd6c3d8c7f0", + "md5": "172f8282ed5b4a2026c1b9ee3302cb7e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_cryptodev.c", + "type": "file", + "name": "eng_cryptodev.c", + "base_name": "eng_cryptodev", + "extension": ".c", + "size": 53706, + "date": "2017-02-16", + "sha1": "2339ac1b64333287634acc39dbaeb7b24dc63982", + "md5": "ca9f4f886ae5dc22c17c57496482379f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-simplified", + "score": 100.0, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 16, + "end_line": 34, + "matched_rule": { + "identifier": "bsd-simplified_27.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2002 Bob Beck ", + "Copyright (c) 2002 Theo de Raadt", + "Copyright (c) 2002 Markus Friedl" + ], + "holders": [ + "Bob Beck", + "Theo de Raadt", + "Markus Friedl" + ], + "authors": [], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_ctrl.c", + "type": "file", + "name": "eng_ctrl.c", + "base_name": "eng_ctrl", + "extension": ".c", + "size": 11658, + "date": "2017-02-16", + "sha1": "c9e90aab12644cd1a50ede2cd03b10cbc47a3a8e", + "md5": "7e0c25d9537e2ffb1e8d1f633717e3e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_dyn.c", + "type": "file", + "name": "eng_dyn.c", + "base_name": "eng_dyn", + "extension": ".c", + "size": 17590, + "date": "2017-02-16", + "sha1": "15e5414b62b10778b505ab73a8e1ca2c73bf0e47", + "md5": "a3244d6fa227e144968436c379e331a2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_err.c", + "type": "file", + "name": "eng_err.c", + "base_name": "eng_err", + "extension": ".c", + "size": 5932, + "date": "2017-02-16", + "sha1": "ef7b96c3d29d553959ae7cdafc76e20ffe8c6596", + "md5": "c0e3604c79040baf99472b2a76077404", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_fat.c", + "type": "file", + "name": "eng_fat.c", + "base_name": "eng_fat", + "extension": ".c", + "size": 3887, + "date": "2017-02-16", + "sha1": "ae986d439b882d14e28c91afcc6a0ce9ee9e4f43", + "md5": "0ebb9f2442f541ef97829ddbf16321c9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_init.c", + "type": "file", + "name": "eng_init.c", + "base_name": "eng_init", + "extension": ".c", + "size": 3203, + "date": "2017-02-16", + "sha1": "66b186108129e9e95562046f70af7d408b022373", + "md5": "898d4b988f236bff49b05df9e9200bc0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_int.h", + "type": "file", + "name": "eng_int.h", + "base_name": "eng_int", + "extension": ".h", + "size": 6448, + "date": "2017-02-16", + "sha1": "e3763cb7bf0b765617a4994bea7757055bfe787e", + "md5": "2574e927a7a6b112a8bb3fd2daee00ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_lib.c", + "type": "file", + "name": "eng_lib.c", + "base_name": "eng_lib", + "extension": ".c", + "size": 6756, + "date": "2017-02-16", + "sha1": "1ef3d4dfb9508663022edc70c6f7854a09aec5e7", + "md5": "2e83efb3ff89d6257c9524c77cfc6cb0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_list.c", + "type": "file", + "name": "eng_list.c", + "base_name": "eng_list", + "extension": ".c", + "size": 10621, + "date": "2017-02-16", + "sha1": "e4165fbcb711eb502734a80d57cfa392748ca76f", + "md5": "22770f7abf0f62b9c152839b80c13e36", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_openssl.c", + "type": "file", + "name": "eng_openssl.c", + "base_name": "eng_openssl", + "extension": ".c", + "size": 18544, + "date": "2017-02-16", + "sha1": "7fc4150a5b6d0e79cb9fdb659de899203692bef9", + "md5": "a2e5b62140c143de1d5247548305b221", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_pkey.c", + "type": "file", + "name": "eng_pkey.c", + "base_name": "eng_pkey", + "extension": ".c", + "size": 4303, + "date": "2017-02-16", + "sha1": "bda4366af4528fcd291252ebf3f9906a04f689e8", + "md5": "c9064c7a8af0fdfe1bfe70242b0f7b48", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_rdrand.c", + "type": "file", + "name": "eng_rdrand.c", + "base_name": "eng_rdrand", + "extension": ".c", + "size": 2529, + "date": "2017-02-16", + "sha1": "3eaaf4ee60a5a1d5cc1b173255b1d700042bb182", + "md5": "213394c48a9f37e0ef8c12bd254dec89", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/eng_table.c", + "type": "file", + "name": "eng_table.c", + "base_name": "eng_table", + "extension": ".c", + "size": 8721, + "date": "2017-02-16", + "sha1": "f256cd9b01cb4fa89970e6c6982e9affcddb4f8e", + "md5": "20cc4e5fa3cae807725b2a7caf27f5a1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 13957, + "date": "2017-02-16", + "sha1": "524d881febbb1708a095d5afcc54d732c342929c", + "md5": "b69f80cfda35400226491c87b7f64224", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_asnmth.c", + "type": "file", + "name": "tb_asnmth.c", + "base_name": "tb_asnmth", + "extension": ".c", + "size": 6113, + "date": "2017-02-16", + "sha1": "076c2daa3107dabc620bf8512e5d98b70adf8721", + "md5": "29eb0a898211bd8542402cdc9c9336bb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_cipher.c", + "type": "file", + "name": "tb_cipher.c", + "base_name": "tb_cipher", + "extension": ".c", + "size": 2470, + "date": "2017-02-16", + "sha1": "2cb409f06e47f905ba345f107fa542ef002c7213", + "md5": "d9ed8ba20a55dd0f40deadf027b710f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_dh.c", + "type": "file", + "name": "tb_dh.c", + "base_name": "tb_dh", + "extension": ".c", + "size": 1800, + "date": "2017-02-16", + "sha1": "d7b4f2b3f0e1a081c9246ac9236018f835e33e40", + "md5": "6ae6bef72d61fdde871f8687cdbf3c7d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_digest.c", + "type": "file", + "name": "tb_digest.c", + "base_name": "tb_digest", + "extension": ".c", + "size": 2462, + "date": "2017-02-16", + "sha1": "35307bd82b5ac7837d6660c30edd56bd5f4f2605", + "md5": "6eeb64958d2ac1dd2516dd801dc7407b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_dsa.c", + "type": "file", + "name": "tb_dsa.c", + "base_name": "tb_dsa", + "extension": ".c", + "size": 1827, + "date": "2017-02-16", + "sha1": "d2123654976f18a78c3b78700984585fffad0822", + "md5": "5fc8b42c5f979f95983ec104a2fc964d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_eckey.c", + "type": "file", + "name": "tb_eckey.c", + "base_name": "tb_eckey", + "extension": ".c", + "size": 1832, + "date": "2017-02-16", + "sha1": "dbb74994e21efb685c4d58577626677fe3b66f33", + "md5": "6cf41d92d662465b6a1b31ebf19048bf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_pkmeth.c", + "type": "file", + "name": "tb_pkmeth.c", + "base_name": "tb_pkmeth", + "extension": ".c", + "size": 3105, + "date": "2017-02-16", + "sha1": "1992b3c1fc4897873632c4beec27c9892a5812ee", + "md5": "8c00e655f3fb2c3dbeb327737b210903", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_rand.c", + "type": "file", + "name": "tb_rand.c", + "base_name": "tb_rand", + "extension": ".c", + "size": 1854, + "date": "2017-02-16", + "sha1": "c461753a81905544d956c6766db24c4f5cd92f40", + "md5": "cc700a68211ff8194598652c04cd7e66", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/engine/tb_rsa.c", + "type": "file", + "name": "tb_rsa.c", + "base_name": "tb_rsa", + "extension": ".c", + "size": 1827, + "date": "2017-02-16", + "sha1": "ca1022fb8c7c70757e6a1a06f6dd0277e265a19a", + "md5": "b303f902ab8a252ea72d7c3dbb4bd8dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/err", + "type": "directory", + "name": "err", + "base_name": "err", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 31516, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/err/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 81, + "date": "2017-02-16", + "sha1": "7ef862d9497f2edefde3d44e8bb7fd775bed230d", + "md5": "85b295ffb128405336fccbbf489d2450", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/err/err.c", + "type": "file", + "name": "err.c", + "base_name": "err", + "extension": ".c", + "size": 20910, + "date": "2017-02-16", + "sha1": "a23f8ec0cbb8e34669bd7d9cfb0fdc27890f5db1", + "md5": "ed2b5df6e203059c23a40e662bc3438a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/err/err_all.c", + "type": "file", + "name": "err_all.c", + "base_name": "err_all", + "extension": ".c", + "size": 3033, + "date": "2017-02-16", + "sha1": "633d572091e36223d6f5ac8ceb96f7c83af2f1e0", + "md5": "1a51e0583f120fc5c174ce63d4d407a4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/err/err_prn.c", + "type": "file", + "name": "err_prn.c", + "base_name": "err_prn", + "extension": ".c", + "size": 1810, + "date": "2017-02-16", + "sha1": "617bc7c8e556e08e83560f4f42581297e753a699", + "md5": "4c3b08e79238cb1464c040a1963a558a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/err/openssl.ec", + "type": "file", + "name": "openssl.ec", + "base_name": "openssl", + "extension": ".ec", + "size": 4286, + "date": "2017-02-16", + "sha1": "4e1f4bed4e4f5aeeca056c41eceed75063f3ca31", + "md5": "ac2ca53cd5e3dca0394ae1ac227855ea", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/err/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 1396, + "date": "2017-02-16", + "sha1": "5b03cb20d789e664683cba17ff394f47f3c11ad8", + "md5": "b677e0f7cb67f87045e47a3d923c9e35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp", + "type": "directory", + "name": "evp", + "base_name": "evp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 60, + "dirs_count": 0, + "size_count": 485736, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/bio_b64.c", + "type": "file", + "name": "bio_b64.c", + "base_name": "bio_b64", + "extension": ".c", + "size": 15794, + "date": "2017-02-16", + "sha1": "9785ff2f1e91076bfefd5884dc6810e693f238f9", + "md5": "4f6b9a6a03033449e4dc6f4c3533b7a6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/bio_enc.c", + "type": "file", + "name": "bio_enc.c", + "base_name": "bio_enc", + "extension": ".c", + "size": 11957, + "date": "2017-02-16", + "sha1": "8b6c6e18183f8b67d434cf3dd097a8c595b9732d", + "md5": "1c358cad0c4be555c304f9c9c44e2371", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/bio_md.c", + "type": "file", + "name": "bio_md.c", + "base_name": "bio_md", + "extension": ".c", + "size": 5014, + "date": "2017-02-16", + "sha1": "4d4fdff8d8864afa5a1255e7f5cdf3922e74e2b0", + "md5": "afc8c9a1695a6653309260eb3ebd0364", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/bio_ok.c", + "type": "file", + "name": "bio_ok.c", + "base_name": "bio_ok", + "extension": ".c", + "size": 16102, + "date": "2017-02-16", + "sha1": "66d302bc1c82a93a6d6f93c302972a95d1d5a834", + "md5": "a576d65dddf6d8c5bfc72eaa57bef196", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 954, + "date": "2017-02-16", + "sha1": "3ae1ab14687926ca99502d56449cd61d25a2f46c", + "md5": "bb157574a5a517593db520716cc61cb6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/c_allc.c", + "type": "file", + "name": "c_allc.c", + "base_name": "c_allc", + "extension": ".c", + "size": 7793, + "date": "2017-02-16", + "sha1": "1196d9dc54192439241b906977c30f13bd6f5eb4", + "md5": "b30b0686b9c112ec975d740170beca2c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/c_alld.c", + "type": "file", + "name": "c_alld.c", + "base_name": "c_alld", + "extension": ".c", + "size": 1477, + "date": "2017-02-16", + "sha1": "3c8b4e5e67b40fde872bbac8b2353c1eeb5c9c81", + "md5": "5e174efe918383358891f6949cf81c70", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/cmeth_lib.c", + "type": "file", + "name": "cmeth_lib.c", + "base_name": "cmeth_lib", + "extension": ".c", + "size": 4676, + "date": "2017-02-16", + "sha1": "14fe7fbfa4145542d89a31d56d3c7f098223b152", + "md5": "4fac1da645ff27c76de5b92c8c5e2f0b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/digest.c", + "type": "file", + "name": "digest.c", + "base_name": "digest", + "extension": ".c", + "size": 8035, + "date": "2017-02-16", + "sha1": "1d94f092dffcc9019a32cbb9168a88975204b7ae", + "md5": "d3c402e965070e1ab8267369693b1590", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_aes.c", + "type": "file", + "name": "e_aes.c", + "base_name": "e_aes", + "extension": ".c", + "size": 98295, + "date": "2017-02-16", + "sha1": "49f3e110627c4d26b3bc37d0a9cce94e84a58ee4", + "md5": "2a196202b6f30309fa7de32c94446da3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_aes_cbc_hmac_sha1.c", + "type": "file", + "name": "e_aes_cbc_hmac_sha1.c", + "base_name": "e_aes_cbc_hmac_sha1", + "extension": ".c", + "size": 31440, + "date": "2017-02-16", + "sha1": "cf358c2363c29951b507e924f9cac17fba44ea5c", + "md5": "eddeed521b97eb3b6d4ab1fedb140634", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_aes_cbc_hmac_sha256.c", + "type": "file", + "name": "e_aes_cbc_hmac_sha256.c", + "base_name": "e_aes_cbc_hmac_sha256", + "extension": ".c", + "size": 31098, + "date": "2017-02-16", + "sha1": "6394423d2ee8a586751eb1f0f38a440d275ecf2e", + "md5": "0391ec220843aee164c939e41040a2ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_bf.c", + "type": "file", + "name": "e_bf.c", + "base_name": "e_bf", + "extension": ".c", + "size": 1191, + "date": "2017-02-16", + "sha1": "68f7db2368dbf7786002fddd27d58dd7508334ed", + "md5": "d3faefa400c1b7ccb53fec1218105cf3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_camellia.c", + "type": "file", + "name": "e_camellia.c", + "base_name": "e_camellia", + "extension": ".c", + "size": 13914, + "date": "2017-02-16", + "sha1": "5858e4db7dc80d36b257adf9e4b58d3583792075", + "md5": "55c915ed4a5bf5cabfa3265bab8958a7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_cast.c", + "type": "file", + "name": "e_cast.c", + "base_name": "e_cast", + "extension": ".c", + "size": 1254, + "date": "2017-02-16", + "sha1": "e7a03a141a8047373127f6c76aac7719c01b5e3c", + "md5": "e83c376556b6c8938ed8140e7838f3ca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_chacha20_poly1305.c", + "type": "file", + "name": "e_chacha20_poly1305.c", + "base_name": "e_chacha20_poly1305", + "extension": ".c", + "size": 14821, + "date": "2017-02-16", + "sha1": "2348095c52781173ae3ac5d07c068c2c87b4ac98", + "md5": "af6b7ef897b8709cc817733306534d0f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_des.c", + "type": "file", + "name": "e_des.c", + "base_name": "e_des", + "extension": ".c", + "size": 8324, + "date": "2017-02-16", + "sha1": "f2647b8136b1339c44b7bfa401014657e3d53e4b", + "md5": "33577eee7a3b16dcd660c30a1f03679d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_des3.c", + "type": "file", + "name": "e_des3.c", + "base_name": "e_des3", + "extension": ".c", + "size": 14526, + "date": "2017-02-16", + "sha1": "81f402d017a2bed0329333d577e09e607d2ba53e", + "md5": "4d6db5d64008051ce0ea4bd4fc70afbf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_idea.c", + "type": "file", + "name": "e_idea.c", + "base_name": "e_idea", + "extension": ".c", + "size": 2164, + "date": "2017-02-16", + "sha1": "30a3a82e27eef611baff26c0425ac27670b14b36", + "md5": "133ad1daaa43dbc009216cd0f4c14d3d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_null.c", + "type": "file", + "name": "e_null.c", + "base_name": "e_null", + "extension": ".c", + "size": 1297, + "date": "2017-02-16", + "sha1": "09ea61dc1cc65cf43362a53a4d4c0bc7250a9e2d", + "md5": "9c41ab8459a3ac2b9400daca1fae6d93", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_old.c", + "type": "file", + "name": "e_old.c", + "base_name": "e_old", + "extension": ".c", + "size": 2445, + "date": "2017-02-16", + "sha1": "994bcebec5772626e36c8e0bf973d83608ae39d3", + "md5": "70513d6a7dc930824be74ec938bb9ba1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_rc2.c", + "type": "file", + "name": "e_rc2.c", + "base_name": "e_rc2", + "extension": ".c", + "size": 5059, + "date": "2017-02-16", + "sha1": "f81cb512d2f719dd93b600a1197a7353ccd41297", + "md5": "a14b0d806816d9430562dd58f4c232e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_rc4.c", + "type": "file", + "name": "e_rc4.c", + "base_name": "e_rc4", + "extension": ".c", + "size": 1914, + "date": "2017-02-16", + "sha1": "074d27e447605208b3192d44516cad38ead29c72", + "md5": "e06687948fd57afbfaba265490646500", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_rc4_hmac_md5.c", + "type": "file", + "name": "e_rc4_hmac_md5.c", + "base_name": "e_rc4_hmac_md5", + "extension": ".c", + "size": 7897, + "date": "2017-02-16", + "sha1": "0863e024f6a5c1d102cf1b4d2e44694f14a28254", + "md5": "b0520dd59d91ae61d824fc97270e08b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_rc5.c", + "type": "file", + "name": "e_rc5.c", + "base_name": "e_rc5", + "extension": ".c", + "size": 2128, + "date": "2017-02-16", + "sha1": "1300aea2610578336da2d2d3572693460e5cb094", + "md5": "b4a202246ca9ff7033873d4e48bc7ac1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_seed.c", + "type": "file", + "name": "e_seed.c", + "base_name": "e_seed", + "extension": ".c", + "size": 1166, + "date": "2017-02-16", + "sha1": "c6867b167087a328206cd4e44b41dd23b080c2ff", + "md5": "cdbce367fb7b9c61778ccac186a2e2ce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/e_xcbc_d.c", + "type": "file", + "name": "e_xcbc_d.c", + "base_name": "e_xcbc_d", + "extension": ".c", + "size": 2449, + "date": "2017-02-16", + "sha1": "eb8ebc2346734658d33e749dca3509d43e811051", + "md5": "d6ab54aceabb871c23f0bec1901401a3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/encode.c", + "type": "file", + "name": "encode.c", + "base_name": "encode", + "extension": ".c", + "size": 11073, + "date": "2017-02-16", + "sha1": "164d5ba819165ed0fd4b2eb1ca34b4df3ca94a61", + "md5": "602619711de3a53c0576cf754542492d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/evp_cnf.c", + "type": "file", + "name": "evp_cnf.c", + "base_name": "evp_cnf", + "extension": ".c", + "size": 1956, + "date": "2017-02-16", + "sha1": "81aaf38a6b1670df63e51295ab42a32a3671e819", + "md5": "697c01111177e9db610889e8d43cbcf5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/evp_enc.c", + "type": "file", + "name": "evp_enc.c", + "base_name": "evp_enc", + "extension": ".c", + "size": 18706, + "date": "2017-02-16", + "sha1": "81b890a8a7634136b42809afb474d7a2b7878dd8", + "md5": "de88c6c3f0c2431852d1253fdde57c39", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/evp_err.c", + "type": "file", + "name": "evp_err.c", + "base_name": "evp_err", + "extension": ".c", + "size": 9528, + "date": "2017-02-16", + "sha1": "16796091f60fb866376c82503c94f6b0fb6b184b", + "md5": "632f9aab3502f54dd08b3c91e0ab9bb9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/evp_key.c", + "type": "file", + "name": "evp_key.c", + "base_name": "evp_key", + "extension": ".c", + "size": 4167, + "date": "2017-02-16", + "sha1": "31eb63c50261c045cd12fd362efc037320cff880", + "md5": "e4e970c4403b94d810453c1658faa31a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/evp_lib.c", + "type": "file", + "name": "evp_lib.c", + "base_name": "evp_lib", + "extension": ".c", + "size": 10825, + "date": "2017-02-16", + "sha1": "082a8a939de9e19a6525495c8a83832724322482", + "md5": "72ecc22958d0d8b5932180aae1aff510", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/evp_locl.h", + "type": "file", + "name": "evp_locl.h", + "base_name": "evp_locl", + "extension": ".h", + "size": 2632, + "date": "2017-02-16", + "sha1": "a748e20b03738f875cfddfdd7491a50b352a9a17", + "md5": "46b7cdff083d70c57e07c62ceea3b7f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/evp_pbe.c", + "type": "file", + "name": "evp_pbe.c", + "base_name": "evp_pbe", + "extension": ".c", + "size": 7461, + "date": "2017-02-16", + "sha1": "970b065555d6349cf4691174349e4ffe9ae5ca82", + "md5": "782e8510d5eaed98528faf80e85d545b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/evp_pkey.c", + "type": "file", + "name": "evp_pkey.c", + "base_name": "evp_pkey", + "extension": ".c", + "size": 4162, + "date": "2017-02-16", + "sha1": "bc5d50102481be6f0007dc3a2a2b7a2127a722e4", + "md5": "8aa37f4780ee4ab585485235ce2f13f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_md2.c", + "type": "file", + "name": "m_md2.c", + "base_name": "m_md2", + "extension": ".c", + "size": 1177, + "date": "2017-02-16", + "sha1": "a35e29f9fc759bfc41e1044258beeeddafbc7dd3", + "md5": "485576a8150194d8940ab808524f1850", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_md4.c", + "type": "file", + "name": "m_md4.c", + "base_name": "m_md4", + "extension": ".c", + "size": 1180, + "date": "2017-02-16", + "sha1": "a2d33a06986711fc3b22f88f2d435a559a1433c9", + "md5": "b293a0cfc3844d025bd32bfec8f9cabe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_md5.c", + "type": "file", + "name": "m_md5.c", + "base_name": "m_md5", + "extension": ".c", + "size": 1180, + "date": "2017-02-16", + "sha1": "6610a2a25cc82ab1d9d5180be29e59b79b955dda", + "md5": "8a67e1717a3879ad5d376be642689e9a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_md5_sha1.c", + "type": "file", + "name": "m_md5_sha1.c", + "base_name": "m_md5_sha1", + "extension": ".c", + "size": 3281, + "date": "2017-02-16", + "sha1": "37d6a2ff0f3b085c1428e377d727adb928e9a497", + "md5": "e0037e8a3971e530587bcf7d596d683c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_mdc2.c", + "type": "file", + "name": "m_mdc2.c", + "base_name": "m_mdc2", + "extension": ".c", + "size": 1182, + "date": "2017-02-16", + "sha1": "61f9359c97704961a914ec11bd48e46f5c8af22d", + "md5": "6f2603f284579d2b920b3f127ce99171", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_null.c", + "type": "file", + "name": "m_null.c", + "base_name": "m_null", + "extension": ".c", + "size": 926, + "date": "2017-02-16", + "sha1": "bc742146352936f94fcadbd416647e1123c414c5", + "md5": "f323a18e18c31fff220e6fa3cb56e556", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_ripemd.c", + "type": "file", + "name": "m_ripemd.c", + "base_name": "m_ripemd", + "extension": ".c", + "size": 1242, + "date": "2017-02-16", + "sha1": "4d9d560df077fe79b6bfc689f1836fa96f686958", + "md5": "ac968cc87277a5c45a152d08c3a47157", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_sha1.c", + "type": "file", + "name": "m_sha1.c", + "base_name": "m_sha1", + "extension": ".c", + "size": 4859, + "date": "2017-02-16", + "sha1": "788436fdc5a9ba55c87d13034692d6b18a0cdb7c", + "md5": "773f99a30a43c62b479e5cf8d7956f68", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_sigver.c", + "type": "file", + "name": "m_sigver.c", + "base_name": "m_sigver", + "extension": ".c", + "size": 5490, + "date": "2017-02-16", + "sha1": "aac1bd5363c2320b4c3f384dfa26e5776b00ddf4", + "md5": "9f168f68306533032ca3cddd11ff2d9c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/m_wp.c", + "type": "file", + "name": "m_wp.c", + "base_name": "m_wp", + "extension": ".c", + "size": 1206, + "date": "2017-02-16", + "sha1": "4469efeca4febc31dca098f77fc2045e3d247d6e", + "md5": "e8efae3972104c99092977e88239d254", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/names.c", + "type": "file", + "name": "names.c", + "base_name": "names", + "extension": ".c", + "size": 4849, + "date": "2017-02-16", + "sha1": "775f842f79265261f9a4d3ce76cca75a517749b4", + "md5": "4654743f915bf725372ee5d2e563e28b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p5_crpt.c", + "type": "file", + "name": "p5_crpt.c", + "base_name": "p5_crpt", + "extension": ".c", + "size": 2975, + "date": "2017-02-16", + "sha1": "067dfb988964fe9ed802bb2afbdda87db5cd240c", + "md5": "6f23747b61882d499dd9f8fe55730641", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p5_crpt2.c", + "type": "file", + "name": "p5_crpt2.c", + "base_name": "p5_crpt2", + "extension": ".c", + "size": 8313, + "date": "2017-02-16", + "sha1": "05055e574a992fbdc8fc6bc5091515579e3436e9", + "md5": "ede37af27a6959166cf59f8f50916bdd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Peter Gutmann " + ], + "start_line": 27, + "end_line": 29 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p_dec.c", + "type": "file", + "name": "p_dec.c", + "base_name": "p_dec", + "extension": ".c", + "size": 982, + "date": "2017-02-16", + "sha1": "a4abbb3b98d6f2a761df52041524f13099b4af2e", + "md5": "b27ef18a89400a9001a8290ee93ce52f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p_enc.c", + "type": "file", + "name": "p_enc.c", + "base_name": "p_enc", + "extension": ".c", + "size": 986, + "date": "2017-02-16", + "sha1": "967318a67943238d5d2aee189c096c11becf253b", + "md5": "6219573966bebf73ea8e3e7a5d1f3116", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p_lib.c", + "type": "file", + "name": "p_lib.c", + "base_name": "p_lib", + "extension": ".c", + "size": 11485, + "date": "2017-02-16", + "sha1": "6d620cef997ed413754ee1b9b3736bcee092da3e", + "md5": "0335e2fd60ef2d775777e585e9aec563", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p_open.c", + "type": "file", + "name": "p_open.c", + "base_name": "p_open", + "extension": ".c", + "size": 1819, + "date": "2017-02-16", + "sha1": "de92e5abb5102f4a01b6a8acdfff6f3abbc343ab", + "md5": "5f4601f53d454a459599cb51dc13a3fb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p_seal.c", + "type": "file", + "name": "p_seal.c", + "base_name": "p_seal", + "extension": ".c", + "size": 1865, + "date": "2017-02-16", + "sha1": "210fe7eab9db4f4606c6ebc9c556d2e512dd8021", + "md5": "e50f5879866cb6a114ba1cde2f8fa3ab", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p_sign.c", + "type": "file", + "name": "p_sign.c", + "base_name": "p_sign", + "extension": ".c", + "size": 1747, + "date": "2017-02-16", + "sha1": "4db33d4779af27a34b7c61a9964ab0e284bd2de2", + "md5": "902a7f358d0ec49e4d0cb0557d7e464e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/p_verify.c", + "type": "file", + "name": "p_verify.c", + "base_name": "p_verify", + "extension": ".c", + "size": 1632, + "date": "2017-02-16", + "sha1": "3c19db61e39ef39b073754b34fa592106a930f4d", + "md5": "0eb7f1e6d583ca88d96ad42cd6a57fe6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/pmeth_fn.c", + "type": "file", + "name": "pmeth_fn.c", + "base_name": "pmeth_fn", + "extension": ".c", + "size": 9848, + "date": "2017-02-16", + "sha1": "78deaa1cc39cfabb82f5ebf377e4d7c6cff6e325", + "md5": "07b77d3cfd7f118d508ba159e017bba8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/pmeth_gn.c", + "type": "file", + "name": "pmeth_gn.c", + "base_name": "pmeth_gn", + "extension": ".c", + "size": 4260, + "date": "2017-02-16", + "sha1": "7c7a416e8e6521a1171b5aca502eaea2bbe536f1", + "md5": "a21d0c2799dbd7bd007b354298cde85b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/pmeth_lib.c", + "type": "file", + "name": "pmeth_lib.c", + "base_name": "pmeth_lib", + "extension": ".c", + "size": 22668, + "date": "2017-02-16", + "sha1": "e5d13dc191c8c6dd4bddfc5d71a0130d50918208", + "md5": "acc4d01e0a4d93a98be1a9df003638bb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/evp/scrypt.c", + "type": "file", + "name": "scrypt.c", + "base_name": "scrypt", + "extension": ".c", + "size": 6890, + "date": "2017-02-16", + "sha1": "b8743009eeab13d96cac93aedb2656cf83090dae", + "md5": "1c2d94d8e65892c48e9e1bc7db192250", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/hmac", + "type": "directory", + "name": "hmac", + "base_name": "hmac", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 14663, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/hmac/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 84, + "date": "2017-02-16", + "sha1": "57d8274e0704f63a7d97f5d632cb8e1f818bd921", + "md5": "ea0ece49c5be54dec033729fd8d4b29d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/hmac/hm_ameth.c", + "type": "file", + "name": "hm_ameth.c", + "base_name": "hm_ameth", + "extension": ".c", + "size": 2756, + "date": "2017-02-16", + "sha1": "4cc7055e7aa52c482bce4a58257dc2c2a5aa1465", + "md5": "4eda4370b8e4941da3a58b6acbb55755", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/hmac/hm_pmeth.c", + "type": "file", + "name": "hm_pmeth.c", + "base_name": "hm_pmeth", + "extension": ".c", + "size": 4922, + "date": "2017-02-16", + "sha1": "be927f02603b3bb8ef2256066ca7801dabe4266a", + "md5": "38e5227c29acb6afca7370fa148e07d5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/hmac/hmac.c", + "type": "file", + "name": "hmac.c", + "base_name": "hmac", + "extension": ".c", + "size": 6160, + "date": "2017-02-16", + "sha1": "046fa1a402988a699c40c192505a0416a559b77a", + "md5": "fb708b75ca41b4b68070f6bb972803ce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/hmac/hmac_lcl.h", + "type": "file", + "name": "hmac_lcl.h", + "base_name": "hmac_lcl", + "extension": ".h", + "size": 741, + "date": "2017-02-16", + "sha1": "be5202f0971bc95075387a6304655a4d3864fe68", + "md5": "99fe2a6e6581706895914207471313fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/idea", + "type": "directory", + "name": "idea", + "base_name": "idea", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 14699, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/idea/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 100, + "date": "2017-02-16", + "sha1": "a449049f98e0cc2ec4b040e37aa65dc4c5623e12", + "md5": "295ec1b670c9006592977750a031c2a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/idea/i_cbc.c", + "type": "file", + "name": "i_cbc.c", + "base_name": "i_cbc", + "extension": ".c", + "size": 3074, + "date": "2017-02-16", + "sha1": "a2e49c8feb10316cab4992a56adbbcd8dfb45b6c", + "md5": "42e79cdd2ce4b992eef5eed498dd786b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/idea/i_cfb64.c", + "type": "file", + "name": "i_cfb64.c", + "base_name": "i_cfb64", + "extension": ".c", + "size": 2200, + "date": "2017-02-16", + "sha1": "d0b7c9f51015220694768a63d19a8ba8978371eb", + "md5": "ffbf779168d03c3b86f2e083f6195122", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/idea/i_ecb.c", + "type": "file", + "name": "i_ecb.c", + "base_name": "i_ecb", + "extension": ".c", + "size": 810, + "date": "2017-02-16", + "sha1": "ab444141f83dbc0031eb3282d1a9338374716b8f", + "md5": "c836f4d80d75b228f53b07081fd7efaa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/idea/i_ofb64.c", + "type": "file", + "name": "i_ofb64.c", + "base_name": "i_ofb64", + "extension": ".c", + "size": 1635, + "date": "2017-02-16", + "sha1": "dacbd9b11b4ebafe518e49dc5ee1580b7f8f00f6", + "md5": "4692db7489869a81eca9c510fca690d4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/idea/i_skey.c", + "type": "file", + "name": "i_skey.c", + "base_name": "i_skey", + "extension": ".c", + "size": 2739, + "date": "2017-02-16", + "sha1": "e3c0406857b55a8e17acc7d64719ff0f013c4921", + "md5": "0dcd155c762c701f90a320b8b1dbe45c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/idea/idea_lcl.h", + "type": "file", + "name": "idea_lcl.h", + "base_name": "idea_lcl", + "extension": ".h", + "size": 4141, + "date": "2017-02-16", + "sha1": "10fcb78b4e0240c831a9d2128a6c2b797367fe5f", + "md5": "25d71d6cc9b70e4baad15c66dc1de4cc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Colin Plumb " + ], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include", + "type": "directory", + "name": "include", + "base_name": "include", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 1, + "size_count": 55455, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 0, + "size_count": 55455, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/asn1_int.h", + "type": "file", + "name": "asn1_int.h", + "base_name": "asn1_int", + "extension": ".h", + "size": 3929, + "date": "2017-02-16", + "sha1": "b58cdaaae457b1b2e35e4c3d47833f8ec56a228e", + "md5": "d7509d45e8aa6c34902cd0ceeefd8d27", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/async.h", + "type": "file", + "name": "async.h", + "base_name": "async", + "extension": ".h", + "size": 405, + "date": "2017-02-16", + "sha1": "ec08f4c4400b7a3e800cd0da6026908bb9c631df", + "md5": "3ec92e613e16922d849a5633f78a8f1e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/bn_conf.h.in", + "type": "file", + "name": "bn_conf.h.in", + "base_name": "bn_conf.h", + "extension": ".in", + "size": 873, + "date": "2017-02-16", + "sha1": "36cf6ba9d1e1ce0ec080a65ae6755e3ac7add193", + "md5": "b3df608d34fed500572af25f1b41483a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/bn_dh.h", + "type": "file", + "name": "bn_dh.h", + "base_name": "bn_dh", + "extension": ".h", + "size": 593, + "date": "2017-02-16", + "sha1": "19b6d26c6f2b5728fed54b81b928c4e5ae4ff4f8", + "md5": "898f6c34bcfb6621daa90794d5dfbf2a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/bn_int.h", + "type": "file", + "name": "bn_int.h", + "base_name": "bn_int", + "extension": ".h", + "size": 2287, + "date": "2017-02-16", + "sha1": "28a4bff50d3b03e1123ec410d27976444b8af5d1", + "md5": "5994a76bf0bff7a30d00dd741feb7f56", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/bn_srp.h", + "type": "file", + "name": "bn_srp.h", + "base_name": "bn_srp", + "extension": ".h", + "size": 729, + "date": "2017-02-16", + "sha1": "e0646c0a9fec1f79dc2d207a4acd078de5e463c5", + "md5": "591a5ab2c41fb83fbce6a880d70b5dbe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/chacha.h", + "type": "file", + "name": "chacha.h", + "base_name": "chacha", + "extension": ".h", + "size": 1713, + "date": "2017-02-16", + "sha1": "113f9b7606fac67a3fff51d3bf4711ae84cadfb4", + "md5": "80dca06edcf6b526802980045c402d4b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/cryptlib.h", + "type": "file", + "name": "cryptlib.h", + "base_name": "cryptlib", + "extension": ".h", + "size": 2289, + "date": "2017-02-16", + "sha1": "751c34394e07fe481300eef0339975b3b6b69acd", + "md5": "a156c6040d86fbae22b4d622289e4a3e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/cryptlib_int.h", + "type": "file", + "name": "cryptlib_int.h", + "base_name": "cryptlib_int", + "extension": ".h", + "size": 900, + "date": "2017-02-16", + "sha1": "4af1cb9429561386478473aa86e0cbf52dc37250", + "md5": "b106f477e8c68dcc93ba213ecac3711a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/dso_conf.h.in", + "type": "file", + "name": "dso_conf.h.in", + "base_name": "dso_conf.h", + "extension": ".in", + "size": 494, + "date": "2017-02-16", + "sha1": "ac9160b287f74c2a010fb93187f9ee48256bb05f", + "md5": "aab46435a8ec9c703fa292d5ebf4a700", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/engine.h", + "type": "file", + "name": "engine.h", + "base_name": "engine", + "extension": ".h", + "size": 672, + "date": "2017-02-16", + "sha1": "1af998d83ed7fdaad8d5da6f01d09f693f6de631", + "md5": "7214964a985a83de36098309e409e765", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/err_int.h", + "type": "file", + "name": "err_int.h", + "base_name": "err_int", + "extension": ".h", + "size": 492, + "date": "2017-02-16", + "sha1": "df71aa2df2b32d360ee6a37b6b40936f5ed634d6", + "md5": "342d3ba8ecaddfa74d7cafd228054803", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/evp_int.h", + "type": "file", + "name": "evp_int.h", + "base_name": "evp_int", + "extension": ".h", + "size": 15461, + "date": "2017-02-16", + "sha1": "c4059315b329db91b81305293b8c9a0c02e698c2", + "md5": "dc83648ea617f3b5e81562e1c884bf2a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/md32_common.h", + "type": "file", + "name": "md32_common.h", + "base_name": "md32_common", + "extension": ".h", + "size": 13837, + "date": "2017-02-16", + "sha1": "578d381cef7591b1d1b35dc318c8a6bff3696db9", + "md5": "dc2b0e9d4c3558aef11b3107d24a97ad", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/objects.h", + "type": "file", + "name": "objects.h", + "base_name": "objects", + "extension": ".h", + "size": 387, + "date": "2017-02-16", + "sha1": "63345d12fa70ba3f4b50bec413e4af9af2bef1aa", + "md5": "51c1e47f6432d8f24d7a04562eef8bac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/poly1305.h", + "type": "file", + "name": "poly1305.h", + "base_name": "poly1305", + "extension": ".h", + "size": 660, + "date": "2017-02-16", + "sha1": "7138bb74363053b99ddfd88627976c5bc18c833b", + "md5": "f54905a2b90399e72c042d92aae5428b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/rand.h", + "type": "file", + "name": "rand.h", + "base_name": "rand", + "extension": ".h", + "size": 662, + "date": "2017-02-16", + "sha1": "45870e28a0d2a899bd744a9e12e3a5da609fa537", + "md5": "38a866532b39ad06972c379698554c19", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 11, + "end_line": 13, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/include/internal/x509_int.h", + "type": "file", + "name": "x509_int.h", + "base_name": "x509_int", + "extension": ".h", + "size": 9072, + "date": "2017-02-16", + "sha1": "874a41f075ca5b348baa60f802da50a4ca176104", + "md5": "cc339c9d568a872501f34d8dff068c85", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/kdf", + "type": "directory", + "name": "kdf", + "base_name": "kdf", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 16272, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/kdf/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 83, + "date": "2017-02-16", + "sha1": "8f81fa52030d75c46a295e95cf6a0fe3cb58b443", + "md5": "963b9de0d9443a8c84e7194d047850e3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/kdf/hkdf.c", + "type": "file", + "name": "hkdf.c", + "base_name": "hkdf", + "extension": ".c", + "size": 7458, + "date": "2017-02-16", + "sha1": "2051455c504f8a0a640d7e88d917398f3e1f3f0d", + "md5": "4c4beec3841fe9a29277317cca696178", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/kdf/kdf_err.c", + "type": "file", + "name": "kdf_err.c", + "base_name": "kdf_err", + "extension": ".c", + "size": 1301, + "date": "2017-02-16", + "sha1": "c01afa1f059ea9aa4de07ac496d52597b0e9b19a", + "md5": "fdd4d60cc85cce631f8bf4f3bf3eb9c3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/kdf/tls1_prf.c", + "type": "file", + "name": "tls1_prf.c", + "base_name": "tls1_prf", + "extension": ".c", + "size": 7430, + "date": "2017-02-16", + "sha1": "81322f2db84c33833a4edc49998a0f8f786c25d5", + "md5": "97380ab24bf9a899a4205eeae9b1b86b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/lhash", + "type": "directory", + "name": "lhash", + "base_name": "lhash", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 14038, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/lhash/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 74, + "date": "2017-02-16", + "sha1": "184afc4cd92b8397aa70663d9e7cf436cab42fd9", + "md5": "c81f6bb56f49a705482f715fbd6c0a3a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/lhash/lh_stats.c", + "type": "file", + "name": "lh_stats.c", + "base_name": "lh_stats", + "extension": ".c", + "size": 3741, + "date": "2017-02-16", + "sha1": "c97abd5f9540e0af483555262f3731b544d102fe", + "md5": "bce3e96e87d28fa4e82fb91692723f43", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/lhash/lhash.c", + "type": "file", + "name": "lhash.c", + "base_name": "lhash", + "extension": ".c", + "size": 8425, + "date": "2017-02-16", + "sha1": "81fc59f0bbf14791b4c1287d44b43cd4361a0672", + "md5": "97c1527f5e47d5fe0a1035dc6fa71fa2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/lhash/lhash_lcl.h", + "type": "file", + "name": "lhash_lcl.h", + "base_name": "lhash_lcl", + "extension": ".h", + "size": 1234, + "date": "2017-02-16", + "sha1": "17763ccc5cd7ab652ad422b79992cb4f48cbcd46", + "md5": "f09ea887bd63c7c9d2da96f433034bea", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/lhash/num.pl", + "type": "file", + "name": "num.pl", + "base_name": "num", + "extension": ".pl", + "size": 564, + "date": "2017-02-16", + "sha1": "4a6161fd890c286e26f2ec2abc1ce32f700b3463", + "md5": "41d1e0128a55be2e40e915dd06b81406", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md2", + "type": "directory", + "name": "md2", + "base_name": "md2", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 6379, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md2/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 76, + "date": "2017-02-16", + "sha1": "ad68626f62b653e3570dcb0e22774b91da611bfe", + "md5": "812e535f75f67d90e95925b35d48e4dd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md2/md2_dgst.c", + "type": "file", + "name": "md2_dgst.c", + "base_name": "md2_dgst", + "extension": ".c", + "size": 5104, + "date": "2017-02-16", + "sha1": "bb924726bd3e556a3224bee11ad2fca8720c723f", + "md5": "22863a072a9a078af6f376dc5bd9b1f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md2/md2_one.c", + "type": "file", + "name": "md2_one.c", + "base_name": "md2_one", + "extension": ".c", + "size": 1199, + "date": "2017-02-16", + "sha1": "6f9cde5ed297f2080b63202e69ab0fe4165e7ae6", + "md5": "da313e65344efbb9097b19903d439dfa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md4", + "type": "directory", + "name": "md4", + "base_name": "md4", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 7726, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md4/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 76, + "date": "2017-02-16", + "sha1": "ae663bac35d5745ff567573c916670ca3f355c0b", + "md5": "42fab72cd8a9dd38f2c1bed2ae285d64", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md4/md4_dgst.c", + "type": "file", + "name": "md4_dgst.c", + "base_name": "md4_dgst", + "extension": ".c", + "size": 4500, + "date": "2017-02-16", + "sha1": "a093692cee567e7ca343f964ea4c9051098dbb68", + "md5": "cdb82afa4a74cf9c9364b5896b335d83", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md4/md4_locl.h", + "type": "file", + "name": "md4_locl.h", + "base_name": "md4_locl", + "extension": ".h", + "size": 1987, + "date": "2017-02-16", + "sha1": "337725f5b050a7a60470a598fc0a7a316a129956", + "md5": "7abc39f9e48897f02c85be70e34c63ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Wei Dai " + ], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md4/md4_one.c", + "type": "file", + "name": "md4_one.c", + "base_name": "md4_one", + "extension": ".c", + "size": 1163, + "date": "2017-02-16", + "sha1": "32298152896105758d70e59c0afeff9b446827e2", + "md5": "326e8a50fd3d840701c186aa119a2dc2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5", + "type": "directory", + "name": "md5", + "base_name": "md5", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 1, + "size_count": 62609, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 720, + "date": "2017-02-16", + "sha1": "58baf4b21d9548569ac5fb2fc52582810cf3d78c", + "md5": "f2d9d662be74fd0db305f289bc4976cf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/md5_dgst.c", + "type": "file", + "name": "md5_dgst.c", + "base_name": "md5_dgst", + "extension": ".c", + "size": 5448, + "date": "2017-02-16", + "sha1": "f2d80158be9328866e2f71950c14da1b0944a377", + "md5": "c96fbd7e7d95bb9a8a1d7e107ae830b6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/md5_locl.h", + "type": "file", + "name": "md5_locl.h", + "base_name": "md5_locl", + "extension": ".h", + "size": 2621, + "date": "2017-02-16", + "sha1": "d1b145ac09105664a998e454b1eb395bf0e6b2de", + "md5": "57ca60520e35d9f21898f56ceac4d230", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Wei Dai " + ], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/md5_one.c", + "type": "file", + "name": "md5_one.c", + "base_name": "md5_one", + "extension": ".c", + "size": 1163, + "date": "2017-02-16", + "sha1": "d5ba036ea3b3e574c57434eed7d48218c06fe43e", + "md5": "57e8f63be24bb3b2d18516d5250d258b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 52657, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/asm/md5-586.pl", + "type": "file", + "name": "md5-586.pl", + "base_name": "md5-586", + "extension": ".pl", + "size": 7984, + "date": "2017-02-16", + "sha1": "b53f079a0da77ad3fd0cc1d8c6e0da3b6b563a7d", + "md5": "ae27ca5c2498064dd2fb117b54fa4337", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/asm/md5-ia64.S", + "type": "file", + "name": "md5-ia64.S", + "base_name": "md5-ia64", + "extension": ".S", + "size": 21881, + "date": "2017-02-16", + "sha1": "9a0eed09a6af30794b84e8ba2f99dcb0ca97be89", + "md5": "190b85ce86b821bef9d6552f45bd3e58", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 95.4, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 5, + "end_line": 30, + "matched_rule": { + "identifier": "mit_104.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + }, + { + "statements": [ + "Copyright (c) 2005 Hewlett-Packard Development Company, L.P." + ], + "holders": [ + "Hewlett-Packard Development Company, L.P." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/asm/md5-sparcv9.pl", + "type": "file", + "name": "md5-sparcv9.pl", + "base_name": "md5-sparcv9", + "extension": ".pl", + "size": 10118, + "date": "2017-02-16", + "sha1": "e04e9edd4d860fef88ec8b19e6c874827084f033", + "md5": "2d51c8bf7695fb4f5424ee92b6acc7cd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller " + ], + "start_line": 16, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/md5/asm/md5-x86_64.pl", + "type": "file", + "name": "md5-x86_64.pl", + "base_name": "md5-x86_64", + "extension": ".pl", + "size": 12674, + "date": "2017-02-16", + "sha1": "d80cfc3e672fc3311e031b8b0d953c6e56b5f956", + "md5": "9cdc8b387fa35c3745ce36de608f3309", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [ + "Marc Bevand" + ], + "start_line": 1, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/mdc2", + "type": "directory", + "name": "mdc2", + "base_name": "mdc2", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 4535, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/mdc2/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 77, + "date": "2017-02-16", + "sha1": "00a3ba4d4f390b870661b94ea6741a3e6ae2ff08", + "md5": "8497622ad8d62ce89e3e1d004fd06194", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/mdc2/mdc2_one.c", + "type": "file", + "name": "mdc2_one.c", + "base_name": "mdc2_one", + "extension": ".c", + "size": 767, + "date": "2017-02-16", + "sha1": "d565e47aedb2a4cf418d9c6bacc6a2445f2f993d", + "md5": "d5075a860b017b301026800e1ed55c0d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/mdc2/mdc2dgst.c", + "type": "file", + "name": "mdc2dgst.c", + "base_name": "mdc2dgst", + "extension": ".c", + "size": 3691, + "date": "2017-02-16", + "sha1": "1f0fa50ffe9df3b7a56a99abf89e960828e41fd4", + "md5": "8d4ad3235b1497d1ce8cea57000c2bea", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes", + "type": "directory", + "name": "modes", + "base_name": "modes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 24, + "dirs_count": 1, + "size_count": 385107, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 1129, + "date": "2017-02-16", + "sha1": "d483a5c43d1bc7a459681ca34f2ca88a8028290a", + "md5": "10fb76c23bebbfc2a312b4c1368b95d0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/cbc128.c", + "type": "file", + "name": "cbc128.c", + "base_name": "cbc128", + "extension": ".c", + "size": 4559, + "date": "2017-02-16", + "sha1": "10f58707c7d0c8a3427a2e38657d45da87ea4c02", + "md5": "7b1e76857e5d05b09ef801d2b6164358", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/ccm128.c", + "type": "file", + "name": "ccm128.c", + "base_name": "ccm128", + "extension": ".c", + "size": 11725, + "date": "2017-02-16", + "sha1": "bd1c56c3cad710b6a03860762ae65f9d81358f67", + "md5": "d932fc5e5127271559eaa289a795c3b0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/cfb128.c", + "type": "file", + "name": "cfb128.c", + "base_name": "cfb128", + "extension": ".c", + "size": 6638, + "date": "2017-02-16", + "sha1": "0d81d7873fbd6f588ed673ff7fc37f112a452567", + "md5": "8fa0cf79f4e74b7b5896eaba83102a90", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/ctr128.c", + "type": "file", + "name": "ctr128.c", + "base_name": "ctr128", + "extension": ".c", + "size": 5964, + "date": "2017-02-16", + "sha1": "bedb4ed76c363d33dd06c648029dd8b426a66d61", + "md5": "dd847647ad21f3023474ef7583e173dc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/cts128.c", + "type": "file", + "name": "cts128.c", + "base_name": "cts128", + "extension": ".c", + "size": 15480, + "date": "2017-02-16", + "sha1": "68e95f8502feb4d00bf400f14efd178180d1c6e8", + "md5": "6dc68c56e3b25648d734c5c35dc5a982", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/gcm128.c", + "type": "file", + "name": "gcm128.c", + "base_name": "gcm128", + "extension": ".c", + "size": 71370, + "date": "2017-02-16", + "sha1": "5ee3908cb341c334d83614eba821c4e6278b2fde", + "md5": "8c6227571b186c5347dc983de45f4459", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/modes_lcl.h", + "type": "file", + "name": "modes_lcl.h", + "base_name": "modes_lcl", + "extension": ".h", + "size": 5989, + "date": "2017-02-16", + "sha1": "5c6d24c3cda1eadf9dd4aa735ec958365bbfaa80", + "md5": "c88cb67baac844ea764da23d72d3955a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/ocb128.c", + "type": "file", + "name": "ocb128.c", + "base_name": "ocb128", + "extension": ".c", + "size": 17144, + "date": "2017-02-16", + "sha1": "1f2ad3f684c260a6f00e2a37bde9a69162cbe75d", + "md5": "c9ffb26f1483b04a9e9d198b57881adf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/ofb128.c", + "type": "file", + "name": "ofb128.c", + "base_name": "ofb128", + "extension": ".c", + "size": 2170, + "date": "2017-02-16", + "sha1": "09da16688c4dbd82790ef10bcdf821b3d5e49fe4", + "md5": "a74195bf16b30371f2d06a516e75664f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/wrap128.c", + "type": "file", + "name": "wrap128.c", + "base_name": "wrap128", + "extension": ".c", + "size": 11857, + "date": "2017-02-16", + "sha1": "f54742e635391a7e32ed14b1add7b38c0b87704d", + "md5": "27872fe4157964548a67a46925c87477", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/xts128.c", + "type": "file", + "name": "xts128.c", + "base_name": "xts128", + "extension": ".c", + "size": 4447, + "date": "2017-02-16", + "sha1": "3bdda11cc483b34a8b7c339b4cd0af4e159343c7", + "md5": "c04b1f6a05205b105fba210edbbaa1ee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 226635, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/aesni-gcm-x86_64.pl", + "type": "file", + "name": "aesni-gcm-x86_64.pl", + "base_name": "aesni-gcm-x86_64", + "extension": ".pl", + "size": 30924, + "date": "2017-02-16", + "sha1": "25555442ccc8e22bfdfa2eaf3a8e325023df3145", + "md5": "de96395e6263b37e0f1c71c31c92ab80", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-alpha.pl", + "type": "file", + "name": "ghash-alpha.pl", + "base_name": "ghash-alpha", + "extension": ".pl", + "size": 7970, + "date": "2017-02-16", + "sha1": "0fef4ee882cc4497e8b7b416cc4bb3dba63537ad", + "md5": "ba5ec2740f5adb7be3fdcfe21f1bc622", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-armv4.pl", + "type": "file", + "name": "ghash-armv4.pl", + "base_name": "ghash-armv4", + "extension": ".pl", + "size": 14216, + "date": "2017-02-16", + "sha1": "037a34a23f05d4d9ea2547057ce72a5e150f2f21", + "md5": "648127395f6db8482ee37da969d30b83", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-c64xplus.pl", + "type": "file", + "name": "ghash-c64xplus.pl", + "base_name": "ghash-c64xplus", + "extension": ".pl", + "size": 7451, + "date": "2017-02-16", + "sha1": "8f6098914590e129393a0a7646f90cdeb0129eaf", + "md5": "3b83a886109b9db4e5acdb96c0bbc9e1", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-ia64.pl", + "type": "file", + "name": "ghash-ia64.pl", + "base_name": "ghash-ia64", + "extension": ".pl", + "size": 18352, + "date": "2017-02-16", + "sha1": "fe4bd309c69bacd96dc09f22131b9519895222bd", + "md5": "49a4ad2d1dc8f6d71e84b1f2202b4cfc", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-parisc.pl", + "type": "file", + "name": "ghash-parisc.pl", + "base_name": "ghash-parisc", + "extension": ".pl", + "size": 16765, + "date": "2017-02-16", + "sha1": "e031b4a9434a2812ba89635d91f6c9b99c49c3f6", + "md5": "a861bcbe1146cd1ff3076f325b4e1851", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-s390x.pl", + "type": "file", + "name": "ghash-s390x.pl", + "base_name": "ghash-s390x", + "extension": ".pl", + "size": 6462, + "date": "2017-02-16", + "sha1": "6d4016db414824a824d2a23a9fa6e7b5dd475128", + "md5": "cd74f2a603535ae18b442fb3d399c148", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-sparcv9.pl", + "type": "file", + "name": "ghash-sparcv9.pl", + "base_name": "ghash-sparcv9", + "extension": ".pl", + "size": 12974, + "date": "2017-02-16", + "sha1": "77dca75217077abf18ab4bc608b30728b655687b", + "md5": "3887a78be08e949a636927d1a7c928de", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-x86.pl", + "type": "file", + "name": "ghash-x86.pl", + "base_name": "ghash-x86", + "extension": ".pl", + "size": 41631, + "date": "2017-02-16", + "sha1": "a5379c4cb48ee846a21e207b149ffeda3c6ea4ef", + "md5": "f82fcd3d8fa685d6744eedfeac4f9fc3", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghash-x86_64.pl", + "type": "file", + "name": "ghash-x86_64.pl", + "base_name": "ghash-x86_64", + "extension": ".pl", + "size": 43251, + "date": "2017-02-16", + "sha1": "8b53c657cf67b50c581e4399d609c9a3ce981a45", + "md5": "075e484f2629c40765747844156e9843", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghashp8-ppc.pl", + "type": "file", + "name": "ghashp8-ppc.pl", + "base_name": "ghashp8-ppc", + "extension": ".pl", + "size": 14788, + "date": "2017-02-16", + "sha1": "a1a6a0eec40e9c6ac3e246d0e13e7d6aa60666b2", + "md5": "c3fb270716147665254301fae6cc80f5", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/modes/asm/ghashv8-armx.pl", + "type": "file", + "name": "ghashv8-armx.pl", + "base_name": "ghashv8-armx", + "extension": ".pl", + "size": 11851, + "date": "2017-02-16", + "sha1": "00bcd5bec64d199f99a886052228b235bfa967be", + "md5": "e356dbb098b1d5d5387f5b29ce8fd1ce", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects", + "type": "directory", + "name": "objects", + "base_name": "objects", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 0, + "size_count": 449207, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 106, + "date": "2017-02-16", + "sha1": "56dfb66b7186c34574f061a953621e9bbeb8d9e9", + "md5": "9e78c5203474756a73611ecfcd17ac91", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/o_names.c", + "type": "file", + "name": "o_names.c", + "base_name": "o_names", + "extension": ".c", + "size": 10036, + "date": "2017-02-16", + "sha1": "ab8c1b0ecd3608c5cc6b597feee9d53ec26739eb", + "md5": "172425917f613854ff3e6ab93083c5ef", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_dat.c", + "type": "file", + "name": "obj_dat.c", + "base_name": "obj_dat", + "extension": ".c", + "size": 18164, + "date": "2017-02-16", + "sha1": "05d6abdc35697aec24ffd1518f842a9975bd9171", + "md5": "f792ced46c0d6e2a97579f9a87c31f46", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_dat.h", + "type": "file", + "name": "obj_dat.h", + "base_name": "obj_dat", + "extension": ".h", + "size": 317044, + "date": "2017-02-16", + "sha1": "be59de278c8704ca083fff45d08af7245bb77979", + "md5": "b1270c4ffce200ac21b17fd67d3086ca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_dat.pl", + "type": "file", + "name": "obj_dat.pl", + "base_name": "obj_dat", + "extension": ".pl", + "size": 6095, + "date": "2017-02-16", + "sha1": "b84ec0045bea949171d41ac0b6d97c78480a0e84", + "md5": "22150bc1f9a61c228c3dd7b5bb18c236", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 158, + "end_line": 161, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 157, + "end_line": 157 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_err.c", + "type": "file", + "name": "obj_err.c", + "base_name": "obj_err", + "extension": ".c", + "size": 1445, + "date": "2017-02-16", + "sha1": "1de85125ddf33db182fb5d27db233d8207d18303", + "md5": "f15052a4335645fffbf3d2af0bfaee02", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_lcl.h", + "type": "file", + "name": "obj_lcl.h", + "base_name": "obj_lcl", + "extension": ".h", + "size": 492, + "date": "2017-02-16", + "sha1": "917b7d8c68b34573563f78a9863f7e596a647bad", + "md5": "a63de7ebef5a8b5b04609e9b66076b4e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_lib.c", + "type": "file", + "name": "obj_lib.c", + "base_name": "obj_lib", + "extension": ".c", + "size": 1760, + "date": "2017-02-16", + "sha1": "15ea7ae06ade0e8cb83afa010747eed792e4222c", + "md5": "535632da15f80f74a55909364d99564c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_mac.num", + "type": "file", + "name": "obj_mac.num", + "base_name": "obj_mac", + "extension": ".num", + "size": 23433, + "date": "2017-02-16", + "sha1": "73d09cab1e1ca2def3342c1410d408204a461d56", + "md5": "aa405044a4b4b4ca3bc3a1dcf7b617f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_xref.c", + "type": "file", + "name": "obj_xref.c", + "base_name": "obj_xref", + "extension": ".c", + "size": 3998, + "date": "2017-02-16", + "sha1": "d2dc39b58c36d90ec59aca9f75609a0029f01bb2", + "md5": "c5623a6ef106360a11e6ccf6a535ca82", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_xref.h", + "type": "file", + "name": "obj_xref.h", + "base_name": "obj_xref", + "extension": ".h", + "size": 4347, + "date": "2017-02-16", + "sha1": "6dca726e9570e7c115498b998ca1e2ede30b2be3", + "md5": "b365cfc6694d8c399fee39d9c232719d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 10, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/obj_xref.txt", + "type": "file", + "name": "obj_xref.txt", + "base_name": "obj_xref", + "extension": ".txt", + "size": 2488, + "date": "2017-02-16", + "sha1": "66c4b413d3d01bf4de4faf2b2f5a3bac3a212054", + "md5": "e870604b9071bf9c7a70efa3141579c4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/objects.pl", + "type": "file", + "name": "objects.pl", + "base_name": "objects", + "extension": ".pl", + "size": 4805, + "date": "2017-02-16", + "sha1": "f03fd8865cff5bc3b457d8bc109ec3502b721c52", + "md5": "ef781d3aec566cc0be57cc6f415c4fd3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 133, + "end_line": 136, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 132, + "end_line": 132 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/objects.txt", + "type": "file", + "name": "objects.txt", + "base_name": "objects", + "extension": ".txt", + "size": 51031, + "date": "2017-02-16", + "sha1": "a03d48403e2d220042a7a5bb5cc39a10604df4a6", + "md5": "522f41d4c8aaac3ac2cfaae873aae631", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/objxref.pl", + "type": "file", + "name": "objxref.pl", + "base_name": "objxref", + "extension": ".pl", + "size": 2691, + "date": "2017-02-16", + "sha1": "94b70dbfec6d3c3bbe0f7d61cbac9b60846873aa", + "md5": "4a45750fa215da86ad427976af8b75c9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 74, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/objects/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 1272, + "date": "2017-02-16", + "sha1": "d5935fb3b0a6fd9be88635c94d167cef48f96235", + "md5": "4cd7405fa63b45e829e24d85b7c4f2ee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp", + "type": "directory", + "name": "ocsp", + "base_name": "ocsp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 95294, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 172, + "date": "2017-02-16", + "sha1": "0c214cc648aca310d8fe33574b74fe5bb9d18b3c", + "md5": "dfafa6b0e41c7607a3480e1820601cf3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_asn.c", + "type": "file", + "name": "ocsp_asn.c", + "base_name": "ocsp_asn", + "extension": ".c", + "size": 5226, + "date": "2017-02-16", + "sha1": "cecf6f388e4cf7dbc228c58578d966def37b855b", + "md5": "844d2d4c2ae9b35a757503270e8543e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_cl.c", + "type": "file", + "name": "ocsp_cl.c", + "base_name": "ocsp_cl", + "extension": ".c", + "size": 10180, + "date": "2017-02-16", + "sha1": "23cb56e033c7982b254ec240cb5bba6884d4413f", + "md5": "6cdd740e7cb93a453eab12fd11864657", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_err.c", + "type": "file", + "name": "ocsp_err.c", + "base_name": "ocsp_err", + "extension": ".c", + "size": 3914, + "date": "2017-02-16", + "sha1": "f627b938e648d824aa3a3e261b9308091550aed3", + "md5": "3c942aa8d2428dd57c9a401809882aec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_ext.c", + "type": "file", + "name": "ocsp_ext.c", + "base_name": "ocsp_ext", + "extension": ".c", + "size": 14297, + "date": "2017-02-16", + "sha1": "d87d37717c6fb12d9ecab55072ceff4a3589cb66", + "md5": "f27d7362febfe5d92dbff603e5a2eb6d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_ht.c", + "type": "file", + "name": "ocsp_ht.c", + "base_name": "ocsp_ht", + "extension": ".c", + "size": 12858, + "date": "2017-02-16", + "sha1": "3c5345efdc65f8323adeab16072162b5e6268cc7", + "md5": "4d37efd8b1205d8cfb564fcf245376ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_lcl.h", + "type": "file", + "name": "ocsp_lcl.h", + "base_name": "ocsp_lcl", + "extension": ".h", + "size": 7346, + "date": "2017-02-16", + "sha1": "6856ae8ac945b8213d1c46b5bf54e8991b217191", + "md5": "1513892fe92bb34fe82337e4bded150a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_lib.c", + "type": "file", + "name": "ocsp_lib.c", + "base_name": "ocsp_lib", + "extension": ".c", + "size": 5270, + "date": "2017-02-16", + "sha1": "4c469e8192f047fdf9483f8a3d591c6aef53a656", + "md5": "8a3053f0ec38c2ba65d745c22fe761c4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_prn.c", + "type": "file", + "name": "ocsp_prn.c", + "base_name": "ocsp_prn", + "extension": ".c", + "size": 8446, + "date": "2017-02-16", + "sha1": "24480648db921db64ccb5168bc5a60ee7964c765", + "md5": "d462dc75f5cc99f7d30dc3923a82c588", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_srv.c", + "type": "file", + "name": "ocsp_srv.c", + "base_name": "ocsp_srv", + "extension": ".c", + "size": 7560, + "date": "2017-02-16", + "sha1": "a46e61301fb54dd60ef391c524963cd316fdd728", + "md5": "c93a1ec442817240131094a71414fa03", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/ocsp_vfy.c", + "type": "file", + "name": "ocsp_vfy.c", + "base_name": "ocsp_vfy", + "extension": ".c", + "size": 13040, + "date": "2017-02-16", + "sha1": "439d215124ebcc72a66244889d8e293d17c51c88", + "md5": "f76419035a1cc054c94c618643c300ca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ocsp/v3_ocsp.c", + "type": "file", + "name": "v3_ocsp.c", + "base_name": "v3_ocsp", + "extension": ".c", + "size": 6985, + "date": "2017-02-16", + "sha1": "0541e48493e769737333e0cb169a048fa7a476f8", + "md5": "3ef0de71bc0d9bb7ba99531fac3866b1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem", + "type": "directory", + "name": "pem", + "base_name": "pem", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 85816, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 179, + "date": "2017-02-16", + "sha1": "7f8fdefe6cc8d13221e5dc7510cf7f35a239040c", + "md5": "18a7977778bcf4824034cd72d0c45a01", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_all.c", + "type": "file", + "name": "pem_all.c", + "base_name": "pem_all", + "extension": ".c", + "size": 5145, + "date": "2017-02-16", + "sha1": "931ef41bdaafc32732b7968326749e1457680e0d", + "md5": "84160e0e8d9deb0dee138874c75a45a8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_err.c", + "type": "file", + "name": "pem_err.c", + "base_name": "pem_err", + "extension": ".c", + "size": 5123, + "date": "2017-02-16", + "sha1": "61c5652fbd5a66dbd8c22fa41eebfbff6158df16", + "md5": "df09132db6140a40ea37073d97be5b1e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_info.c", + "type": "file", + "name": "pem_info.c", + "base_name": "pem_info", + "extension": ".c", + "size": 10545, + "date": "2017-02-16", + "sha1": "19e01b2432006901d623641a34a8c96b4b24c3b0", + "md5": "c467c60581c62c576c81b302d2c89840", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_lib.c", + "type": "file", + "name": "pem_lib.c", + "base_name": "pem_lib", + "extension": ".c", + "size": 24097, + "date": "2017-02-16", + "sha1": "2524a494c899dadd68e48858d2c26466d17b4d37", + "md5": "a6ffade832105fd0563bbeb64f0a1ef8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_oth.c", + "type": "file", + "name": "pem_oth.c", + "base_name": "pem_oth", + "extension": ".c", + "size": 1051, + "date": "2017-02-16", + "sha1": "64d29808edb4ff8f66435f93210ab2fe3856514f", + "md5": "b3b3297d54cd642497ef2caee18d4460", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_pk8.c", + "type": "file", + "name": "pem_pk8.c", + "base_name": "pem_pk8", + "extension": ".c", + "size": 6662, + "date": "2017-02-16", + "sha1": "d1ac8a68edb21332338ed9fdde7e633a940ac756", + "md5": "61ffe02d0e4274428690d500eccb9a2a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_pkey.c", + "type": "file", + "name": "pem_pkey.c", + "base_name": "pem_pkey", + "extension": ".c", + "size": 7014, + "date": "2017-02-16", + "sha1": "cb91fcc5dd47996b2f1a13eb33b494e4db475338", + "md5": "bbafd465f138e2babbe68e26b3222429", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_sign.c", + "type": "file", + "name": "pem_sign.c", + "base_name": "pem_sign", + "extension": ".c", + "size": 1294, + "date": "2017-02-16", + "sha1": "9f3106b53af8a5babe83e6cfc4a1fe7f8be17ad5", + "md5": "67466d6a5b70b7aea75500d2f5bbbc5a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_x509.c", + "type": "file", + "name": "pem_x509.c", + "base_name": "pem_x509", + "extension": ".c", + "size": 565, + "date": "2017-02-16", + "sha1": "7f3d962bdeae311b9b06c5e43e42ec3275603c93", + "md5": "ade44954c17814796e9b6a9f7372df6e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pem_xaux.c", + "type": "file", + "name": "pem_xaux.c", + "base_name": "pem_xaux", + "extension": ".c", + "size": 581, + "date": "2017-02-16", + "sha1": "191b6f336febb63fd2e169583fdfa0140365cebd", + "md5": "b199e428a2110cfbcde5fbe415bfbef5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pem/pvkfmt.c", + "type": "file", + "name": "pvkfmt.c", + "base_name": "pvkfmt", + "extension": ".c", + "size": 23560, + "date": "2017-02-16", + "sha1": "9298d36fa5c7f1917d5ce32f2782cf4643b5c998", + "md5": "4329899de2c7ee7576a0e1a55c2b4076", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm", + "type": "directory", + "name": "perlasm", + "base_name": "perlasm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 124269, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/arm-xlate.pl", + "type": "file", + "name": "arm-xlate.pl", + "base_name": "arm-xlate", + "extension": ".pl", + "size": 4141, + "date": "2017-02-16", + "sha1": "ca3d800da2241eee7aaf09c6118c82214896defa", + "md5": "d48c28f345a27bfd4c31d5b9b436483d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/cbc.pl", + "type": "file", + "name": "cbc.pl", + "base_name": "cbc", + "extension": ".pl", + "size": 9400, + "date": "2017-02-16", + "sha1": "e3fd53a9abd123cfdfcb5b92c3ddbc74d19629f1", + "md5": "6c3400681ae9355812b5d2f680a4731a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/ppc-xlate.pl", + "type": "file", + "name": "ppc-xlate.pl", + "base_name": "ppc-xlate", + "extension": ".pl", + "size": 7722, + "date": "2017-02-16", + "sha1": "a51d748c2810b00d3a55ce92d4ea8664c7d65ea0", + "md5": "372fe925ac4775940e0994774f92c63c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 3423, + "date": "2017-02-16", + "sha1": "8bd945ad09f03df6342be5529b8d60b37e90d7f8", + "md5": "929322c13f7c049076a23d247d712a0a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/sparcv9_modes.pl", + "type": "file", + "name": "sparcv9_modes.pl", + "base_name": "sparcv9_modes", + "extension": ".pl", + "size": 39385, + "date": "2017-02-16", + "sha1": "420e4dc636d225ef5a83fd1c0246910478a319dc", + "md5": "1e03cc1f26caf74761819e7009652452", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/x86_64-xlate.pl", + "type": "file", + "name": "x86_64-xlate.pl", + "base_name": "x86_64-xlate", + "extension": ".pl", + "size": 36990, + "date": "2017-02-16", + "sha1": "b304791482e1efa3856d86e3c1480cb1d5f42b0e", + "md5": "3527c26909b9ce3d23914274eca88470", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/x86asm.pl", + "type": "file", + "name": "x86asm.pl", + "base_name": "x86asm", + "extension": ".pl", + "size": 7447, + "date": "2017-02-16", + "sha1": "9099a512a130de06cc2f66b797910cab970e035a", + "md5": "65c34733a3d2f84cb7edebc6f1507461", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/x86gas.pl", + "type": "file", + "name": "x86gas.pl", + "base_name": "x86gas", + "extension": ".pl", + "size": 6458, + "date": "2017-02-16", + "sha1": "a151c661e288d2cafd43e9b0a8d272d6eb3b5bf5", + "md5": "5843f1bd7d266d4c998ffd17bef26c2c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/x86masm.pl", + "type": "file", + "name": "x86masm.pl", + "base_name": "x86masm", + "extension": ".pl", + "size": 4788, + "date": "2017-02-16", + "sha1": "46889eb121784ef174fbdbf4387302e9865b1725", + "md5": "d5ad57eb9916a518f16b5e6c14702522", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/perlasm/x86nasm.pl", + "type": "file", + "name": "x86nasm.pl", + "base_name": "x86nasm", + "extension": ".pl", + "size": 4515, + "date": "2017-02-16", + "sha1": "20c6ea7eb450bb61d06358016b86eaee5a4d3dc7", + "md5": "e9987cc157a110448a77e73124da4515", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12", + "type": "directory", + "name": "pkcs12", + "base_name": "pkcs12", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 0, + "size_count": 73273, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 243, + "date": "2017-02-16", + "sha1": "058e9c10e5e5e74b70fe8ad32cec508dddaa3df1", + "md5": "006fc223a9e249240c9b03bf6a343370", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_add.c", + "type": "file", + "name": "p12_add.c", + "base_name": "p12_add", + "extension": ".c", + "size": 5132, + "date": "2017-02-16", + "sha1": "1ef2c14eb4251d91c31956f5cf45ad6daae3245a", + "md5": "11f92178b1bd3cac332fc0be4dbd013a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_asn.c", + "type": "file", + "name": "p12_asn.c", + "base_name": "p12_asn", + "extension": ".c", + "size": 3080, + "date": "2017-02-16", + "sha1": "17bd0e07da3943c5a57b9c1bac51747b8d0282a1", + "md5": "82f8675ab915f7263e2da4c8cf5f92fa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_attr.c", + "type": "file", + "name": "p12_attr.c", + "base_name": "p12_attr", + "extension": ".c", + "size": 3050, + "date": "2017-02-16", + "sha1": "7e5ffbbfa20bea90bb63ab950e8b660809b99620", + "md5": "d18bb05ff3af4ae5e622dad9da172543", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_crpt.c", + "type": "file", + "name": "p12_crpt.c", + "base_name": "p12_crpt", + "extension": ".c", + "size": 2305, + "date": "2017-02-16", + "sha1": "18f2ed15aa514d35d40b70974777f42945701d37", + "md5": "455a070508b527f1baffe0ef95ae23db", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_crt.c", + "type": "file", + "name": "p12_crt.c", + "base_name": "p12_crt", + "extension": ".c", + "size": 6971, + "date": "2017-02-16", + "sha1": "9ee0f9b743203113e6e610fb6b4b497f636cf4f8", + "md5": "a5067111647ebeefb8ed70513014fe8a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_decr.c", + "type": "file", + "name": "p12_decr.c", + "base_name": "p12_decr", + "extension": ".c", + "size": 4414, + "date": "2017-02-16", + "sha1": "f7e036bbee7b284dc6ccb93d336b577743c95397", + "md5": "f2e79f1685614b370c55a6611b950cdf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_init.c", + "type": "file", + "name": "p12_init.c", + "base_name": "p12_init", + "extension": ".c", + "size": 1179, + "date": "2017-02-16", + "sha1": "338f831f05b88bced1e718749a931184bf47371c", + "md5": "6b158bb877bbb393412d1e815e8103d5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_key.c", + "type": "file", + "name": "p12_key.c", + "base_name": "p12_key", + "extension": ".c", + "size": 6017, + "date": "2017-02-16", + "sha1": "7ff634ac4026389761e5c30b06c01bee4b0c3765", + "md5": "4530d7d9827e0c8eb10c74da8f249925", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_kiss.c", + "type": "file", + "name": "p12_kiss.c", + "base_name": "p12_kiss", + "extension": ".c", + "size": 7011, + "date": "2017-02-16", + "sha1": "e28860c5815ad36ecfc704bbaee2219f0667c87a", + "md5": "efef6a5c16e00ef58ecd5574832300f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_lcl.h", + "type": "file", + "name": "p12_lcl.h", + "base_name": "p12_lcl", + "extension": ".h", + "size": 1198, + "date": "2017-02-16", + "sha1": "a2abf9b9f98bfba018fb094503befa15f30ba22d", + "md5": "c87c069fdfcf6903c4a072da72938b79", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_mutl.c", + "type": "file", + "name": "p12_mutl.c", + "base_name": "p12_mutl", + "extension": ".c", + "size": 7732, + "date": "2017-02-16", + "sha1": "ac34f213964148330dc88677aa93f96f41c395ff", + "md5": "2922de3666a4cc4dee4b1ec6c0f56dea", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_npas.c", + "type": "file", + "name": "p12_npas.c", + "base_name": "p12_npas", + "extension": ".c", + "size": 5749, + "date": "2017-02-16", + "sha1": "de7ce4ce2b5074beb369b2aa4277548b6c2b422b", + "md5": "909a6be5a80659ef65acb55603d00c22", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_p8d.c", + "type": "file", + "name": "p12_p8d.c", + "base_name": "p12_p8d", + "extension": ".c", + "size": 811, + "date": "2017-02-16", + "sha1": "b27ec296cf575029a72b817bb7d6b3b725974850", + "md5": "08dac86d03d351b9b96bb2c646b693cd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_p8e.c", + "type": "file", + "name": "p12_p8e.c", + "base_name": "p12_p8e", + "extension": ".c", + "size": 2010, + "date": "2017-02-16", + "sha1": "464a11107a906f8985cca9caf72b4b584f9172c4", + "md5": "068eb5fdd69e40bf9f3dfb20282a2bec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_sbag.c", + "type": "file", + "name": "p12_sbag.c", + "base_name": "p12_sbag", + "extension": ".c", + "size": 4857, + "date": "2017-02-16", + "sha1": "880c469e157c77047b0b876acef06ac66b6ebf0b", + "md5": "61ac251bdd27fd8a1c79725063a1a4f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/p12_utl.c", + "type": "file", + "name": "p12_utl.c", + "base_name": "p12_utl", + "extension": ".c", + "size": 7256, + "date": "2017-02-16", + "sha1": "55a74ccb2774a8fb33699d409ca00bd170a8d787", + "md5": "2b460253114806921e295cbb732947a7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs12/pk12err.c", + "type": "file", + "name": "pk12err.c", + "base_name": "pk12err", + "extension": ".c", + "size": 4258, + "date": "2017-02-16", + "sha1": "bb072f7a45c592cfb07ab53861c42cc67a80c668", + "md5": "ecbc928443e6f730d8807d1eacf5a0a3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7", + "type": "directory", + "name": "pkcs7", + "base_name": "pkcs7", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 0, + "size_count": 87587, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/bio_pk7.c", + "type": "file", + "name": "bio_pk7.c", + "base_name": "bio_pk7", + "extension": ".c", + "size": 653, + "date": "2017-02-16", + "sha1": "db00f7bdbb56c1fb0d0fc6821e3058e47095928a", + "md5": "f3b226e24e7a07f3190134bd04432512", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 152, + "date": "2017-02-16", + "sha1": "07348d1551a3d40cd291752212559825dfeb2247", + "md5": "37f86d63a3e805552e871daa66df3941", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pk7_asn1.c", + "type": "file", + "name": "pk7_asn1.c", + "base_name": "pk7_asn1", + "extension": ".c", + "size": 7525, + "date": "2017-02-16", + "sha1": "9f014d78a9c2292478babe3d181e21422f51c773", + "md5": "0f53888d58431f2bfbcd75002c9c3617", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pk7_attr.c", + "type": "file", + "name": "pk7_attr.c", + "base_name": "pk7_attr", + "extension": ".c", + "size": 3741, + "date": "2017-02-16", + "sha1": "e8ba63b1c2879b3a4d944d7a3d2e4bc872bb42a0", + "md5": "111d65992b4583e3d8e4bef28925206a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pk7_dgst.c", + "type": "file", + "name": "pk7_dgst.c", + "base_name": "pk7_dgst", + "extension": ".c", + "size": 491, + "date": "2017-02-16", + "sha1": "fcc13e4d61c33f3c68df905cab24d96cd28a2e86", + "md5": "256cc7ead5bce656206f64b0261dad87", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pk7_doit.c", + "type": "file", + "name": "pk7_doit.c", + "base_name": "pk7_doit", + "extension": ".c", + "size": 34553, + "date": "2017-02-16", + "sha1": "9a0041a784caf34f7677ae24bfe79c3af51cad52", + "md5": "061e019b476f5f0d57b277b1ec12f134", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pk7_enc.c", + "type": "file", + "name": "pk7_enc.c", + "base_name": "pk7_enc", + "extension": ".c", + "size": 738, + "date": "2017-02-16", + "sha1": "c3c27007ded720ae6dbed38865ef300825f21846", + "md5": "b8b78328189c6046e7c6bc4ad11fe59e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pk7_lib.c", + "type": "file", + "name": "pk7_lib.c", + "base_name": "pk7_lib", + "extension": ".c", + "size": 15625, + "date": "2017-02-16", + "sha1": "080b70b60b3d1b79b1f9e01563944a6a743c5700", + "md5": "4727837fe3d9f99d2d925d44b53f6f3e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pk7_mime.c", + "type": "file", + "name": "pk7_mime.c", + "base_name": "pk7_mime", + "extension": ".c", + "size": 1514, + "date": "2017-02-16", + "sha1": "23211b1eda5a761e81fa4f7f3a156f90547579e3", + "md5": "c86ab8fa200601a9af9d53d0e33dccac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pk7_smime.c", + "type": "file", + "name": "pk7_smime.c", + "base_name": "pk7_smime", + "extension": ".c", + "size": 16340, + "date": "2017-02-16", + "sha1": "cc08e24a0deed576bce5b399f368af32a0ff09ff", + "md5": "91ed5640f12caa218af8a7a375a0ab10", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/pkcs7/pkcs7err.c", + "type": "file", + "name": "pkcs7err.c", + "base_name": "pkcs7err", + "extension": ".c", + "size": 6255, + "date": "2017-02-16", + "sha1": "23bb0dfd93c1f448ee11196e8c02172639a7839f", + "md5": "03bf99ba680dcba01b075edfa97111e3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305", + "type": "directory", + "name": "poly1305", + "base_name": "poly1305", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 1, + "size_count": 284639, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 915, + "date": "2017-02-16", + "sha1": "ee36dfeed8c06450f6c8349f60fa4b7f9047a552", + "md5": "7c0a63adbeb9f0175086805477273fca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/poly1305.c", + "type": "file", + "name": "poly1305.c", + "base_name": "poly1305", + "extension": ".c", + "size": 36535, + "date": "2017-02-16", + "sha1": "ce01b26dfbe0430b87ff5dac3f2a47719894d740", + "md5": "9a9735b944f2b9ae3f517ad7ebd55b37", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/poly1305_ieee754.c", + "type": "file", + "name": "poly1305_ieee754.c", + "base_name": "poly1305_ieee754", + "extension": ".c", + "size": 13663, + "date": "2017-02-16", + "sha1": "ca94c4e5c3a4a4ec3d4e0ffa43adcd6871a5bf2a", + "md5": "99f7f413df4dca181e145fbaea9228e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 233526, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-armv4.pl", + "type": "file", + "name": "poly1305-armv4.pl", + "base_name": "poly1305-armv4", + "extension": ".pl", + "size": 29748, + "date": "2017-02-16", + "sha1": "dda8fd6ec865acbfa3641dec250d99aa7f6ec14a", + "md5": "c44329c60173e4f3640d7b9a442648cd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-armv8.pl", + "type": "file", + "name": "poly1305-armv8.pl", + "base_name": "poly1305-armv8", + "extension": ".pl", + "size": 21426, + "date": "2017-02-16", + "sha1": "9c59ae2a2274f0970800a1bb6f6a7262e778a4c2", + "md5": "e1a88fdb26fbb46981d2c4cc379ba746", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-c64xplus.pl", + "type": "file", + "name": "poly1305-c64xplus.pl", + "base_name": "poly1305-c64xplus", + "extension": ".pl", + "size": 8696, + "date": "2017-02-16", + "sha1": "de630ead18fe84e0ace789b8b7c0db7807222d60", + "md5": "cf3cc7b1d03d172460afc8d99366d7ae", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-mips.pl", + "type": "file", + "name": "poly1305-mips.pl", + "base_name": "poly1305-mips", + "extension": ".pl", + "size": 8744, + "date": "2017-02-16", + "sha1": "43271d2e01b5dee82de1eb7665cd768b0a2129e9", + "md5": "b303d863ef5b60b42513b4d77ca850d3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-ppc.pl", + "type": "file", + "name": "poly1305-ppc.pl", + "base_name": "poly1305-ppc", + "extension": ".pl", + "size": 13608, + "date": "2017-02-16", + "sha1": "f6cf8da22340b5c5132271e01ef5886b43573774", + "md5": "fba2eccf3cb63c0edcddcb12b0f7442b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-ppcfp.pl", + "type": "file", + "name": "poly1305-ppcfp.pl", + "base_name": "poly1305-ppcfp", + "extension": ".pl", + "size": 17531, + "date": "2017-02-16", + "sha1": "94a80a6f63544a425fcb58bb8655665507ed244a", + "md5": "9a36f31bf0a86a4cda3fbaaccc9ff712", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-s390x.pl", + "type": "file", + "name": "poly1305-s390x.pl", + "base_name": "poly1305-s390x", + "extension": ".pl", + "size": 4609, + "date": "2017-02-16", + "sha1": "d4eb7bf3f86c09193aa2236c9261d8dc75aa8aae", + "md5": "51b3f0adb10acc958775cea4d2de119c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-sparcv9.pl", + "type": "file", + "name": "poly1305-sparcv9.pl", + "base_name": "poly1305-sparcv9", + "extension": ".pl", + "size": 24273, + "date": "2017-02-16", + "sha1": "588c7db1f72cdc43f3262ee6f5eabdb67656f670", + "md5": "f6ef31761560da47d017650e77caa975", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-x86.pl", + "type": "file", + "name": "poly1305-x86.pl", + "base_name": "poly1305-x86", + "extension": ".pl", + "size": 51671, + "date": "2017-02-16", + "sha1": "0af5382772e74d4695d26317a69fe559087db8cd", + "md5": "c015c7ca0456d12d1b2b19142274c84e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/poly1305/asm/poly1305-x86_64.pl", + "type": "file", + "name": "poly1305-x86_64.pl", + "base_name": "poly1305-x86_64", + "extension": ".pl", + "size": 53220, + "date": "2017-02-16", + "sha1": "867700c35c2ae058e0a0edef85673e942bc8af9a", + "md5": "b45f319efe8224b41ba6006280bdec09", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand", + "type": "directory", + "name": "rand", + "base_name": "rand", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 59772, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 153, + "date": "2017-02-16", + "sha1": "41e67928f3567ee91658afd4e74e2bb24d4ba16a", + "md5": "a6d7936384da8dd9f721c1a5fe9a3245", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/md_rand.c", + "type": "file", + "name": "md_rand.c", + "base_name": "md_rand", + "extension": ".c", + "size": 18938, + "date": "2017-02-16", + "sha1": "24a41529456299ccaf4f41e92d5fb46ce6f96ac0", + "md5": "67297235ac6925e5a7849d0b6c34edf8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/rand_egd.c", + "type": "file", + "name": "rand_egd.c", + "base_name": "rand_egd", + "extension": ".c", + "size": 7122, + "date": "2017-02-16", + "sha1": "71c0875546630b460f3f6a71c48132ee16633945", + "md5": "c206d111b8c79ad7bc1fb3473f7b364f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/rand_err.c", + "type": "file", + "name": "rand_err.c", + "base_name": "rand_err", + "extension": ".c", + "size": 1102, + "date": "2017-02-16", + "sha1": "e82e67ea5d7929b575341da6fd356268fe971556", + "md5": "d7f5d1a9ea86947594b516f2c822aca8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/rand_lcl.h", + "type": "file", + "name": "rand_lcl.h", + "base_name": "rand_lcl", + "extension": ".h", + "size": 1836, + "date": "2017-02-16", + "sha1": "3638d379326cf00b422d5128382554788f981601", + "md5": "70777724039ddf9b2c9288155825e2d0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/rand_lib.c", + "type": "file", + "name": "rand_lib.c", + "base_name": "rand_lib", + "extension": ".c", + "size": 3021, + "date": "2017-02-16", + "sha1": "6f44a084203b51a650a1523269bf651ea0b2f55e", + "md5": "618e72adfbe8e210b943e6b602c87864", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/rand_unix.c", + "type": "file", + "name": "rand_unix.c", + "base_name": "rand_unix", + "extension": ".c", + "size": 9654, + "date": "2017-02-16", + "sha1": "774fda97132236720997c806c959f28257f048dd", + "md5": "943212a938d29ae63c91d2254e3b4b00", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/rand_vms.c", + "type": "file", + "name": "rand_vms.c", + "base_name": "rand_vms", + "extension": ".c", + "size": 3865, + "date": "2017-02-16", + "sha1": "c8ddaa7e430f9751babd766e1d5b472ac2c308a6", + "md5": "4f3f22b1f14a372687236b10da4a369b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by VMS Software, Inc" + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/rand_win.c", + "type": "file", + "name": "rand_win.c", + "base_name": "rand_win", + "extension": ".c", + "size": 3488, + "date": "2017-02-16", + "sha1": "6317f9f005ace589057ad61f981d286f7d99597d", + "md5": "588a5c8827efb10e5d16fdfb4895329f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rand/randfile.c", + "type": "file", + "name": "randfile.c", + "base_name": "randfile", + "extension": ".c", + "size": 10593, + "date": "2017-02-16", + "sha1": "328a680640439714d921fef5a73fc48016d19bac", + "md5": "61b9ddd60f3cf82d0d464645e984c9c8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2", + "type": "directory", + "name": "rc2", + "base_name": "rc2", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 22542, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 108, + "date": "2017-02-16", + "sha1": "eaa9ae9270654e3b146b0c77a44fe3aa17c14cc6", + "md5": "4adb567ec157843f3bccab4f05510c57", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2/rc2_cbc.c", + "type": "file", + "name": "rc2_cbc.c", + "base_name": "rc2_cbc", + "extension": ".c", + "size": 4957, + "date": "2017-02-16", + "sha1": "178728f613112f0529e09e22c15eb2ec0482f5ca", + "md5": "00fb8b740e4db82d1498a8cf6c207ccf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2/rc2_ecb.c", + "type": "file", + "name": "rc2_ecb.c", + "base_name": "rc2_ecb", + "extension": ".c", + "size": 1048, + "date": "2017-02-16", + "sha1": "20ab6340ba97458b8a7df028979d653b189a2eb4", + "md5": "eaad2da7cffb14d243819726e01b9ef6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2/rc2_locl.h", + "type": "file", + "name": "rc2_locl.h", + "base_name": "rc2_locl", + "extension": ".h", + "size": 5085, + "date": "2017-02-16", + "sha1": "a9449efe089cfe9501a44b578617781631d45156", + "md5": "79be97a4913ac746ae5f9470c3a60c27", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2/rc2_skey.c", + "type": "file", + "name": "rc2_skey.c", + "base_name": "rc2_skey", + "extension": ".c", + "size": 3565, + "date": "2017-02-16", + "sha1": "8bdb694e04d2d5d20630bdd9ae0185372fa1e069", + "md5": "b0b1b2059422f1e508fded8923fe8023", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2/rc2cfb64.c", + "type": "file", + "name": "rc2cfb64.c", + "base_name": "rc2cfb64", + "extension": ".c", + "size": 2184, + "date": "2017-02-16", + "sha1": "c797f59a53f7a6013e840bc25eb4669b79640108", + "md5": "2ccade916377a4789edecd132155baeb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2/rc2ofb64.c", + "type": "file", + "name": "rc2ofb64.c", + "base_name": "rc2ofb64", + "extension": ".c", + "size": 1620, + "date": "2017-02-16", + "sha1": "9ac6d472b2f0b119167ae435e1da1b26b65f7394", + "md5": "8742f94e853ff6dc2edc9af2a34e937e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc2/tab.c", + "type": "file", + "name": "tab.c", + "base_name": "tab", + "extension": ".c", + "size": 3975, + "date": "2017-02-16", + "sha1": "eaaffee79b5ee29f409cfff9970fa7846dd09836", + "md5": "3429a2d35f44b9cf1a0ebae28a05e76a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4", + "type": "directory", + "name": "rc4", + "base_name": "rc4", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 1, + "size_count": 89169, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 1218, + "date": "2017-02-16", + "sha1": "2ae56d1ced767822109dea612874791a92af74a9", + "md5": "1c8114a9fca1e695d6df77061d9c31b2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/rc4_enc.c", + "type": "file", + "name": "rc4_enc.c", + "base_name": "rc4_enc", + "extension": ".c", + "size": 2301, + "date": "2017-02-16", + "sha1": "e3989f33bec912571d3b22e7796dc38cd7119e64", + "md5": "852095901c5695c438cda9a386a8a46e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/rc4_locl.h", + "type": "file", + "name": "rc4_locl.h", + "base_name": "rc4_locl", + "extension": ".h", + "size": 462, + "date": "2017-02-16", + "sha1": "e161b137803b2449b5520a22820a57e21a4e7a4f", + "md5": "a9ce1ceec4744983ce2827bf85152205", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/rc4_skey.c", + "type": "file", + "name": "rc4_skey.c", + "base_name": "rc4_skey", + "extension": ".c", + "size": 1450, + "date": "2017-02-16", + "sha1": "95e144675c8b0cbfe16eff0fe1c153523d9802b5", + "md5": "e1879ea91df68a29f7ce99514b295962", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 83738, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/asm/rc4-586.pl", + "type": "file", + "name": "rc4-586.pl", + "base_name": "rc4-586", + "extension": ".pl", + "size": 12509, + "date": "2017-02-16", + "sha1": "7182f6e37dce1777dd5578e269012d55e8f11b8f", + "md5": "5868b23178396061c0221cdaeaaf8e14", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 87.8, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 87.8, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 87.8, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/asm/rc4-c64xplus.pl", + "type": "file", + "name": "rc4-c64xplus.pl", + "base_name": "rc4-c64xplus", + "extension": ".pl", + "size": 4276, + "date": "2017-02-16", + "sha1": "5ef52684554c8c4b0b1c23ca18bd2c6e6cbc325a", + "md5": "3752005e56da28cb021a8ccafe634a33", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/asm/rc4-ia64.pl", + "type": "file", + "name": "rc4-ia64.pl", + "base_name": "rc4-ia64", + "extension": ".pl", + "size": 22633, + "date": "2017-02-16", + "sha1": "17414c6d7de7c42eb145e90e7a6fd6941a83944a", + "md5": "82beab1f126875b988f8fce33f703c5e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "mit", + "score": 95.4, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 34, + "matched_rule": { + "identifier": "mit_104.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David Mosberger " + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [ + "Copyright (c) 2005 Hewlett-Packard Development Company, L.P." + ], + "holders": [ + "Hewlett-Packard Development Company, L.P." + ], + "authors": [], + "start_line": 15, + "end_line": 15 + }, + { + "statements": [ + "Copyright (c) 2005 Hewlett-Packard Development Company, L.P." + ], + "holders": [ + "Hewlett-Packard Development Company, L.P." + ], + "authors": [], + "start_line": 325, + "end_line": 326 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/asm/rc4-md5-x86_64.pl", + "type": "file", + "name": "rc4-md5-x86_64.pl", + "base_name": "rc4-md5-x86_64", + "extension": ".pl", + "size": 16497, + "date": "2017-02-16", + "sha1": "035d61eff9c6128b373d781ed2bd70c90c4a7675", + "md5": "b0425a8e08100fa028b4aef7cd059e22", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/asm/rc4-parisc.pl", + "type": "file", + "name": "rc4-parisc.pl", + "base_name": "rc4-parisc", + "extension": ".pl", + "size": 7029, + "date": "2017-02-16", + "sha1": "9a715a2411b73b6aed4a90f4a10383a2207f1762", + "md5": "95776c322fdfcab0467c267c6a62004a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/asm/rc4-s390x.pl", + "type": "file", + "name": "rc4-s390x.pl", + "base_name": "rc4-s390x", + "extension": ".pl", + "size": 4658, + "date": "2017-02-16", + "sha1": "eae9b5c5f90755c850eb7dcd00afe7eacf122e6d", + "md5": "8d67925351cbac2e6daec774f8eefd9c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc4/asm/rc4-x86_64.pl", + "type": "file", + "name": "rc4-x86_64.pl", + "base_name": "rc4-x86_64", + "extension": ".pl", + "size": 16136, + "date": "2017-02-16", + "sha1": "5fcc1e87b2b623f75b4e250039371d5b7578a44a", + "md5": "c3753d747e78cdb429a494a9cc3ad5f9", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5", + "type": "directory", + "name": "rc5", + "base_name": "rc5", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 1, + "size_count": 20120, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 260, + "date": "2017-02-16", + "sha1": "4b69cea9f5bebb4836f11c843c8891b36bda4a15", + "md5": "2b1266c35da537a45da7191bb175e6ed", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/rc5_ecb.c", + "type": "file", + "name": "rc5_ecb.c", + "base_name": "rc5_ecb", + "extension": ".c", + "size": 801, + "date": "2017-02-16", + "sha1": "de26bda32c583981bfd196ccbaf070dedefc0cfd", + "md5": "d979cb9ba1e0e57275094c9adeddb4e9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/rc5_enc.c", + "type": "file", + "name": "rc5_enc.c", + "base_name": "rc5_enc", + "extension": ".c", + "size": 4239, + "date": "2017-02-16", + "sha1": "ba418c400f54f2a0650e6a4b50bdf76964914359", + "md5": "15bd870acb514f05a2f24e211ac5d602", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/rc5_locl.h", + "type": "file", + "name": "rc5_locl.h", + "base_name": "rc5_locl", + "extension": ".h", + "size": 7044, + "date": "2017-02-16", + "sha1": "5376f793dfb2ba1f1e750f6fcd1ad52ac5024cff", + "md5": "16a5f8e822ac63c51edbb92a61457d80", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/rc5_skey.c", + "type": "file", + "name": "rc5_skey.c", + "base_name": "rc5_skey", + "extension": ".c", + "size": 1560, + "date": "2017-02-16", + "sha1": "b26bd1eb490334ff31cced237e2c6cfe73b97dd9", + "md5": "cadd0616e2eaf6397c8e576473cdc584", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/rc5cfb64.c", + "type": "file", + "name": "rc5cfb64.c", + "base_name": "rc5cfb64", + "extension": ".c", + "size": 2202, + "date": "2017-02-16", + "sha1": "698492fe7f3dc49ee4a07ab6a103ab4e7febc417", + "md5": "75fe42d80eff736ceea3f9e0b8864661", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/rc5ofb64.c", + "type": "file", + "name": "rc5ofb64.c", + "base_name": "rc5ofb64", + "extension": ".c", + "size": 1635, + "date": "2017-02-16", + "sha1": "1e5ee86ce9848eadaf92ed330d94c6bd6612c877", + "md5": "648f590c7a8aa0e8559b18c5398a4e29", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2379, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rc5/asm/rc5-586.pl", + "type": "file", + "name": "rc5-586.pl", + "base_name": "rc5-586", + "extension": ".pl", + "size": 2379, + "date": "2017-02-16", + "sha1": "ec27148acb261cc98f78dc257f1526c95c53f2c9", + "md5": "62323afbe118b6a464225a68b3c97e40", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ripemd", + "type": "directory", + "name": "ripemd", + "base_name": "ripemd", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 36056, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ripemd/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 223, + "date": "2017-02-16", + "sha1": "f39d9ef2d1e5a91e0844f6930a0bee447af09ab7", + "md5": "cbf94ffc940a52b9c6a23edc936c8db0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ripemd/rmd_dgst.c", + "type": "file", + "name": "rmd_dgst.c", + "base_name": "rmd_dgst", + "extension": ".c", + "size": 9946, + "date": "2017-02-16", + "sha1": "f9a71c60f6c02ccfcde28c31a8b126bc31355c8c", + "md5": "b8d9ff6cd95dab01da05cfb19c3fceb0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ripemd/rmd_locl.h", + "type": "file", + "name": "rmd_locl.h", + "base_name": "rmd_locl", + "extension": ".h", + "size": 2750, + "date": "2017-02-16", + "sha1": "09e4264dff06f51795b91b6c4c5c52f418121335", + "md5": "eb0fd445ba7221354b84aa76e7f806b6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ripemd/rmd_one.c", + "type": "file", + "name": "rmd_one.c", + "base_name": "rmd_one", + "extension": ".c", + "size": 816, + "date": "2017-02-16", + "sha1": "76b68c6dd5655fcdd993a8a2683ac619a1265b78", + "md5": "9eba5a059de2e7c84d00ae3d645358c4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ripemd/rmdconst.h", + "type": "file", + "name": "rmdconst.h", + "base_name": "rmdconst", + "extension": ".h", + "size": 5705, + "date": "2017-02-16", + "sha1": "65c32a03556b59e9a1977ada2a1696ca221c89f2", + "md5": "9fc2acdd63cee791dd64a33143746bef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ripemd/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 16616, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ripemd/asm/rmd-586.pl", + "type": "file", + "name": "rmd-586.pl", + "base_name": "rmd-586", + "extension": ".pl", + "size": 16616, + "date": "2017-02-16", + "sha1": "7adc1297723b0217285fcff9ad872990d9a1f8b1", + "md5": "16cf5251a4f2dc7e7bf1d4e408c60bac", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa", + "type": "directory", + "name": "rsa", + "base_name": "rsa", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 24, + "dirs_count": 0, + "size_count": 160895, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 322, + "date": "2017-02-16", + "sha1": "174d79849aa011a095285ab97f3bf457eb82c5cb", + "md5": "65d3e0efd3244de6f952decd437212c4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_ameth.c", + "type": "file", + "name": "rsa_ameth.c", + "base_name": "rsa_ameth", + "extension": ".c", + "size": 23971, + "date": "2017-02-16", + "sha1": "ef766c2badb7c084649a6f1589ac0bab182321fd", + "md5": "752815fb4c5a39df8fae92d1329d390c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_asn1.c", + "type": "file", + "name": "rsa_asn1.c", + "base_name": "rsa_asn1", + "extension": ".c", + "size": 2581, + "date": "2017-02-16", + "sha1": "329540c90b330cd0e306b76fb5685e79c4a1c890", + "md5": "da0f114d9ff88368d10aeee66b0474c5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_chk.c", + "type": "file", + "name": "rsa_chk.c", + "base_name": "rsa_chk", + "extension": ".c", + "size": 3877, + "date": "2017-02-16", + "sha1": "d086267424736acb83137dbf4a665931c42e2120", + "md5": "b958f64d34b5656e66c0dc83d052975c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_crpt.c", + "type": "file", + "name": "rsa_crpt.c", + "base_name": "rsa_crpt", + "extension": ".c", + "size": 4382, + "date": "2017-02-16", + "sha1": "7ba6643b2e9f4e572fbfe61abaaedff120504020", + "md5": "0c51f777f3d304c6707c95e4ce71f2a0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_depr.c", + "type": "file", + "name": "rsa_depr.c", + "base_name": "rsa_depr", + "extension": ".c", + "size": 1498, + "date": "2017-02-16", + "sha1": "65d25c4866c3a482283382994330c45cc827f79f", + "md5": "6f04ab9daa98ca8fd1e8c99ae499579e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_err.c", + "type": "file", + "name": "rsa_err.c", + "base_name": "rsa_err", + "extension": ".c", + "size": 9394, + "date": "2017-02-16", + "sha1": "03a3327c0b3cbba2d116c7e862e91bcb6cf7b80e", + "md5": "9bb162833772cf991688dd00e7875190", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_gen.c", + "type": "file", + "name": "rsa_gen.c", + "base_name": "rsa_gen", + "extension": ".c", + "size": 5824, + "date": "2017-02-16", + "sha1": "8de74fdd6842bdd60e021aea4b6ee051750dd4c0", + "md5": "6d335b4a57d50f943a2d5a9d1e1a99c7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_lib.c", + "type": "file", + "name": "rsa_lib.c", + "base_name": "rsa_lib", + "extension": ".c", + "size": 6703, + "date": "2017-02-16", + "sha1": "01077098e37e7986ce40170496982e7dfbecf97b", + "md5": "2e0c50e47228c5f9ee5ccd7026ee953a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_locl.h", + "type": "file", + "name": "rsa_locl.h", + "base_name": "rsa_locl", + "extension": ".h", + "size": 3587, + "date": "2017-02-16", + "sha1": "2f4123c1edd2fef6a96d29282e5de3231485dac7", + "md5": "a599ac2288dfa65abf75eff0e68a1e66", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_meth.c", + "type": "file", + "name": "rsa_meth.c", + "base_name": "rsa_meth", + "extension": ".c", + "size": 6996, + "date": "2017-02-16", + "sha1": "c4ed19ff2db7988b7fe58c12b76877a59aabbf69", + "md5": "2c5dd6f8f12ae6a06b704d7cf981f6d7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_none.c", + "type": "file", + "name": "rsa_none.c", + "base_name": "rsa_none", + "extension": ".c", + "size": 1198, + "date": "2017-02-16", + "sha1": "2ebda8df93087c3ef902a9c3e15a8328040e881b", + "md5": "980f7db19ead50658c2c30fa1ee08d9c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_null.c", + "type": "file", + "name": "rsa_null.c", + "base_name": "rsa_null", + "extension": ".c", + "size": 2959, + "date": "2017-02-16", + "sha1": "4dbffa07881bc0975e50905e6f776cc6014598e5", + "md5": "ac15e9ef0bd96858983cd791816ec7e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_oaep.c", + "type": "file", + "name": "rsa_oaep.c", + "base_name": "rsa_oaep", + "extension": ".c", + "size": 9135, + "date": "2017-02-16", + "sha1": "10ebb11e86af7491b54183e18e9af93329431d27", + "md5": "8e3059faf461700f1f6f09cbab846246", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_ossl.c", + "type": "file", + "name": "rsa_ossl.c", + "base_name": "rsa_ossl", + "extension": ".c", + "size": 23295, + "date": "2017-02-16", + "sha1": "9e3ccb7e97dbc5a37a30f1e335ac8473b4e4d27f", + "md5": "5ebbb06738b4892febd0c37d9f96368d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_pk1.c", + "type": "file", + "name": "rsa_pk1.c", + "base_name": "rsa_pk1", + "extension": ".c", + "size": 6689, + "date": "2017-02-16", + "sha1": "59b62f7d8501bede89ff5884672a09afc037c3c4", + "md5": "915dc8d16cc677bc95f1541f3a6b78c1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_pmeth.c", + "type": "file", + "name": "rsa_pmeth.c", + "base_name": "rsa_pmeth", + "extension": ".c", + "size": 20146, + "date": "2017-02-16", + "sha1": "31d435648aa0cc8f8e120c66bb8b1d4d991cc6b1", + "md5": "97e392db8a1c6f0953a2216b2f75bbf7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_prn.c", + "type": "file", + "name": "rsa_prn.c", + "base_name": "rsa_prn", + "extension": ".c", + "size": 1047, + "date": "2017-02-16", + "sha1": "0fcdc28bc660d20de1af03ff407c2a3487f7443a", + "md5": "6bbaaf5e3154694f2b892ff7de619c3f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_pss.c", + "type": "file", + "name": "rsa_pss.c", + "base_name": "rsa_pss", + "extension": ".c", + "size": 6738, + "date": "2017-02-16", + "sha1": "78b8c8864b0c0ef7f90d102ceef248531fd54756", + "md5": "06e3af1c51bc17879d66e093c0c2f3cc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_saos.c", + "type": "file", + "name": "rsa_saos.c", + "base_name": "rsa_saos", + "extension": ".c", + "size": 2749, + "date": "2017-02-16", + "sha1": "b15a755be2201fd940e6ec05a2d4a16dec423309", + "md5": "161c1af28c6bc7fa6f9d9798aa355979", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_sign.c", + "type": "file", + "name": "rsa_sign.c", + "base_name": "rsa_sign", + "extension": ".c", + "size": 7930, + "date": "2017-02-16", + "sha1": "19b0ee5d256f8b9f7a8e42fe48c1a92e6b8a18fe", + "md5": "b92c3ffcba476eb56ede1d106483d14e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_ssl.c", + "type": "file", + "name": "rsa_ssl.c", + "base_name": "rsa_ssl", + "extension": ".c", + "size": 2547, + "date": "2017-02-16", + "sha1": "271af45a99d3936b4c8a7f34b6c6c246798999d5", + "md5": "98b49fa3e8636db68fa37ce5d4daf179", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_x931.c", + "type": "file", + "name": "rsa_x931.c", + "base_name": "rsa_x931", + "extension": ".c", + "size": 2607, + "date": "2017-02-16", + "sha1": "3051e0d75afd1c69644d15f5162146119fbfb7af", + "md5": "632b2657ac38f265ebb3e7d4e633c69d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/rsa/rsa_x931g.c", + "type": "file", + "name": "rsa_x931g.c", + "base_name": "rsa_x931g", + "extension": ".c", + "size": 4720, + "date": "2017-02-16", + "sha1": "2c926970cb84c36a55def096c462ae461ef333cf", + "md5": "d1a536fb41f445c23f4f7ffc4bdd2188", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/seed", + "type": "directory", + "name": "seed", + "base_name": "seed", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 33498, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/seed/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 96, + "date": "2017-02-16", + "sha1": "e2beacf58ba2dd33737a64bd9aaaabddd611825e", + "md5": "2e0dfe778f5041e00e9b6dcdf8b7f43f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/seed/seed.c", + "type": "file", + "name": "seed.c", + "base_name": "seed", + "extension": ".c", + "size": 25911, + "date": "2017-02-16", + "sha1": "b5e7651845305b9db16eb58cc2d0efb9c8b5c65d", + "md5": "195993cdc3c4e081b05289378d4d52c1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 84.58, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 13, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-new_181.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2007" + ], + "holders": [], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/seed/seed_cbc.c", + "type": "file", + "name": "seed_cbc.c", + "base_name": "seed_cbc", + "extension": ".c", + "size": 836, + "date": "2017-02-16", + "sha1": "4f4e6bc17fcc9e78bd5c2e5dc7c8f82d93a54f32", + "md5": "83401c2e9a4e04ee03ec0e008976aa4e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/seed/seed_cfb.c", + "type": "file", + "name": "seed_cfb.c", + "base_name": "seed_cfb", + "extension": ".c", + "size": 748, + "date": "2017-02-16", + "sha1": "9f57adf9ce22edc7ef716c8d4bffc7e70d1f44a3", + "md5": "629e41749664b0f2657d5b3c2f473aaf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/seed/seed_ecb.c", + "type": "file", + "name": "seed_ecb.c", + "base_name": "seed_ecb", + "extension": ".c", + "size": 584, + "date": "2017-02-16", + "sha1": "0c28c8f40ddaf90153f82954a3dfad24ece1f078", + "md5": "4fe18e7d329d2b072ac03f2bd1d7d5c8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/seed/seed_locl.h", + "type": "file", + "name": "seed_locl.h", + "base_name": "seed_locl", + "extension": ".h", + "size": 4614, + "date": "2017-02-16", + "sha1": "f2600dbea893bf8514d71d59dc5e2c5e0c8c43fb", + "md5": "ece7258328b9b7407706a6b64409e4b5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 84.58, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 13, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-new_181.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2007" + ], + "holders": [], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/seed/seed_ofb.c", + "type": "file", + "name": "seed_ofb.c", + "base_name": "seed_ofb", + "extension": ".c", + "size": 709, + "date": "2017-02-16", + "sha1": "898fe5928c5b155acde45f4c0afd61789c61d735", + "md5": "58dba895273fee136ba78131d714c1c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha", + "type": "directory", + "name": "sha", + "base_name": "sha", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 37, + "dirs_count": 1, + "size_count": 658334, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 3043, + "date": "2017-02-16", + "sha1": "110b6d934d897064d8c206052c2a5b03ba44ba70", + "md5": "0643b9546832b4eb4316d9d13c3dfeb5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/sha1_one.c", + "type": "file", + "name": "sha1_one.c", + "base_name": "sha1_one", + "extension": ".c", + "size": 752, + "date": "2017-02-16", + "sha1": "c6c74664b6502d0c74e992007c5f9b6c5941d939", + "md5": "a1dfdd9a66a473d9865cc30ddac873cb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/sha1dgst.c", + "type": "file", + "name": "sha1dgst.c", + "base_name": "sha1dgst", + "extension": ".c", + "size": 500, + "date": "2017-02-16", + "sha1": "0dd5422267d893dc9347efbdcaf6764c208da654", + "md5": "4cbb371b1073ce4a5422e6a31a9842ed", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/sha256.c", + "type": "file", + "name": "sha256.c", + "base_name": "sha256", + "extension": ".c", + "size": 12436, + "date": "2017-02-16", + "sha1": "67a8f8e9d03f2b13fb91f444c864ccb3bf128261", + "md5": "6ca8a6c0afa8513c6a018c667e0e75d4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/sha512.c", + "type": "file", + "name": "sha512.c", + "base_name": "sha512", + "extension": ".c", + "size": 23170, + "date": "2017-02-16", + "sha1": "5705d302d23a662a42aeb003bdeafd2d67620aae", + "md5": "395acb04491cab3df4aea16dc4515531", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/sha_locl.h", + "type": "file", + "name": "sha_locl.h", + "base_name": "sha_locl", + "extension": ".h", + "size": 15590, + "date": "2017-02-16", + "sha1": "20e9e6300d6e98c023352a20ed9c3e023a78cf86", + "md5": "662494692577f84f0400875700d90a9b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Wei Dai " + ], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 31, + "dirs_count": 0, + "size_count": 602843, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-586.pl", + "type": "file", + "name": "sha1-586.pl", + "base_name": "sha1-586", + "extension": ".pl", + "size": 44372, + "date": "2017-02-16", + "sha1": "060ad5c0f048b51f3a1a2a423a212f8639412b92", + "md5": "9a25fada9b4fd5fda4b9932ea81106d8", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 87.8, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 87.8, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 87.8, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-alpha.pl", + "type": "file", + "name": "sha1-alpha.pl", + "base_name": "sha1-alpha", + "extension": ".pl", + "size": 6278, + "date": "2017-02-16", + "sha1": "781c551e7ea2fd121c1f10884be283f07b4a1900", + "md5": "e61f2f33cc33d94c0aabe618edb7186f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-armv4-large.pl", + "type": "file", + "name": "sha1-armv4-large.pl", + "base_name": "sha1-armv4-large", + "extension": ".pl", + "size": 19097, + "date": "2017-02-16", + "sha1": "1aec10c9758533ae83bf61c2fbfc2cc491d6fdf2", + "md5": "1d48b3932d25540f268dc925da8b654c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-armv8.pl", + "type": "file", + "name": "sha1-armv8.pl", + "base_name": "sha1-armv8", + "extension": ".pl", + "size": 8239, + "date": "2017-02-16", + "sha1": "dc88b81f57633455cc30e0a1499ff6120576405f", + "md5": "9515eb203a2f2dd33503ddf4145ce43b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-c64xplus.pl", + "type": "file", + "name": "sha1-c64xplus.pl", + "base_name": "sha1-c64xplus", + "extension": ".pl", + "size": 8197, + "date": "2017-02-16", + "sha1": "b51f98b271605b78538e5ffe579473a3d6f9745e", + "md5": "1711a8ee664f1e41b03022b7a8e97c9a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-ia64.pl", + "type": "file", + "name": "sha1-ia64.pl", + "base_name": "sha1-ia64", + "extension": ".pl", + "size": 9151, + "date": "2017-02-16", + "sha1": "6b5bd1778e347700dd382b70e537dfa8c13dd0c5", + "md5": "588787b13beafdc492b492a123fb8147", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-mb-x86_64.pl", + "type": "file", + "name": "sha1-mb-x86_64.pl", + "base_name": "sha1-mb-x86_64", + "extension": ".pl", + "size": 38096, + "date": "2017-02-16", + "sha1": "ebf80aad63c05d5eda6f1d4e187e82d1b4664d36", + "md5": "8d6d2f1e124aed95eb605b0d8bd99605", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-mips.pl", + "type": "file", + "name": "sha1-mips.pl", + "base_name": "sha1-mips", + "extension": ".pl", + "size": 10610, + "date": "2017-02-16", + "sha1": "b438ae7a124676ac5813af161bf56689d4d71fd9", + "md5": "c1f6d4efeaebe0cf3b217163e29db64d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-parisc.pl", + "type": "file", + "name": "sha1-parisc.pl", + "base_name": "sha1-parisc", + "extension": ".pl", + "size": 6566, + "date": "2017-02-16", + "sha1": "97000e21502b2bb06378f99c67a4d6178da7ca92", + "md5": "609158b243bfe30c12296bec8d7d4791", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-ppc.pl", + "type": "file", + "name": "sha1-ppc.pl", + "base_name": "sha1-ppc", + "extension": ".pl", + "size": 8180, + "date": "2017-02-16", + "sha1": "cc949cd36da353bd5dcd9e49ec2170f66e0de40c", + "md5": "dcd2b7087e418c3ad1d17bfac6c361c3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-s390x.pl", + "type": "file", + "name": "sha1-s390x.pl", + "base_name": "sha1-s390x", + "extension": ".pl", + "size": 5476, + "date": "2017-02-16", + "sha1": "c380a56d99521e3fdd815472edb95aef8037d7a3", + "md5": "2e6336e703538904c460d6638028ac3f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-sparcv9.pl", + "type": "file", + "name": "sha1-sparcv9.pl", + "base_name": "sha1-sparcv9", + "extension": ".pl", + "size": 9437, + "date": "2017-02-16", + "sha1": "059d8c0890b241252e2bc607e111cd1bb5ac11e4", + "md5": "045caaf1f6bf793c23bfb308688708e8", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller " + ], + "start_line": 16, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-sparcv9a.pl", + "type": "file", + "name": "sha1-sparcv9a.pl", + "base_name": "sha1-sparcv9a", + "extension": ".pl", + "size": 16523, + "date": "2017-02-16", + "sha1": "256017752bc3d83ba12dfd48e7fedc84dcdc482d", + "md5": "609b2bf09fd43c59cfcd76ebf2710b30", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-thumb.pl", + "type": "file", + "name": "sha1-thumb.pl", + "base_name": "sha1-thumb", + "extension": ".pl", + "size": 5169, + "date": "2017-02-16", + "sha1": "bad3c365efdd07c638eb06a26511bd2fbcfd8f1e", + "md5": "71dab512a8f3a092fb8b33e35f1ca878", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha1-x86_64.pl", + "type": "file", + "name": "sha1-x86_64.pl", + "base_name": "sha1-x86_64", + "extension": ".pl", + "size": 50967, + "date": "2017-02-16", + "sha1": "556447279dd6dce8b6d74d969599221b60e23fcf", + "md5": "aac1bd06de83c2196087fdf480e9c1dd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha256-586.pl", + "type": "file", + "name": "sha256-586.pl", + "base_name": "sha256-586", + "extension": ".pl", + "size": 36740, + "date": "2017-02-16", + "sha1": "ff7d6d54bc4a7faa116dbd7df21d474379b8c678", + "md5": "6f02bcbc5ca1019f6e970d08b290e923", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha256-armv4.pl", + "type": "file", + "name": "sha256-armv4.pl", + "base_name": "sha256-armv4", + "extension": ".pl", + "size": 18648, + "date": "2017-02-16", + "sha1": "82ee9c71b8510711ada1a4f1bbdd704b9f5a9f90", + "md5": "69210e67e34a2be666b4406dfb043245", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 98.78, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 98.78, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 98.78, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha256-c64xplus.pl", + "type": "file", + "name": "sha256-c64xplus.pl", + "base_name": "sha256-c64xplus", + "extension": ".pl", + "size": 8934, + "date": "2017-02-16", + "sha1": "390f08afaa1090913cd5e4e8e92b062d24a675b7", + "md5": "b29cca95457dbaf38424ab429b490046", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha256-mb-x86_64.pl", + "type": "file", + "name": "sha256-mb-x86_64.pl", + "base_name": "sha256-mb-x86_64", + "extension": ".pl", + "size": 38608, + "date": "2017-02-16", + "sha1": "c7bd00db1e2a4f36c32a3e0ade2dc658e8733936", + "md5": "176129ee9b1296ccf3a260a420d1c80d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-586.pl", + "type": "file", + "name": "sha512-586.pl", + "base_name": "sha512-586", + "extension": ".pl", + "size": 26631, + "date": "2017-02-16", + "sha1": "0a6eaf3ab01b060560bf59b165add28a1362093e", + "md5": "ae5b4f3f30179a51099bbd4b5c6be834", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-armv4.pl", + "type": "file", + "name": "sha512-armv4.pl", + "base_name": "sha512-armv4", + "extension": ".pl", + "size": 17639, + "date": "2017-02-16", + "sha1": "2bcaff014215e2a4c79f8888940f26de1763effc", + "md5": "f12a4e6d904f110792f0fde14112d67a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 98.78, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 98.78, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 98.78, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-armv8.pl", + "type": "file", + "name": "sha512-armv8.pl", + "base_name": "sha512-armv8", + "extension": ".pl", + "size": 12326, + "date": "2017-02-16", + "sha1": "873e0e5627ec886643510e5783850e9f1420342f", + "md5": "b47e5489221777fa3d18b13a79120f6a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-c64xplus.pl", + "type": "file", + "name": "sha512-c64xplus.pl", + "base_name": "sha512-c64xplus", + "extension": ".pl", + "size": 13485, + "date": "2017-02-16", + "sha1": "dc8a51845789be6a35d423a95db7656270026275", + "md5": "b4ba233ffbd335dc8bcfebf77068647d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-ia64.pl", + "type": "file", + "name": "sha512-ia64.pl", + "base_name": "sha512-ia64", + "extension": ".pl", + "size": 21416, + "date": "2017-02-16", + "sha1": "e8169e13b36840948fe753843d77737012f730d1", + "md5": "270a5418d2c9eceebad9473f2f9a6df9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-mips.pl", + "type": "file", + "name": "sha512-mips.pl", + "base_name": "sha512-mips", + "extension": ".pl", + "size": 14503, + "date": "2017-02-16", + "sha1": "348001ba269863afd1465193a6021f8591d4e630", + "md5": "65c145677a7b1e59a428e3b9b94285fe", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-parisc.pl", + "type": "file", + "name": "sha512-parisc.pl", + "base_name": "sha512-parisc", + "extension": ".pl", + "size": 21565, + "date": "2017-02-16", + "sha1": "c0906dd3346a215ddf19f081eb4dfcd898e4cd01", + "md5": "1474d0bddc84df21a7c00b843451bc4c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-ppc.pl", + "type": "file", + "name": "sha512-ppc.pl", + "base_name": "sha512-ppc", + "extension": ".pl", + "size": 21247, + "date": "2017-02-16", + "sha1": "d585b45ac45dabd1caee1c13d8889d26b5b9ade6", + "md5": "715e2412be7954dde49cf6c4df0e51cf", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-s390x.pl", + "type": "file", + "name": "sha512-s390x.pl", + "base_name": "sha512-s390x", + "extension": ".pl", + "size": 9326, + "date": "2017-02-16", + "sha1": "7207b50992919396d3ced778748ce7ed38129ba6", + "md5": "0a18501a12175fea7189c2d86daaaf8e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-sparcv9.pl", + "type": "file", + "name": "sha512-sparcv9.pl", + "base_name": "sha512-sparcv9", + "extension": ".pl", + "size": 22006, + "date": "2017-02-16", + "sha1": "074ca2f7d097c8ae49e14b7b4b4875229f7de7f5", + "md5": "39a7ab1d1ffaa3c94e7d3a72de8d0684", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller " + ], + "start_line": 16, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512-x86_64.pl", + "type": "file", + "name": "sha512-x86_64.pl", + "base_name": "sha512-x86_64", + "extension": ".pl", + "size": 61446, + "date": "2017-02-16", + "sha1": "15a4e2ccee7143a14381351092edb035f32ca391", + "md5": "6f9daa81809e02be61e0328d2e04f0da", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/sha/asm/sha512p8-ppc.pl", + "type": "file", + "name": "sha512p8-ppc.pl", + "base_name": "sha512p8-ppc", + "extension": ".pl", + "size": 11965, + "date": "2017-02-16", + "sha1": "c9e571f3749efd5931c16eda6a39fa45febdf608", + "md5": "159db1d6b08ac6674b873770a2762129", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/srp", + "type": "directory", + "name": "srp", + "base_name": "srp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 24795, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/srp/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 65, + "date": "2017-02-16", + "sha1": "994b9ec16ec11f96a1dfade472ecec8c5c837ab4", + "md5": "eaacdd82c253a8967707c431cca6227e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/srp/srp_lib.c", + "type": "file", + "name": "srp_lib.c", + "base_name": "srp_lib", + "extension": ".c", + "size": 7302, + "date": "2017-02-16", + "sha1": "624360fb75baf8f3498f6d70f7b3c66ed03bfa6c", + "md5": "b5c2f56afc2477d5a1768f97b314fe0f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/srp/srp_vfy.c", + "type": "file", + "name": "srp_vfy.c", + "base_name": "srp_vfy", + "extension": ".c", + "size": 17428, + "date": "2017-02-16", + "sha1": "fa622c0499367a7e551d935c4c7394d5dfc31b26", + "md5": "4e02508d6433c8893e72fd521f36b37a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/stack", + "type": "directory", + "name": "stack", + "base_name": "stack", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 7288, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/stack/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 53, + "date": "2017-02-16", + "sha1": "36ea84fd13fa312edabe2be3d919a26eb974a667", + "md5": "1dd03752a46a22549e45df34323e9ab0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/stack/stack.c", + "type": "file", + "name": "stack.c", + "base_name": "stack", + "extension": ".c", + "size": 7235, + "date": "2017-02-16", + "sha1": "538228f5348e47132438b1be453b657bec2c003d", + "md5": "ca1bcbeb340dcd3309559e910e85ed73", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts", + "type": "directory", + "name": "ts", + "base_name": "ts", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 0, + "size_count": 108598, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 219, + "date": "2017-02-16", + "sha1": "65db30cdcb7b8201cab73232fc93a7144bd3a96b", + "md5": "9f5224e53b84573e2736e699bb901c80", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_asn1.c", + "type": "file", + "name": "ts_asn1.c", + "base_name": "ts_asn1", + "extension": ".c", + "size": 8287, + "date": "2017-02-16", + "sha1": "56b0a96c7f208fe2975f6dede86e768e79554e07", + "md5": "8e00d62548611954b32ee3c02e733e33", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_conf.c", + "type": "file", + "name": "ts_conf.c", + "base_name": "ts_conf", + "extension": ".c", + "size": 13220, + "date": "2017-02-16", + "sha1": "375fa917f477af65c43921adad78888599ca8e9c", + "md5": "4501ca835d45cb580baa7297ff55da9d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_err.c", + "type": "file", + "name": "ts_err.c", + "base_name": "ts_err", + "extension": ".c", + "size": 7289, + "date": "2017-02-16", + "sha1": "109f8b4abf56ec33fa3d1aaac16d96a4229e4c09", + "md5": "4b7bfc129f679f514c47eb90fdd39b88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_lcl.h", + "type": "file", + "name": "ts_lcl.h", + "base_name": "ts_lcl", + "extension": ".h", + "size": 6023, + "date": "2017-02-16", + "sha1": "994ce9fa24c28fff13d901d541d9f14e32ab8102", + "md5": "33fb2ebb00ff8cf2176daa8b4c883809", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_lib.c", + "type": "file", + "name": "ts_lib.c", + "base_name": "ts_lib", + "extension": ".c", + "size": 2485, + "date": "2017-02-16", + "sha1": "6f35a320b94d7c48e429b532e782252a657b17d6", + "md5": "b6e05114298789c8ea4e73c9f1cb14fc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_req_print.c", + "type": "file", + "name": "ts_req_print.c", + "base_name": "ts_req_print", + "extension": ".c", + "size": 1297, + "date": "2017-02-16", + "sha1": "41a03c7a1ed98e069a259450d2b245bef6ddf4c8", + "md5": "4e809c3420367ba3df25615ed91f7452", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_req_utils.c", + "type": "file", + "name": "ts_req_utils.c", + "base_name": "ts_req_utils", + "extension": ".c", + "size": 4176, + "date": "2017-02-16", + "sha1": "a26b0104173b5f887d25887b737a3f82b4de1069", + "md5": "07072d39a4a607e39046e1531b0d8ff5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_rsp_print.c", + "type": "file", + "name": "ts_rsp_print.c", + "base_name": "ts_rsp_print", + "extension": ".c", + "size": 5520, + "date": "2017-02-16", + "sha1": "18bea0b0c892ad5a4e9af6cddc67c519ab83718e", + "md5": "c4019e5ed8f794c581fa00d541962426", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_rsp_sign.c", + "type": "file", + "name": "ts_rsp_sign.c", + "base_name": "ts_rsp_sign", + "extension": ".c", + "size": 28100, + "date": "2017-02-16", + "sha1": "634d45bd6729f4f63138389d7f954cb83fda2bee", + "md5": "c4af3563c916deea007fe6946ce39271", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_rsp_utils.c", + "type": "file", + "name": "ts_rsp_utils.c", + "base_name": "ts_rsp_utils", + "extension": ".c", + "size": 8518, + "date": "2017-02-16", + "sha1": "2bf7e5b9a56dca7d43c04e59f6e32c744e3a102b", + "md5": "d5dea8cea772444c807d2488c2291757", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_rsp_verify.c", + "type": "file", + "name": "ts_rsp_verify.c", + "base_name": "ts_rsp_verify", + "extension": ".c", + "size": 20031, + "date": "2017-02-16", + "sha1": "4a3063830155d4da939fe92052d0b36b0dacb10c", + "md5": "3dc6c06695e5dee13b1681099d409d2c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ts/ts_verify_ctx.c", + "type": "file", + "name": "ts_verify_ctx.c", + "base_name": "ts_verify_ctx", + "extension": ".c", + "size": 3433, + "date": "2017-02-16", + "sha1": "ad3a3a4cf2dbada7c27891ef9d9cbb0bfb6d0db8", + "md5": "870010d5735cccd1fc5a8ee886f0e144", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/txt_db", + "type": "directory", + "name": "txt_db", + "base_name": "txt_db", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 8232, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/txt_db/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 54, + "date": "2017-02-16", + "sha1": "28a30bef28fbdd657c155fc6260e2144e24d2e02", + "md5": "78b2df4c5f346cbbd90ca658c89bce4f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/txt_db/txt_db.c", + "type": "file", + "name": "txt_db.c", + "base_name": "txt_db", + "extension": ".c", + "size": 8178, + "date": "2017-02-16", + "sha1": "63d5f18d8597b02321b893737eae15805bfd1c66", + "md5": "16fafb0ec57cd2b551de1eeac3248777", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ui", + "type": "directory", + "name": "ui", + "base_name": "ui", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 49297, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ui/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 96, + "date": "2017-02-16", + "sha1": "9772986e76eda0a009993b0bf1e199ae5a0f4a0b", + "md5": "4b6f75334ce246f1a25e806dba41f905", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ui/ui_err.c", + "type": "file", + "name": "ui_err.c", + "base_name": "ui_err", + "extension": ".c", + "size": 2762, + "date": "2017-02-16", + "sha1": "23c21b89f0c68ef283e3242f85e3d72a30fe1cc0", + "md5": "eabbb63d215f05fdfbdc38e71bd90a68", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ui/ui_lib.c", + "type": "file", + "name": "ui_lib.c", + "base_name": "ui_lib", + "extension": ".c", + "size": 23349, + "date": "2017-02-16", + "sha1": "af1106afb7c4edfb3957ce729435df66246c74c8", + "md5": "e7ab6ad6eea155873baf0aebec5db7c7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ui/ui_locl.h", + "type": "file", + "name": "ui_locl.h", + "base_name": "ui_locl", + "extension": ".h", + "size": 3396, + "date": "2017-02-16", + "sha1": "77aa872225cc1df0b731c7138d890b3a9b834ef7", + "md5": "fd8921fb4ad020efc9afe6d33ec54b28", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ui/ui_openssl.c", + "type": "file", + "name": "ui_openssl.c", + "base_name": "ui_openssl", + "extension": ".c", + "size": 18426, + "date": "2017-02-16", + "sha1": "7d657e476c15664878195c13e40c423579dbfd8c", + "md5": "f7a35c37376c4a830177b4de8e7716fd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/ui/ui_util.c", + "type": "file", + "name": "ui_util.c", + "base_name": "ui_util", + "extension": ".c", + "size": 1268, + "date": "2017-02-16", + "sha1": "004cfe50c9882dec795da0555b3f39b26b0f7dd7", + "md5": "84c69b247e550e811a24a8a0fcaa3909", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/whrlpool", + "type": "directory", + "name": "whrlpool", + "base_name": "whrlpool", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 85866, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/whrlpool/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 266, + "date": "2017-02-16", + "sha1": "9c482f5c5df70d32aef8804bfa571b3178c79ded", + "md5": "d8a771520a8c415fba624c8714ce3d72", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/whrlpool/wp_block.c", + "type": "file", + "name": "wp_block.c", + "base_name": "wp_block", + "extension": ".c", + "size": 35005, + "date": "2017-02-16", + "sha1": "91cc7d1de5be50f795ac427322e542d1505444cb", + "md5": "2086bf50884ff636c2706786f0f1a3c5", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain-disclaimer", + "score": 92.56, + "short_name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 33, + "end_line": 43, + "matched_rule": { + "identifier": "public-domain-disclaimer.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/whrlpool/wp_dgst.c", + "type": "file", + "name": "wp_dgst.c", + "base_name": "wp_dgst", + "extension": ".c", + "size": 8922, + "date": "2017-02-16", + "sha1": "062dcf27aa78ce9502b5359beb4692ffc7fb12ea", + "md5": "7a52c53cb27e18971112328dbbfcb1ba", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain-disclaimer", + "score": 92.56, + "short_name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 33, + "end_line": 43, + "matched_rule": { + "identifier": "public-domain-disclaimer.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/whrlpool/wp_locl.h", + "type": "file", + "name": "wp_locl.h", + "base_name": "wp_locl", + "extension": ".h", + "size": 426, + "date": "2017-02-16", + "sha1": "98f1ffec0d81265237b467e8ef98d8b34b0132c5", + "md5": "14cbdc3132e4d4f37d24f80737acfbed", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/whrlpool/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 41247, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/whrlpool/asm/wp-mmx.pl", + "type": "file", + "name": "wp-mmx.pl", + "base_name": "wp-mmx", + "extension": ".pl", + "size": 20246, + "date": "2017-02-16", + "sha1": "47a1024ccc56d335ac453ba61fedaee13a62c030", + "md5": "135c3b289c132b8c557ff81210da7153", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/whrlpool/asm/wp-x86_64.pl", + "type": "file", + "name": "wp-x86_64.pl", + "base_name": "wp-x86_64", + "extension": ".pl", + "size": 21001, + "date": "2017-02-16", + "sha1": "8bd709ffbd81dc96e39deea1412c30705ca18829", + "md5": "55c78ebfac64c541a391c3e7ee78ee51", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509", + "type": "directory", + "name": "x509", + "base_name": "x509", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 37, + "dirs_count": 0, + "size_count": 353700, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 481, + "date": "2017-02-16", + "sha1": "56e17db7b0f69353ac1fb2349d70be1cda13a69b", + "md5": "f7bce1dd1c2062e2629bbebc7c65e268", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/by_dir.c", + "type": "file", + "name": "by_dir.c", + "base_name": "by_dir", + "extension": ".c", + "size": 11283, + "date": "2017-02-16", + "sha1": "4cfd5277eab2ba2ef8602b9cfda9122654eb750e", + "md5": "7c805466e06be76d2c470e3031507043", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/by_file.c", + "type": "file", + "name": "by_file.c", + "base_name": "by_file", + "extension": ".c", + "size": 6409, + "date": "2017-02-16", + "sha1": "e18a863a58726d9fef92aab131439262c35c3fd9", + "md5": "c087fdddcdfb69a68d076ceedc59dbbf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/t_crl.c", + "type": "file", + "name": "t_crl.c", + "base_name": "t_crl", + "extension": ".c", + "size": 2741, + "date": "2017-02-16", + "sha1": "1e47c2e69613b0af1ec6bd58c54d01b01c5dae3e", + "md5": "91e488f28f39996641caee92609575fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/t_req.c", + "type": "file", + "name": "t_req.c", + "base_name": "t_req", + "extension": ".c", + "size": 6505, + "date": "2017-02-16", + "sha1": "8e454b1585db0a9c7d81d635e5dff4de47deacd2", + "md5": "0b965b65061cf92b830d66115cd68cc7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/t_x509.c", + "type": "file", + "name": "t_x509.c", + "base_name": "t_x509", + "extension": ".c", + "size": 11165, + "date": "2017-02-16", + "sha1": "8d9b39ad1877dadb9e862355c740e2e796769b12", + "md5": "7d5d7b54e4c1a3eb4bc6f5bcbc57fcc2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_att.c", + "type": "file", + "name": "x509_att.c", + "base_name": "x509_att", + "extension": ".c", + "size": 9696, + "date": "2017-02-16", + "sha1": "d64ca6a923e77a32064c759bb751017ad133de1b", + "md5": "5c05900087beb824ab3dad1b31fd10d6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_cmp.c", + "type": "file", + "name": "x509_cmp.c", + "base_name": "x509_cmp", + "extension": ".c", + "size": 12680, + "date": "2017-02-16", + "sha1": "96c0628f14c74df7f9f941d11a61a00cd1f0e9f3", + "md5": "693ff6c2126ee27e992fe233a9883d9e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_d2.c", + "type": "file", + "name": "x509_d2.c", + "base_name": "x509_d2", + "extension": ".c", + "size": 1640, + "date": "2017-02-16", + "sha1": "52001e002e84e72c0ec3eb563498b29db84b2d5d", + "md5": "04718ff72fbb8668a5a0ce7acde50dd7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_def.c", + "type": "file", + "name": "x509_def.c", + "base_name": "x509_def", + "extension": ".c", + "size": 928, + "date": "2017-02-16", + "sha1": "8d7e1d2bfa50135e68e67aece73133264bf94a4f", + "md5": "c9cc9839636eec495d2ceb8f35fe37b5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_err.c", + "type": "file", + "name": "x509_err.c", + "base_name": "x509_err", + "extension": ".c", + "size": 6795, + "date": "2017-02-16", + "sha1": "fbca81a56bf292a29b194120dde9b6d8a05b1acb", + "md5": "e3e04e91ac4b72e9eec5680279ad0ffe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_ext.c", + "type": "file", + "name": "x509_ext.c", + "base_name": "x509_ext", + "extension": ".c", + "size": 4516, + "date": "2017-02-16", + "sha1": "67787f9d03a37eae58591aaea9ab47adf7de0be4", + "md5": "5dc434a302be24d3ee8de99cbf69d3d2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_lcl.h", + "type": "file", + "name": "x509_lcl.h", + "base_name": "x509_lcl", + "extension": ".h", + "size": 5766, + "date": "2017-02-16", + "sha1": "4862cc021cacfe0583c390905d5c01f681b39b7a", + "md5": "5a6799d110a155e67cf55cf8851e58c5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_lu.c", + "type": "file", + "name": "x509_lu.c", + "base_name": "x509_lu", + "extension": ".c", + "size": 22397, + "date": "2017-02-16", + "sha1": "7ccd11c3d5ec2c24d24e94b26fb251c367beec00", + "md5": "0582fba88bdbf75c6c392fbe398bbd6b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_obj.c", + "type": "file", + "name": "x509_obj.c", + "base_name": "x509_obj", + "extension": ".c", + "size": 5108, + "date": "2017-02-16", + "sha1": "7ab7cd448bb007cb168ee1b881daa0b21189ae98", + "md5": "1157a069942687d0172f0e2596531ee3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_r2x.c", + "type": "file", + "name": "x509_r2x.c", + "base_name": "x509_r2x", + "extension": ".c", + "size": 1832, + "date": "2017-02-16", + "sha1": "534344f619d25eecaea64d5e8cbe3f8b19e63cb3", + "md5": "107eea689de620581b4b68468ce87449", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_req.c", + "type": "file", + "name": "x509_req.c", + "base_name": "x509_req", + "extension": ".c", + "size": 7746, + "date": "2017-02-16", + "sha1": "59450d332a12b94401701128331e526380875cd4", + "md5": "aa56023a13915a4055ab5c7e22cc2aa4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_set.c", + "type": "file", + "name": "x509_set.c", + "base_name": "x509_set", + "extension": ".c", + "size": 3569, + "date": "2017-02-16", + "sha1": "65acaa4ac0d6ace53890183b138edaa6d63d6a4c", + "md5": "6f4e3a36d2997dcc779bf4ffafd3c117", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_trs.c", + "type": "file", + "name": "x509_trs.c", + "base_name": "x509_trs", + "extension": ".c", + "size": 8936, + "date": "2017-02-16", + "sha1": "99eb1cbe38f59f5176eafb7677e5ff3186c36329", + "md5": "9a2453df94fd9cedfc1d79d3b0158ffc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_txt.c", + "type": "file", + "name": "x509_txt.c", + "base_name": "x509_txt", + "extension": ".c", + "size": 7875, + "date": "2017-02-16", + "sha1": "05f7fcbc173052ecd576b9664b7767811a53a06e", + "md5": "da24a09e5f85759af0fa76e3213c965e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_v3.c", + "type": "file", + "name": "x509_v3.c", + "base_name": "x509_v3", + "extension": ".c", + "size": 5862, + "date": "2017-02-16", + "sha1": "a51ee0f864f25f94a3bcedec2d7aea8cc76a8fbc", + "md5": "1cf574b27b18d893575a3220100630b9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_vfy.c", + "type": "file", + "name": "x509_vfy.c", + "base_name": "x509_vfy", + "extension": ".c", + "size": 103705, + "date": "2017-02-16", + "sha1": "e31b1d573ce0bbd54129510a6f7db94d9b1410ed", + "md5": "089e942458430844cd054326a877520f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509_vpm.c", + "type": "file", + "name": "x509_vpm.c", + "base_name": "x509_vpm", + "extension": ".c", + "size": 17651, + "date": "2017-02-16", + "sha1": "89c52430af639af21ff4148ed825ef924c0a4603", + "md5": "e98b6519dc88db09d9d074163b3dbdc9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509cset.c", + "type": "file", + "name": "x509cset.c", + "base_name": "x509cset", + "extension": ".c", + "size": 4125, + "date": "2017-02-16", + "sha1": "22d66f715ebe9d8cf264fc4bb33e036f2b5d2bf7", + "md5": "2f25161b0dae6b8d8dfae735269a4903", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509name.c", + "type": "file", + "name": "x509name.c", + "base_name": "x509name", + "extension": ".c", + "size": 10163, + "date": "2017-02-16", + "sha1": "07a5f2410616dda151dabcc5d1074b95d6334706", + "md5": "5597cb0de2a8fa21dd48315230de7e71", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509rset.c", + "type": "file", + "name": "x509rset.c", + "base_name": "x509rset", + "extension": ".c", + "size": 1094, + "date": "2017-02-16", + "sha1": "7e317a2fdd2b290968227535d2b5832441e2b9a9", + "md5": "355dcf2be206af93a316f64aa466be17", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509spki.c", + "type": "file", + "name": "x509spki.c", + "base_name": "x509spki", + "extension": ".c", + "size": 2228, + "date": "2017-02-16", + "sha1": "e57eb629ce6ab0910eb9887ce98e4d0b3d1c094d", + "md5": "ed3462c29b99b2554d83fcd647c8fa02", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x509type.c", + "type": "file", + "name": "x509type.c", + "base_name": "x509type", + "extension": ".c", + "size": 1839, + "date": "2017-02-16", + "sha1": "e563dd177111158407c7a947e208a0f802579a49", + "md5": "0dd851f462603b8f33cd42634104e15a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_all.c", + "type": "file", + "name": "x_all.c", + "base_name": "x_all", + "extension": ".c", + "size": 14026, + "date": "2017-02-16", + "sha1": "993f423bcbfb305fecf9b0e1a1b47183b2bed93c", + "md5": "4fe86cebebd6ff8aebfcb6c74b060de2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_attrib.c", + "type": "file", + "name": "x_attrib.c", + "base_name": "x_attrib", + "extension": ".c", + "size": 1455, + "date": "2017-02-16", + "sha1": "cd8baf8f67bb5feff7b195316a0482850abe5242", + "md5": "a707b25184d5b9af5fa6b377cdb63b39", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_crl.c", + "type": "file", + "name": "x_crl.c", + "base_name": "x_crl", + "extension": ".c", + "size": 14043, + "date": "2017-02-16", + "sha1": "e430ef411cded355543bc796f39ce0d45ff6ef3d", + "md5": "8eedca29b725278fe9d9984b93d3c465", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_exten.c", + "type": "file", + "name": "x_exten.c", + "base_name": "x_exten", + "extension": ".c", + "size": 1040, + "date": "2017-02-16", + "sha1": "3762144ca62e4785bdf2ed1bd40d030a12958402", + "md5": "8ef266fb1b3a951b4f14367aa4b94de9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_name.c", + "type": "file", + "name": "x_name.c", + "base_name": "x_name", + "extension": ".c", + "size": 16021, + "date": "2017-02-16", + "sha1": "a4c5d1bbd4d36b7e544e6abe1866a09da6122d01", + "md5": "b278ef8ddd22b14661c2b44f4f85d804", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_pubkey.c", + "type": "file", + "name": "x_pubkey.c", + "base_name": "x_pubkey", + "extension": ".c", + "size": 9280, + "date": "2017-02-16", + "sha1": "89b0814ec9b8d54af92f8b25b256d75ce6a818e4", + "md5": "28206502f8c4c5c814d91416a18f9d71", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_req.c", + "type": "file", + "name": "x_req.c", + "base_name": "x_req", + "extension": ".c", + "size": 2346, + "date": "2017-02-16", + "sha1": "faff9ac566f683239558dbce1bda28375fc25515", + "md5": "b2c31998da0d1423828aa2a94c841d04", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_x509.c", + "type": "file", + "name": "x_x509.c", + "base_name": "x_x509", + "extension": ".c", + "size": 6375, + "date": "2017-02-16", + "sha1": "4a976100654f60e4f2c17060020b7b4321f7af70", + "md5": "e10e4f860d025c81b86978f20488f894", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509/x_x509a.c", + "type": "file", + "name": "x_x509a.c", + "base_name": "x_x509a", + "extension": ".c", + "size": 4379, + "date": "2017-02-16", + "sha1": "afbe2b5909ce312b3560150415391fa390077273", + "md5": "80d44cfdcf251891ae55c8a091a59238", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3", + "type": "directory", + "name": "x509v3", + "base_name": "x509v3", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 42, + "dirs_count": 0, + "size_count": 349381, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 433, + "date": "2017-02-16", + "sha1": "c72e1c902e669e5b30110b81460067b19ec15945", + "md5": "ab3ca1c300447642dfb88b4dc464f223", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/ext_dat.h", + "type": "file", + "name": "ext_dat.h", + "base_name": "ext_dat", + "extension": ".h", + "size": 1291, + "date": "2017-02-16", + "sha1": "206b82396547de00ca29f5d961eb417f6766c692", + "md5": "da821b39fb8a69d9e3364ad9059c68c1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/pcy_cache.c", + "type": "file", + "name": "pcy_cache.c", + "base_name": "pcy_cache", + "extension": ".c", + "size": 6091, + "date": "2017-02-16", + "sha1": "c2ea63fd7a80956ce16288cfebe16720a4daa3b0", + "md5": "27a84086cd689ab1c13d6a5a5dc576be", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/pcy_data.c", + "type": "file", + "name": "pcy_data.c", + "base_name": "pcy_data", + "extension": ".c", + "size": 2123, + "date": "2017-02-16", + "sha1": "ba84e30cea3ad83c42ebf07111f33b0f9fe30fb9", + "md5": "1239b1ab26e829e022210feee112424e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/pcy_int.h", + "type": "file", + "name": "pcy_int.h", + "base_name": "pcy_int", + "extension": ".h", + "size": 5083, + "date": "2017-02-16", + "sha1": "ccf21dad344c3b9216964b79a899a6ceacdb06dc", + "md5": "2204a857c30de4234a8a6b4875c958ad", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/pcy_lib.c", + "type": "file", + "name": "pcy_lib.c", + "base_name": "pcy_lib", + "extension": ".c", + "size": 2775, + "date": "2017-02-16", + "sha1": "71259470ac4b84914f135e4979de54fbc77d7119", + "md5": "3d7098066fe6cf2f595d4f071be025ed", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/pcy_map.c", + "type": "file", + "name": "pcy_map.c", + "base_name": "pcy_map", + "extension": ".c", + "size": 2648, + "date": "2017-02-16", + "sha1": "cf33b014c44779e03c24b2bbce6d279c947def82", + "md5": "4107cc6c3ee3e5de4b214933f49f1c4b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/pcy_node.c", + "type": "file", + "name": "pcy_node.c", + "base_name": "pcy_node", + "extension": ".c", + "size": 3753, + "date": "2017-02-16", + "sha1": "2e47175c7db383f23c4530bc2528f749657175d3", + "md5": "bcd8d60a4ad1d7f901b281e406230852", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/pcy_tree.c", + "type": "file", + "name": "pcy_tree.c", + "base_name": "pcy_tree", + "extension": ".c", + "size": 22212, + "date": "2017-02-16", + "sha1": "026299e8ea128a5342de19a1c9bceefb0e992ccd", + "md5": "b73b7770ad45aa7c41a06b30a858698d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/tabtest.c", + "type": "file", + "name": "tabtest.c", + "base_name": "tabtest", + "extension": ".c", + "size": 1192, + "date": "2017-02-16", + "sha1": "072d2248c238d8e08ab3e04b6494611be574b195", + "md5": "c57f5c736d3e3cb91e212fc5c3687bb4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_addr.c", + "type": "file", + "name": "v3_addr.c", + "base_name": "v3_addr", + "extension": ".c", + "size": 41172, + "date": "2017-02-16", + "sha1": "5114afad736f736e2f4553d33a3410d9195ff688", + "md5": "ed0592e532689a1599f10cd6ebe654d6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_akey.c", + "type": "file", + "name": "v3_akey.c", + "base_name": "v3_akey", + "extension": ".c", + "size": 5278, + "date": "2017-02-16", + "sha1": "a33bbdb19f443c06cd50e29cef21f11b1978fab4", + "md5": "253d17ab61073b2408848bf24788d305", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_akeya.c", + "type": "file", + "name": "v3_akeya.c", + "base_name": "v3_akeya", + "extension": ".c", + "size": 814, + "date": "2017-02-16", + "sha1": "9da32b240af3c0ef79ce416d1e403f65dc2e9def", + "md5": "853e701178437961a31ef8a20835ccaa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_alt.c", + "type": "file", + "name": "v3_alt.c", + "base_name": "v3_alt", + "extension": ".c", + "size": 16157, + "date": "2017-02-16", + "sha1": "e0384004942e646722a1180e343af2132b49c6dd", + "md5": "d12cfaa16688f00abc1c4db27556576d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_asid.c", + "type": "file", + "name": "v3_asid.c", + "base_name": "v3_asid", + "extension": ".c", + "size": 26076, + "date": "2017-02-16", + "sha1": "ade0161f2cbd47d34c6183e8e435cbf6b44cb09c", + "md5": "ff075cfe1647a834e6ac8fe02844e3ae", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_bcons.c", + "type": "file", + "name": "v3_bcons.c", + "base_name": "v3_bcons", + "extension": ".c", + "size": 2994, + "date": "2017-02-16", + "sha1": "863a89807f2b41f449b6ed1df6008fe1b8915530", + "md5": "7d53369d4ab316346ae4ff8f58e45e60", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_bitst.c", + "type": "file", + "name": "v3_bitst.c", + "base_name": "v3_bitst", + "extension": ".c", + "size": 3171, + "date": "2017-02-16", + "sha1": "11a941d94e2a61399e036a035de4b853527b2b36", + "md5": "b49f6e2c1cfc7d57a2399af05a8cf499", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_conf.c", + "type": "file", + "name": "v3_conf.c", + "base_name": "v3_conf", + "extension": ".c", + "size": 15250, + "date": "2017-02-16", + "sha1": "1394d09200c3fd513bff6ec2d1502278d2f1fa26", + "md5": "0aeea84ae6c47a03969fb3b377077aee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_cpols.c", + "type": "file", + "name": "v3_cpols.c", + "base_name": "v3_cpols", + "extension": ".c", + "size": 14703, + "date": "2017-02-16", + "sha1": "8d1a1eec7c1cdbd7b791335ae916e127cb2e03a7", + "md5": "96419cb7c3b897b818170111b215359a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_crld.c", + "type": "file", + "name": "v3_crld.c", + "base_name": "v3_crld", + "extension": ".c", + "size": 15522, + "date": "2017-02-16", + "sha1": "3706985b76ae97b92658dbc460d71ab72233ff82", + "md5": "bec413f8ec4af7ab69ca8a199d1a3340", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_enum.c", + "type": "file", + "name": "v3_enum.c", + "base_name": "v3_enum", + "extension": ".c", + "size": 1830, + "date": "2017-02-16", + "sha1": "96d8da079212f917c0df1ef848dd1fd1e626f3db", + "md5": "fa327096d9eb08ca3c85a0b1840d41c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_extku.c", + "type": "file", + "name": "v3_extku.c", + "base_name": "v3_extku", + "extension": ".c", + "size": 3195, + "date": "2017-02-16", + "sha1": "34141a91c26d701d1e53c191359b1ba0fa8277e7", + "md5": "5167fd89fd10884c5a22e35aff34c4d8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_genn.c", + "type": "file", + "name": "v3_genn.c", + "base_name": "v3_genn", + "extension": ".c", + "size": 5186, + "date": "2017-02-16", + "sha1": "57fbb4be97eaff55a08e997e1f4ea7c3619a3571", + "md5": "2daba7fb80b1e7fe56d05ea6cca77fae", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_ia5.c", + "type": "file", + "name": "v3_ia5.c", + "base_name": "v3_ia5", + "extension": ".c", + "size": 1980, + "date": "2017-02-16", + "sha1": "9037c6e7a7a8783d6a2ff021b2a3775901561e33", + "md5": "42107d57b62e7f66b2a486b835cd1efb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_info.c", + "type": "file", + "name": "v3_info.c", + "base_name": "v3_info", + "extension": ".c", + "size": 5599, + "date": "2017-02-16", + "sha1": "36bfd5c3ade4530ca9ee7b8928760c6b61ad810d", + "md5": "6c5f2c86ea401ba8d014cb3bb092c959", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_int.c", + "type": "file", + "name": "v3_int.c", + "base_name": "v3_int", + "extension": ".c", + "size": 1165, + "date": "2017-02-16", + "sha1": "316f6b5fc7221d27542db151d50261721464cce8", + "md5": "af2c7c5ef1a410016cfb4b4f4809cd76", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_lib.c", + "type": "file", + "name": "v3_lib.c", + "base_name": "v3_lib", + "extension": ".c", + "size": 9510, + "date": "2017-02-16", + "sha1": "5b519f76c7274d16b38efacd729e5b23d88286d7", + "md5": "d7861db483f8b05be16b371c0a9b146b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_ncons.c", + "type": "file", + "name": "v3_ncons.c", + "base_name": "v3_ncons", + "extension": ".c", + "size": 15713, + "date": "2017-02-16", + "sha1": "a27b44b124bc2379acfcda26a6892dd8d17168cf", + "md5": "1ab735bc9da24aecc1c7c4a4ad324fb8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_pci.c", + "type": "file", + "name": "v3_pci.c", + "base_name": "v3_pci", + "extension": ".c", + "size": 11632, + "date": "2017-02-16", + "sha1": "0bf8314a100054d518ba0f5bea9a9cbecabd0506", + "md5": "200a1fa5e00bd7edadecfafc7942ee46", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 14, + "end_line": 39, + "matched_rule": { + "identifier": "bsd-new_151.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)." + ], + "holders": [ + "Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)." + ], + "authors": [], + "start_line": 10, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_pcia.c", + "type": "file", + "name": "v3_pcia.c", + "base_name": "v3_pcia", + "extension": ".c", + "size": 2591, + "date": "2017-02-16", + "sha1": "f6fe1f3545653dbca55bcb4534a25bb1e8926d1d", + "md5": "bf02f7d6170a9e41573aab04ecaef3b0", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 14, + "end_line": 39, + "matched_rule": { + "identifier": "bsd-new_151.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)." + ], + "holders": [ + "Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)." + ], + "authors": [], + "start_line": 10, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_pcons.c", + "type": "file", + "name": "v3_pcons.c", + "base_name": "v3_pcons", + "extension": ".c", + "size": 3280, + "date": "2017-02-16", + "sha1": "80b4e30427523be9c2c938fe586e21b08f544baf", + "md5": "ec3459c8a158fe7e420c31ee1b098b3b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_pku.c", + "type": "file", + "name": "v3_pku.c", + "base_name": "v3_pku", + "extension": ".c", + "size": 2023, + "date": "2017-02-16", + "sha1": "fa7f54f806857649961abb61a52631e42756e3c0", + "md5": "c20ddd2e9278fe807bdd5a96abca97a1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_pmaps.c", + "type": "file", + "name": "v3_pmaps.c", + "base_name": "v3_pmaps", + "extension": ".c", + "size": 3768, + "date": "2017-02-16", + "sha1": "83ae0ce508a18f298898143cfd66687187dee7f8", + "md5": "9a0ebadfd59f677d8810d6ace0ef0bf1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_prn.c", + "type": "file", + "name": "v3_prn.c", + "base_name": "v3_prn", + "extension": ".c", + "size": 6043, + "date": "2017-02-16", + "sha1": "8938f2030f8a36717524f8f4e0a14b78e6f9662f", + "md5": "16ec781df201e9b2b237bda60d37dea3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_purp.c", + "type": "file", + "name": "v3_purp.c", + "base_name": "v3_purp", + "extension": ".c", + "size": 26027, + "date": "2017-02-16", + "sha1": "3d6e3edb17515568ac4fd6c79ffd8f516a8111fb", + "md5": "2fcd166e971194dc3990a66356115768", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_skey.c", + "type": "file", + "name": "v3_skey.c", + "base_name": "v3_skey", + "extension": ".c", + "size": 2888, + "date": "2017-02-16", + "sha1": "16d8a8c7d0276796746392f2e485b4afae976c93", + "md5": "08a22d1f3800dfac584ec20747211ec3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_sxnet.c", + "type": "file", + "name": "v3_sxnet.c", + "base_name": "v3_sxnet", + "extension": ".c", + "size": 6129, + "date": "2017-02-16", + "sha1": "edd32a411e5198046e9a8f23f5c6b07758e1181c", + "md5": "7fe0dde80c77e830c8bdc6bf1ca3a725", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_tlsf.c", + "type": "file", + "name": "v3_tlsf.c", + "base_name": "v3_tlsf", + "extension": ".c", + "size": 4359, + "date": "2017-02-16", + "sha1": "f52de338d056a1de2dc3486560d687c316b6319f", + "md5": "bb3e3a7f929919b4c53e42b7d6ebbf6c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3_utl.c", + "type": "file", + "name": "v3_utl.c", + "base_name": "v3_utl", + "extension": ".c", + "size": 34413, + "date": "2017-02-16", + "sha1": "79e4eaeccd1996960a6486d89d9a21d3d11ef0b6", + "md5": "863ea4337837006a933c28e4b7301843", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3conf.c", + "type": "file", + "name": "v3conf.c", + "base_name": "v3conf", + "extension": ".c", + "size": 2159, + "date": "2017-02-16", + "sha1": "eea6a6e4b5104e8774fc24887b17f4a59b59e98d", + "md5": "15ab5bffa163f9dd02a245ba9216be07", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3err.c", + "type": "file", + "name": "v3err.c", + "base_name": "v3err", + "extension": ".c", + "size": 9748, + "date": "2017-02-16", + "sha1": "30e11402e53e6217d5b316aa8894fd52ddc1993b", + "md5": "28511936d0a7edd13efc8a61b328cf59", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/crypto/x509v3/v3prin.c", + "type": "file", + "name": "v3prin.c", + "base_name": "v3prin", + "extension": ".c", + "size": 1405, + "date": "2017-02-16", + "sha1": "fdf275785a785e93c79fc6d2ddede403f49c16d4", + "md5": "72f5b3b7c76acf6e6efa9725b6ca8f74", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos", + "type": "directory", + "name": "demos", + "base_name": "demos", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 65, + "dirs_count": 7, + "size_count": 107488, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 267, + "date": "2017-02-16", + "sha1": "a75a2c08e342e16c50995123d093bb71370778d9", + "md5": "5222fca0729b5f7dc58d16a470b1122c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "ActionScript 3", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio", + "type": "directory", + "name": "bio", + "base_name": "bio", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 19, + "dirs_count": 0, + "size_count": 35385, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/accept.cnf", + "type": "file", + "name": "accept.cnf", + "base_name": "accept", + "extension": ".cnf", + "size": 401, + "date": "2017-02-16", + "sha1": "92d5e8da710fbcf3b78aa3558842b7e14b7729ec", + "md5": "c2c38f08614fdb3e6a5cb6244e43c5a1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/client-arg.c", + "type": "file", + "name": "client-arg.c", + "base_name": "client-arg", + "extension": ".c", + "size": 3241, + "date": "2017-02-16", + "sha1": "8556d59f24235e15321bb0aa30185ec541d4aa18", + "md5": "37ee8bac4307d6fca8aac04846ed9bf3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/client-conf.c", + "type": "file", + "name": "client-conf.c", + "base_name": "client-conf", + "extension": ".c", + "size": 3462, + "date": "2017-02-16", + "sha1": "a6ed22d569abeeebcd1b80b84cd4b45ae802f2e0", + "md5": "4c1379ad5055d5c435c5921eaa6c6a58", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/cmod.cnf", + "type": "file", + "name": "cmod.cnf", + "base_name": "cmod", + "extension": ".cnf", + "size": 537, + "date": "2017-02-16", + "sha1": "6aec6ba73f56b642491676c204f315af0c47cd62", + "md5": "214919fafdf2f7aef287211bfdd8c535", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/connect.cnf", + "type": "file", + "name": "connect.cnf", + "base_name": "connect", + "extension": ".cnf", + "size": 285, + "date": "2017-02-16", + "sha1": "03fcca707af34de2234c87a8cf16c0c81f9026cf", + "md5": "e29c6ef1cc3aaa3adb38c94d402a3d75", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/descrip.mms", + "type": "file", + "name": "descrip.mms", + "base_name": "descrip", + "extension": ".mms", + "size": 1313, + "date": "2017-02-16", + "sha1": "cf1454870a5911cc7f3e3de28a7dc5fa75c838a5", + "md5": "62650249474b2e0ec15fb6ddbc786e82", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/intca.pem", + "type": "file", + "name": "intca.pem", + "base_name": "intca", + "extension": ".pem", + "size": 1359, + "date": "2017-02-16", + "sha1": "19b38c858cda4752028a0c29b1be9f5ea7d39fd3", + "md5": "17ee3a1c13e9fde466ac52d95f24d5d5", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/Makefile", + "type": "file", + "name": "Makefile", + "base_name": "Makefile", + "extension": "", + "size": 975, + "date": "2017-02-16", + "sha1": "7169d026c9411b4cde819ad304a3683814299a0b", + "md5": "346349423c290a107c1203597db92481", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 255, + "date": "2017-02-16", + "sha1": "e99423571acd14bded922c241cc64d1276eca28f", + "md5": "122e33f4f1108ca3b53fd228a7696a9e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/root.pem", + "type": "file", + "name": "root.pem", + "base_name": "root", + "extension": ".pem", + "size": 1346, + "date": "2017-02-16", + "sha1": "dbc4396d4631b81d1be9ddd286ee8b00b45fafb7", + "md5": "3f98151b06f2d4cd99f37bc3cc7b742e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/saccept.c", + "type": "file", + "name": "saccept.c", + "base_name": "saccept", + "extension": ".c", + "size": 2935, + "date": "2017-02-16", + "sha1": "af45d08db0cfa578e4ad68f356e049a026809412", + "md5": "3ae2c01bb73841bd788c301afd4bba7e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/sconnect.c", + "type": "file", + "name": "sconnect.c", + "base_name": "sconnect", + "extension": ".c", + "size": 3131, + "date": "2017-02-16", + "sha1": "83ce066b1fe23fada74f832a89985b6fb1421fe5", + "md5": "b8b9e294557bfa9d32c76cf4e9aeec8a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/server-arg.c", + "type": "file", + "name": "server-arg.c", + "base_name": "server-arg", + "extension": ".c", + "size": 4099, + "date": "2017-02-16", + "sha1": "2b34208a99e447c281a13edf8b10e4e75a7274a9", + "md5": "d83de02a57a38afd0d2c1cd9f524cfca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/server-cmod.c", + "type": "file", + "name": "server-cmod.c", + "base_name": "server-cmod", + "extension": ".c", + "size": 2448, + "date": "2017-02-16", + "sha1": "9665dcbfe7adced1b6a03adcdeb5133873262b30", + "md5": "422003f3ab95b7d31bc215a49dbde509", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/server-conf.c", + "type": "file", + "name": "server-conf.c", + "base_name": "server-conf", + "extension": ".c", + "size": 3828, + "date": "2017-02-16", + "sha1": "d5745210906f95ccb6efa1462459996d439ac7c7", + "md5": "d97382f3e6a1d65a6ad84a7a897d0dc1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/server-ec.pem", + "type": "file", + "name": "server-ec.pem", + "base_name": "server-ec", + "extension": ".pem", + "size": 889, + "date": "2017-02-16", + "sha1": "92f49cdcacc821b3dce71684f30a66f083cdf040", + "md5": "02cb90c7a9104d7dfaec5068edd678bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/server.pem", + "type": "file", + "name": "server.pem", + "base_name": "server", + "extension": ".pem", + "size": 4799, + "date": "2017-02-16", + "sha1": "fe88dcba1740f5e4044dfe70027e2d1d3c2c2ce1", + "md5": "4360c28f98b2c959abe293e956762927", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/shared.opt", + "type": "file", + "name": "shared.opt", + "base_name": "shared", + "extension": ".opt", + "size": 47, + "date": "2017-02-16", + "sha1": "5c921cc4ac884f3794c3825033c1744cb8e9670c", + "md5": "25b2a39386bdffdc253dbe95243fa502", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/bio/static.opt", + "type": "file", + "name": "static.opt", + "base_name": "static", + "extension": ".opt", + "size": 35, + "date": "2017-02-16", + "sha1": "55ee6c7780e111a256ba2d7a73ed0c687666aafe", + "md5": "a91856026c4b334ca89a5a19f6ebb802", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs", + "type": "directory", + "name": "certs", + "base_name": "certs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 1, + "size_count": 21349, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/ca.cnf", + "type": "file", + "name": "ca.cnf", + "base_name": "ca", + "extension": ".cnf", + "size": 2246, + "date": "2017-02-16", + "sha1": "18b6a95188937bf162db1d70bd1179435c4a11b6", + "md5": "560b3a727bd4160ff1965e151431a40e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/mkcerts.sh", + "type": "file", + "name": "mkcerts.sh", + "base_name": "mkcerts", + "extension": ".sh", + "size": 3889, + "date": "2017-02-16", + "sha1": "5538a19a1964d99775694bed7edf322b618681b0", + "md5": "55bd086b8059f031e765cc994e7c1b12", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/ocspquery.sh", + "type": "file", + "name": "ocspquery.sh", + "base_name": "ocspquery", + "extension": ".sh", + "size": 798, + "date": "2017-02-16", + "sha1": "abdbfadeea1e2cb471b9e03e433f1e84f4743dfb", + "md5": "692fea99593accca27516e5cbb65781e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/ocsprun.sh", + "type": "file", + "name": "ocsprun.sh", + "base_name": "ocsprun", + "extension": ".sh", + "size": 392, + "date": "2017-02-16", + "sha1": "ec758e17d24493f894504eb78393337a5bb4827a", + "md5": "98fc053c089f6cf302d66c84e90003f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 860, + "date": "2017-02-16", + "sha1": "2b7f34b20c88aaa356593a058b2ac460981b6200", + "md5": "9c9f8b16be52599d79d65e72023c5c0d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps", + "type": "directory", + "name": "apps", + "base_name": "apps", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 13164, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps/apps.cnf", + "type": "file", + "name": "apps.cnf", + "base_name": "apps", + "extension": ".cnf", + "size": 1794, + "date": "2017-02-16", + "sha1": "b1e136efdfee61f3d35f21e527588e61a3a1cb66", + "md5": "54b6050e47ec8c482634d835d9ad48c9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps/ckey.pem", + "type": "file", + "name": "ckey.pem", + "base_name": "ckey", + "extension": ".pem", + "size": 1679, + "date": "2017-02-16", + "sha1": "88e868d338854b7c3c2d1cab4657d6f3165269f1", + "md5": "838ee902ee6ecd0d27b06db8d01120ff", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps/intkey.pem", + "type": "file", + "name": "intkey.pem", + "base_name": "intkey", + "extension": ".pem", + "size": 1675, + "date": "2017-02-16", + "sha1": "1bac78cf5d8f17d3bd398d782a7b4a40ed33aa38", + "md5": "cf6c14827e5e85105378c6581bb667cf", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps/mkacerts.sh", + "type": "file", + "name": "mkacerts.sh", + "base_name": "mkacerts", + "extension": ".sh", + "size": 1865, + "date": "2017-02-16", + "sha1": "4a7c4fd81f0ce5b6fdd7fef661172d25b5f6ea86", + "md5": "f2c773a1034ca503deaf9fff35c805b1", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps/mkxcerts.sh", + "type": "file", + "name": "mkxcerts.sh", + "base_name": "mkxcerts", + "extension": ".sh", + "size": 1118, + "date": "2017-02-16", + "sha1": "978c3e560e5e62828d2afb40b197c017f9f7a7a7", + "md5": "3f9761800f1fa5ad02600cb8fbfa81d7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps/rootkey.pem", + "type": "file", + "name": "rootkey.pem", + "base_name": "rootkey", + "extension": ".pem", + "size": 1679, + "date": "2017-02-16", + "sha1": "1e6e2b6c8b9d1184cf353b069377b198dfea4df9", + "md5": "a3abd0f21f05e6b80453e240694251f2", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps/skey.pem", + "type": "file", + "name": "skey.pem", + "base_name": "skey", + "extension": ".pem", + "size": 1679, + "date": "2017-02-16", + "sha1": "38dfed55e30e2bc9963b3b19c972ef25c062a87f", + "md5": "8f9a3cd144fa1c27bab564b8bc00a81b", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/certs/apps/skey2.pem", + "type": "file", + "name": "skey2.pem", + "base_name": "skey2", + "extension": ".pem", + "size": 1675, + "date": "2017-02-16", + "sha1": "5183c729156f6fa01c28ae5cab56a407ecb2d36d", + "md5": "b5267061b96c6e40e2502a7429922fea", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms", + "type": "directory", + "name": "cms", + "base_name": "cms", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 0, + "size_count": 22829, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cacert.pem", + "type": "file", + "name": "cacert.pem", + "base_name": "cacert", + "extension": ".pem", + "size": 1070, + "date": "2017-02-16", + "sha1": "cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a", + "md5": "fc177713fa6e8124593ccb3da13404b9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cakey.pem", + "type": "file", + "name": "cakey.pem", + "base_name": "cakey", + "extension": ".pem", + "size": 891, + "date": "2017-02-16", + "sha1": "6f4461b4797f7521bb72a9ba87d50735c1523dbe", + "md5": "9abc6dc8cd020db653a2d06be1bc3ac9", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_comp.c", + "type": "file", + "name": "cms_comp.c", + "base_name": "cms_comp", + "extension": ".c", + "size": 1370, + "date": "2017-02-16", + "sha1": "24cf3feb5ce06b9f3c8f6043fd48bc86297b9aac", + "md5": "49cdd262679e38d870293e6b1926b117", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_ddec.c", + "type": "file", + "name": "cms_ddec.c", + "base_name": "cms_ddec", + "extension": ".c", + "size": 1950, + "date": "2017-02-16", + "sha1": "f7a5cb8d23ce63966d21bfa2c9cfa07d119be646", + "md5": "f6ac9f3ffb20e6bd5f70a2aacac7fe53", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_dec.c", + "type": "file", + "name": "cms_dec.c", + "base_name": "cms_dec", + "extension": ".c", + "size": 1688, + "date": "2017-02-16", + "sha1": "26023ddff1878aa31cb770669aec003d6eb839a5", + "md5": "e217f4c2e5348fec2032bb482ef7aebc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_denc.c", + "type": "file", + "name": "cms_denc.c", + "base_name": "cms_denc", + "extension": ".c", + "size": 2214, + "date": "2017-02-16", + "sha1": "c20f87091c0cd43b6209e4c16ad07a6f55596e41", + "md5": "1ccaed5a7f1d46a29afd710c23f05bfc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_enc.c", + "type": "file", + "name": "cms_enc.c", + "base_name": "cms_enc", + "extension": ".c", + "size": 2067, + "date": "2017-02-16", + "sha1": "7f707329717e8b9622a06c3ada1f6efc09788531", + "md5": "5982a700ed9c9620141781931c346c83", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_sign.c", + "type": "file", + "name": "cms_sign.c", + "base_name": "cms_sign", + "extension": ".c", + "size": 1974, + "date": "2017-02-16", + "sha1": "e1db8b66c24f6d9fc4c2b31fd741921300769416", + "md5": "9aafa425975699bde879c93221b5c862", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_sign2.c", + "type": "file", + "name": "cms_sign2.c", + "base_name": "cms_sign2", + "extension": ".c", + "size": 2122, + "date": "2017-02-16", + "sha1": "0fa8bd86c0961537cd24bbc91f2fa6d6da655124", + "md5": "7faa837c381b3a8c17491495932b6c27", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_uncomp.c", + "type": "file", + "name": "cms_uncomp.c", + "base_name": "cms_uncomp", + "extension": ".c", + "size": 1237, + "date": "2017-02-16", + "sha1": "a4068c0891bc887fdca917a52d42c69b0eef7fce", + "md5": "0832ec7e0bb353d751d50923580236c0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/cms_ver.c", + "type": "file", + "name": "cms_ver.c", + "base_name": "cms_ver", + "extension": ".c", + "size": 1821, + "date": "2017-02-16", + "sha1": "9ada602a3eace0ef5ce9d8a12c7020d630ed5d05", + "md5": "258ed606ed1d0efa0ddf3dff287d73f8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/comp.txt", + "type": "file", + "name": "comp.txt", + "base_name": "comp", + "extension": ".txt", + "size": 566, + "date": "2017-02-16", + "sha1": "ca0b204ee4acf5a30bed9e6185193e9399df3547", + "md5": "16c11101236469e8b8cd1e8b61c711f3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/encr.txt", + "type": "file", + "name": "encr.txt", + "base_name": "encr", + "extension": ".txt", + "size": 65, + "date": "2017-02-16", + "sha1": "5166c6c3ed9a4e95420df8232d82422414f103ba", + "md5": "720d954d426fc7fc0ac04c38e1e440a1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/sign.txt", + "type": "file", + "name": "sign.txt", + "base_name": "sign", + "extension": ".txt", + "size": 58, + "date": "2017-02-16", + "sha1": "7ba6b78642d3c84a38cd58f3285b81fb2d2f22a4", + "md5": "e844b4a4c7dceb87392d4e2264c8ecc8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/signer.pem", + "type": "file", + "name": "signer.pem", + "base_name": "signer", + "extension": ".pem", + "size": 1868, + "date": "2017-02-16", + "sha1": "112a4fb8f81d81db9a235165afabfc74f6f7c2b4", + "md5": "f2d2839d56e288c39c91410092552001", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/cms/signer2.pem", + "type": "file", + "name": "signer2.pem", + "base_name": "signer2", + "extension": ".pem", + "size": 1868, + "date": "2017-02-16", + "sha1": "c44d3debb2cc278c5ed33d844bc5475fb586117d", + "md5": "72d5ba6cb1eb83a1a9317829320d6971", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/evp", + "type": "directory", + "name": "evp", + "base_name": "evp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 8753, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/evp/aesccm.c", + "type": "file", + "name": "aesccm.c", + "base_name": "aesccm", + "extension": ".c", + "size": 4614, + "date": "2017-02-16", + "sha1": "881c80749dc71767fe2e368cec0bdaff4c21e3b7", + "md5": "00af20c3a57a561cbbacbc9132b13f6e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/evp/aesgcm.c", + "type": "file", + "name": "aesgcm.c", + "base_name": "aesgcm", + "extension": ".c", + "size": 4139, + "date": "2017-02-16", + "sha1": "9f5aaf881b59e3bde5063b4c423f31a77ec22e94", + "md5": "68327628f05e2d24086e0207919e83c8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/pkcs12", + "type": "directory", + "name": "pkcs12", + "base_name": "pkcs12", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 3468, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/pkcs12/pkread.c", + "type": "file", + "name": "pkread.c", + "base_name": "pkread", + "extension": ".c", + "size": 1916, + "date": "2017-02-16", + "sha1": "24349969a82c727a42a6b575de30b81b96f26bfc", + "md5": "db09f787a517e75bb17ad0fb8dccd34a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/pkcs12/pkwrite.c", + "type": "file", + "name": "pkwrite.c", + "base_name": "pkwrite", + "extension": ".c", + "size": 1500, + "date": "2017-02-16", + "sha1": "bdbc921863959a2c316cce44f3822b2113181215", + "md5": "5d05f4d00f83dc5ddbd5dbbb6125f203", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/pkcs12/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 52, + "date": "2017-02-16", + "sha1": "7861e5463cc997798a9079ad20935f9332d27225", + "md5": "794ba0c042b0aa324675112386504e26", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Steve Henson." + ], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime", + "type": "directory", + "name": "smime", + "base_name": "smime", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 0, + "size_count": 15437, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/cacert.pem", + "type": "file", + "name": "cacert.pem", + "base_name": "cacert", + "extension": ".pem", + "size": 1070, + "date": "2017-02-16", + "sha1": "cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a", + "md5": "fc177713fa6e8124593ccb3da13404b9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/cakey.pem", + "type": "file", + "name": "cakey.pem", + "base_name": "cakey", + "extension": ".pem", + "size": 891, + "date": "2017-02-16", + "sha1": "6f4461b4797f7521bb72a9ba87d50735c1523dbe", + "md5": "9abc6dc8cd020db653a2d06be1bc3ac9", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/encr.txt", + "type": "file", + "name": "encr.txt", + "base_name": "encr", + "extension": ".txt", + "size": 68, + "date": "2017-02-16", + "sha1": "8643e033847f354749eb2d8764cd2240234737f2", + "md5": "ccfc0b4f06eb054f05bae14c1bef7db6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/sign.txt", + "type": "file", + "name": "sign.txt", + "base_name": "sign", + "extension": ".txt", + "size": 54, + "date": "2017-02-16", + "sha1": "ccfe77e892958809b7c37463bcb6bf19b8ae2257", + "md5": "dc41eee12c887b46dd4f881637740be1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/signer.pem", + "type": "file", + "name": "signer.pem", + "base_name": "signer", + "extension": ".pem", + "size": 1868, + "date": "2017-02-16", + "sha1": "112a4fb8f81d81db9a235165afabfc74f6f7c2b4", + "md5": "f2d2839d56e288c39c91410092552001", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/signer2.pem", + "type": "file", + "name": "signer2.pem", + "base_name": "signer2", + "extension": ".pem", + "size": 1868, + "date": "2017-02-16", + "sha1": "c44d3debb2cc278c5ed33d844bc5475fb586117d", + "md5": "72d5ba6cb1eb83a1a9317829320d6971", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/smdec.c", + "type": "file", + "name": "smdec.c", + "base_name": "smdec", + "extension": ".c", + "size": 1652, + "date": "2017-02-16", + "sha1": "e68172b9f1e3469b21f33706852c8dcdb91ac673", + "md5": "f3daaef161d889cb8dadb5fc7ba44c2d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/smenc.c", + "type": "file", + "name": "smenc.c", + "base_name": "smenc", + "extension": ".c", + "size": 2041, + "date": "2017-02-16", + "sha1": "a849f10d973d2ad8b19980b335fd55bc3476ed22", + "md5": "208741abb1b47913f3fb7b3265220b75", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/smsign.c", + "type": "file", + "name": "smsign.c", + "base_name": "smsign", + "extension": ".c", + "size": 1969, + "date": "2017-02-16", + "sha1": "cde2b25bcc90b346f349092c68404f1b80135a79", + "md5": "1b9b1e04868afc5abc81ddf58bf8370b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/smsign2.c", + "type": "file", + "name": "smsign2.c", + "base_name": "smsign2", + "extension": ".c", + "size": 2139, + "date": "2017-02-16", + "sha1": "3a2b4a48388211d842596b9f31dabf63419aae33", + "md5": "7781f9174c2ee6d5b1fa8ffe8b0190ae", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/demos/smime/smver.c", + "type": "file", + "name": "smver.c", + "base_name": "smver", + "extension": ".c", + "size": 1817, + "date": "2017-02-16", + "sha1": "66e4d7ec9cdb52b5fc25ef1124bfdf975cb4283f", + "md5": "e2a69cba17885baaaf3ffe3c2a079414", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc", + "type": "directory", + "name": "doc", + "base_name": "doc", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 449, + "dirs_count": 4, + "size_count": 1945685, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/CT_POLICY_EVAL_CTX_new.pod", + "type": "file", + "name": "CT_POLICY_EVAL_CTX_new.pod", + "base_name": "CT_POLICY_EVAL_CTX_new", + "extension": ".pod", + "size": 3877, + "date": "2017-02-16", + "sha1": "df6f30f9981391de8458b7cd9bd3396e9e7fd4a5", + "md5": "1c38f5c8d0e16b1917b3d8c9d2f84254", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 106, + "end_line": 108, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 102, + "end_line": 104 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/dir-locals.example.el", + "type": "file", + "name": "dir-locals.example.el", + "base_name": "dir-locals.example", + "extension": ".el", + "size": 449, + "date": "2017-02-16", + "sha1": "49568a1a7a41fbebe92cf7e1385ab6827fe29996", + "md5": "c8890868d63134e52e41365cb6c71edd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Common Lisp", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/fingerprints.txt", + "type": "file", + "name": "fingerprints.txt", + "base_name": "fingerprints", + "extension": ".txt", + "size": 1174, + "date": "2017-02-16", + "sha1": "f46e8eddf7eda8c867cb38215de133cb0edaefe4", + "md5": "22213d10097cd4e0746a65c3aa40c15a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/openssl-c-indent.el", + "type": "file", + "name": "openssl-c-indent.el", + "base_name": "openssl-c-indent", + "extension": ".el", + "size": 3209, + "date": "2017-02-16", + "sha1": "c8d759e6a74bb7c73ccb71854170f18c23e6184a", + "md5": "87d2c068d8d1e21937aa744fa40a36f7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Common Lisp", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 547, + "date": "2017-02-16", + "sha1": "2976e2d8a34f4e76d34fb1c4bfc78eaf946c8403", + "md5": "4a04d984a3f6c434ee892aebeee2ae27", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/SCT_validate.pod", + "type": "file", + "name": "SCT_validate.pod", + "base_name": "SCT_validate", + "extension": ".pod", + "size": 3134, + "date": "2017-02-16", + "sha1": "016dffb64778717347446253b0c90e639d831f2f", + "md5": "8d0cba7e36348a112f17fe675ee46465", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 93, + "end_line": 95, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 89, + "end_line": 91 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/SSL_CTX_set_ct_validation_callback.pod", + "type": "file", + "name": "SSL_CTX_set_ct_validation_callback.pod", + "base_name": "SSL_CTX_set_ct_validation_callback", + "extension": ".pod", + "size": 5868, + "date": "2017-02-16", + "sha1": "091492f5c9f9fb85884fdff7ab1cb4d95f35cbf9", + "md5": "2877c628c847e0d55566242a3f76eeee", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 137, + "end_line": 139, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 133, + "end_line": 135 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps", + "type": "directory", + "name": "apps", + "base_name": "apps", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 49, + "dirs_count": 0, + "size_count": 432395, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/asn1parse.pod", + "type": "file", + "name": "asn1parse.pod", + "base_name": "asn1parse", + "extension": ".pod", + "size": 5828, + "date": "2017-02-16", + "sha1": "ede4ffae03492dbabe1b1098c6b76f3e3a0596c4", + "md5": "25a0b843c40a31e473096c4955401d75", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 203, + "end_line": 205, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 199, + "end_line": 201 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/CA.pl.pod", + "type": "file", + "name": "CA.pl.pod", + "base_name": "CA.pl", + "extension": ".pod", + "size": 6942, + "date": "2017-02-16", + "sha1": "3a5864063fef797dfc5d9d1c3457b92ed52bff2b", + "md5": "f4db65ad08e2ee263a04d670e5ce47b7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+PHP", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 209, + "end_line": 211, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 205, + "end_line": 207 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/ca.pod", + "type": "file", + "name": "ca.pod", + "base_name": "ca", + "extension": ".pod", + "size": 23340, + "date": "2017-02-16", + "sha1": "8896e165351618a779aa13a156c800f98502da24", + "md5": "171d6c25effeb932dfcad133a7122573", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 714, + "end_line": 716, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 710, + "end_line": 712 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/ciphers.pod", + "type": "file", + "name": "ciphers.pod", + "base_name": "ciphers", + "extension": ".pod", + "size": 25938, + "date": "2017-02-16", + "sha1": "0d1785cc486b5300813b35742823125cf4d6e4e4", + "md5": "faf963942ee2e534348c7707598e1fda", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 730, + "end_line": 732, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 726, + "end_line": 728 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/cms.pod", + "type": "file", + "name": "cms.pod", + "base_name": "cms", + "extension": ".pod", + "size": 23921, + "date": "2017-02-16", + "sha1": "edea6a02f4806b947404cbcbf465c0b547090fb8", + "md5": "02ff2d6ee7c810fdf62464c106c79533", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 732, + "end_line": 734, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 728, + "end_line": 730 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/config.pod", + "type": "file", + "name": "config.pod", + "base_name": "config", + "extension": ".pod", + "size": 12927, + "date": "2017-02-16", + "sha1": "411618c0cd4395b0d6dc1fafcf1f2ea8677ce376", + "md5": "60bd2d5190415691158d704be615d807", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 381, + "end_line": 383, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 377, + "end_line": 379 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/crl.pod", + "type": "file", + "name": "crl.pod", + "base_name": "crl", + "extension": ".pod", + "size": 2820, + "date": "2017-02-16", + "sha1": "56b3754b851520370efa336e90288050a6d2393d", + "md5": "a49064121e01f3525147f1aec51acdee", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 137, + "end_line": 139, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 133, + "end_line": 135 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/crl2pkcs7.pod", + "type": "file", + "name": "crl2pkcs7.pod", + "base_name": "crl2pkcs7", + "extension": ".pod", + "size": 2773, + "date": "2017-02-16", + "sha1": "3dbfd3feb96fba49e09516831bb5fe5de5b3302c", + "md5": "8ca74fbab93f0f6d11480da1bd6a8295", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 100, + "end_line": 102, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 96, + "end_line": 98 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/dgst.pod", + "type": "file", + "name": "dgst.pod", + "base_name": "dgst", + "extension": ".pod", + "size": 6342, + "date": "2017-02-16", + "sha1": "6b53b0e8b1ac6685982a31ba9b44d1b5f7b63f3d", + "md5": "8733fe92696c4af47d97eb6c67c39a6d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 235, + "end_line": 237, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 231, + "end_line": 233 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/dhparam.pod", + "type": "file", + "name": "dhparam.pod", + "base_name": "dhparam", + "extension": ".pod", + "size": 4326, + "date": "2017-02-16", + "sha1": "9e39eada0f851b8abe966b7abee0dcebb10b65fe", + "md5": "e4faca5f5b736e4b0b8054daa76b9af3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 154, + "end_line": 156, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 150, + "end_line": 152 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/dsa.pod", + "type": "file", + "name": "dsa.pod", + "base_name": "dsa", + "extension": ".pod", + "size": 4830, + "date": "2017-02-16", + "sha1": "ddf6702fe4fa7828bbcf45ee618486bd50d1524c", + "md5": "c1fc66d9ff87658b94bf36c21d8a0210", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 173, + "end_line": 175, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 169, + "end_line": 171 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/dsaparam.pod", + "type": "file", + "name": "dsaparam.pod", + "base_name": "dsaparam", + "extension": ".pod", + "size": 3178, + "date": "2017-02-16", + "sha1": "60040598817c80e32d22d92463d78bd31fc47aff", + "md5": "17bc6a261505657b5b4195430dee1457", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 119, + "end_line": 121, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 115, + "end_line": 117 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/ec.pod", + "type": "file", + "name": "ec.pod", + "base_name": "ec", + "extension": ".pod", + "size": 5889, + "date": "2017-02-16", + "sha1": "98d284ae7680e0a17b4923e7e4817a04a8b395a0", + "md5": "45ed0c950f2366f66ce6912ad5dcc9d5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 201, + "end_line": 203, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 197, + "end_line": 199 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/ecparam.pod", + "type": "file", + "name": "ecparam.pod", + "base_name": "ecparam", + "extension": ".pod", + "size": 4971, + "date": "2017-02-16", + "sha1": "1edf073d86696eac643854d86ba77b77297037e4", + "md5": "b9faf0d743b39dfb5c7a3b552953bb6b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 180, + "end_line": 182, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 176, + "end_line": 178 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/enc.pod", + "type": "file", + "name": "enc.pod", + "base_name": "enc", + "extension": ".pod", + "size": 10415, + "date": "2017-02-16", + "sha1": "e5e613c6129279c6564a6556f347d3b058fedd10", + "md5": "b933f1186f3e2491e7d939b26ef04df8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 348, + "end_line": 350, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 344, + "end_line": 346 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/engine.pod", + "type": "file", + "name": "engine.pod", + "base_name": "engine", + "extension": ".pod", + "size": 2735, + "date": "2017-02-16", + "sha1": "d79fd5d395dee1225d0018cf8984c5af6acae5e6", + "md5": "d64464e678c3955de550ede6e6d5398a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 99, + "end_line": 101, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 95, + "end_line": 97 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/errstr.pod", + "type": "file", + "name": "errstr.pod", + "base_name": "errstr", + "extension": ".pod", + "size": 941, + "date": "2017-02-16", + "sha1": "f2449b04731e41ea5d68eac8fc4dedd5773be76b", + "md5": "0922f9849554682de8952f442dfb5de5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 40, + "end_line": 42, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/gendsa.pod", + "type": "file", + "name": "gendsa.pod", + "base_name": "gendsa", + "extension": ".pod", + "size": 2296, + "date": "2017-02-16", + "sha1": "311af5ffc72220a7f66838de8611f97ab236de4c", + "md5": "838163810f2772c256724d343da3d140", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 86, + "end_line": 88, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 82, + "end_line": 84 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/genpkey.pod", + "type": "file", + "name": "genpkey.pod", + "base_name": "genpkey", + "extension": ".pod", + "size": 7607, + "date": "2017-02-16", + "sha1": "2cbc28e1498213070ee890a62c6233639e3bdd03", + "md5": "5fbf9eaf0cb5ceea55e9f1e905c22d3d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 272, + "end_line": 274, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 268, + "end_line": 270 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/genrsa.pod", + "type": "file", + "name": "genrsa.pod", + "base_name": "genrsa", + "extension": ".pod", + "size": 3098, + "date": "2017-02-16", + "sha1": "6bd9e9e6c1bd7fc5106b16808af1ebd37eaaff68", + "md5": "df223c2b98d343ddd5836f5e0d253e39", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 110, + "end_line": 112, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 106, + "end_line": 108 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/list.pod", + "type": "file", + "name": "list.pod", + "base_name": "list", + "extension": ".pod", + "size": 1715, + "date": "2017-02-16", + "sha1": "f0c62958e2f2f77e37b3f64bb48bbc590547beb4", + "md5": "3d22dd306f13dec7ba26737c9c0d1cfd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/nseq.pod", + "type": "file", + "name": "nseq.pod", + "base_name": "nseq", + "extension": ".pod", + "size": 2069, + "date": "2017-02-16", + "sha1": "7d09041151f1249f356e3a1132be8140b17c8ead", + "md5": "01eef24e615b6a1f0849f728a253b9af", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/ocsp.pod", + "type": "file", + "name": "ocsp.pod", + "base_name": "ocsp", + "extension": ".pod", + "size": 15177, + "date": "2017-02-16", + "sha1": "d1b9001ded0841743cb13661ff698a98b38a40d5", + "md5": "1ec0e9a404d17f3adf3358d24e4f75c7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 461, + "end_line": 463, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 457, + "end_line": 459 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/openssl.pod", + "type": "file", + "name": "openssl.pod", + "base_name": "openssl", + "extension": ".pod", + "size": 10542, + "date": "2017-02-16", + "sha1": "d4e90eac5d68065251d472747ed5f0761315d263", + "md5": "5e45c8d68473f2e88ba7eb5075b6c2f7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 446, + "end_line": 448, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 442, + "end_line": 444 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/passwd.pod", + "type": "file", + "name": "passwd.pod", + "base_name": "passwd", + "extension": ".pod", + "size": 2053, + "date": "2017-02-16", + "sha1": "b5ef420dc9b6fad6c854cb28b39317f5f3a107e0", + "md5": "bd35e95656dde827081cdf786cdd8b4a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/pkcs12.pod", + "type": "file", + "name": "pkcs12.pod", + "base_name": "pkcs12", + "extension": ".pod", + "size": 11485, + "date": "2017-02-16", + "sha1": "74ed424ddda1f0cec26e058e7811a70168ffc6a7", + "md5": "21675fd89ac3d8a78c5c864fe7e8299e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 373, + "end_line": 375, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 369, + "end_line": 371 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/pkcs7.pod", + "type": "file", + "name": "pkcs7.pod", + "base_name": "pkcs7", + "extension": ".pod", + "size": 2626, + "date": "2017-02-16", + "sha1": "77b408b0affde9f357734548af28d33e9ef9c88b", + "md5": "a0f64295bcd15898d9db6874171556e1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 114, + "end_line": 116, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 110, + "end_line": 112 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/pkcs8.pod", + "type": "file", + "name": "pkcs8.pod", + "base_name": "pkcs8", + "extension": ".pod", + "size": 9555, + "date": "2017-02-16", + "sha1": "24aead9e3d822a9d34caf479a7fc32004d3e523c", + "md5": "285e495b95105cfe80d74e90eccd23eb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 296, + "end_line": 298, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 292, + "end_line": 294 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/pkey.pod", + "type": "file", + "name": "pkey.pod", + "base_name": "pkey", + "extension": ".pod", + "size": 3878, + "date": "2017-02-16", + "sha1": "3923325ec691ef7bf66183d252917ac6d762c2f4", + "md5": "53383ef14ae4d2ae5ae8f9ab502f22b4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 150, + "end_line": 152, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 146, + "end_line": 148 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/pkeyparam.pod", + "type": "file", + "name": "pkeyparam.pod", + "base_name": "pkeyparam", + "extension": ".pod", + "size": 1837, + "date": "2017-02-16", + "sha1": "14e150b0826c306dab1c6ac5218a7a5ba2cefa92", + "md5": "c661629d2189b144d47ba0915be81244", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/pkeyutl.pod", + "type": "file", + "name": "pkeyutl.pod", + "base_name": "pkeyutl", + "extension": ".pod", + "size": 8221, + "date": "2017-02-16", + "sha1": "335b954acfe93da0ce86188904ee87ca553875a4", + "md5": "8749dba351ff1c9c10e9cc7465f404fa", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 287, + "end_line": 289, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 283, + "end_line": 285 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/rand.pod", + "type": "file", + "name": "rand.pod", + "base_name": "rand", + "extension": ".pod", + "size": 1470, + "date": "2017-02-16", + "sha1": "6b87b9538feb19fac31c9097a02f20fb9e5b229a", + "md5": "628938537edd1093fbc47a4a75e58f72", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/rehash.pod", + "type": "file", + "name": "rehash.pod", + "base_name": "rehash", + "extension": ".pod", + "size": 4024, + "date": "2017-02-16", + "sha1": "28744aa0e6dc31a1793078f3aedf13d2196b2df5", + "md5": "5a2b3bdf811c8e1fda65df4e4a8a2f8a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 4, + "end_line": 4, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + }, + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 134, + "end_line": 136, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 130, + "end_line": 132 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/req.pod", + "type": "file", + "name": "req.pod", + "base_name": "req", + "extension": ".pod", + "size": 21447, + "date": "2017-02-16", + "sha1": "8c883c8dd5a7e77ba296c0e12a89cfa4a5d4ea9c", + "md5": "76a1257c3660f3192396e224bd1a58fe", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 653, + "end_line": 655, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 649, + "end_line": 651 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/rsa.pod", + "type": "file", + "name": "rsa.pod", + "base_name": "rsa", + "extension": ".pod", + "size": 6070, + "date": "2017-02-16", + "sha1": "b34db5fc0d3867d1f7107c19c8d25c8d9793033d", + "md5": "d1d0d76822b8267e361053e254cb738f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 211, + "end_line": 213, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 207, + "end_line": 209 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/rsautl.pod", + "type": "file", + "name": "rsautl.pod", + "base_name": "rsautl", + "extension": ".pod", + "size": 5450, + "date": "2017-02-16", + "sha1": "e97fe7f3aa98b6883259df9b182e225c63f077fd", + "md5": "5435a26180ef3fa1f75ff73ee29edd4f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 199, + "end_line": 201, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 195, + "end_line": 197 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/s_client.pod", + "type": "file", + "name": "s_client.pod", + "base_name": "s_client", + "extension": ".pod", + "size": 19194, + "date": "2017-02-16", + "sha1": "e4aee1adff32b0209f72ca458e80e07b84ff28d2", + "md5": "fd33c208c60d153a228d87cdfc83f2b8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 598, + "end_line": 600, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 594, + "end_line": 596 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/s_server.pod", + "type": "file", + "name": "s_server.pod", + "base_name": "s_server", + "extension": ".pod", + "size": 17686, + "date": "2017-02-16", + "sha1": "f77d8ef1be83ed7adb40938c5392a1067e6957b7", + "md5": "270edf3b92cfeb7808ba559b1859dbee", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 601, + "end_line": 603, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 597, + "end_line": 599 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/s_time.pod", + "type": "file", + "name": "s_time.pod", + "base_name": "s_time", + "extension": ".pod", + "size": 6431, + "date": "2017-02-16", + "sha1": "d04e67a0d0f3cb7a9f81e7fdb32bfbd36b06d8d7", + "md5": "1dd5026dfa2f5bfeae917162e5fb5456", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 189, + "end_line": 191, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 185, + "end_line": 187 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/sess_id.pod", + "type": "file", + "name": "sess_id.pod", + "base_name": "sess_id", + "extension": ".pod", + "size": 4142, + "date": "2017-02-16", + "sha1": "74a1fa94b9065b908edb06ecd031e8d45812e08c", + "md5": "cadf5a1ad1312da6c0bd8f745ee4f1ce", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 158, + "end_line": 160, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 154, + "end_line": 156 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/smime.pod", + "type": "file", + "name": "smime.pod", + "base_name": "smime", + "extension": ".pod", + "size": 16417, + "date": "2017-02-16", + "sha1": "40c2e3fc2c63a71c5a30bb4d16effa8b8e6745f6", + "md5": "25bf2bd27926cdfd1ba40cd481d82100", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 510, + "end_line": 512, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 506, + "end_line": 508 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/speed.pod", + "type": "file", + "name": "speed.pod", + "base_name": "speed", + "extension": ".pod", + "size": 1517, + "date": "2017-02-16", + "sha1": "9d83cf034237a37cfee57e611b443b3e6775b99f", + "md5": "028c4543ded357e5c9647beaf43f574f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 62, + "end_line": 64, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 58, + "end_line": 60 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/spkac.pod", + "type": "file", + "name": "spkac.pod", + "base_name": "spkac", + "extension": ".pod", + "size": 3723, + "date": "2017-02-16", + "sha1": "9ea15192639a5c263530dc1e802a1b38195209c6", + "md5": "5246213ad64c86eea24a62231e8a0cc0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 142, + "end_line": 144, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 138, + "end_line": 140 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/ts.pod", + "type": "file", + "name": "ts.pod", + "base_name": "ts", + "extension": ".pod", + "size": 20779, + "date": "2017-02-16", + "sha1": "316dff4522dd18e82d91c5a61355514f6b84d5c9", + "md5": "d9ed66323e9a360318828d77772fcb66", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 645, + "end_line": 647, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 641, + "end_line": 643 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/tsget.pod", + "type": "file", + "name": "tsget.pod", + "base_name": "tsget", + "extension": ".pod", + "size": 6374, + "date": "2017-02-16", + "sha1": "c6d440608e8fefd009cc369416d5489d571de619", + "md5": "593df6ca9b6e31bfe75bd2425e43ea4e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 194, + "end_line": 196, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 190, + "end_line": 192 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/verify.pod", + "type": "file", + "name": "verify.pod", + "base_name": "verify", + "extension": ".pod", + "size": 22058, + "date": "2017-02-16", + "sha1": "1c879db5432fe9bf2590de218da54dc1fd678c35", + "md5": "9bf0195550797795530b41b82a003e42", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 41.46, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 719, + "end_line": 721, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 41.46, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 719, + "end_line": 721, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 41.46, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 719, + "end_line": 721, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 715, + "end_line": 717 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/version.pod", + "type": "file", + "name": "version.pod", + "base_name": "version", + "extension": ".pod", + "size": 1187, + "date": "2017-02-16", + "sha1": "1fe867bd8b84c9e5ecf2aa402be4ad9ab3433831", + "md5": "06a8190695e1840d8ffb22a75bc767cf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 75, + "end_line": 77, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 71, + "end_line": 73 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/x509.pod", + "type": "file", + "name": "x509.pod", + "base_name": "x509", + "extension": ".pod", + "size": 27542, + "date": "2017-02-16", + "sha1": "6e2fb5e1f826b3f55e85676064130b41d4ac0317", + "md5": "fbfce658be9df46b72c466683127690a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 900, + "end_line": 902, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 896, + "end_line": 898 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/apps/x509v3_config.pod", + "type": "file", + "name": "x509v3_config.pod", + "base_name": "x509v3_config", + "extension": ".pod", + "size": 16609, + "date": "2017-02-16", + "sha1": "2bb105b5d92eb9afa3c2cffc7cb4fccc8175b9f0", + "md5": "f63fe579bcb09cb1a75ddbaf2ef84619", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 536, + "end_line": 538, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 532, + "end_line": 534 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto", + "type": "directory", + "name": "crypto", + "base_name": "crypto", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 272, + "dirs_count": 0, + "size_count": 1063323, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASN1_generate_nconf.pod", + "type": "file", + "name": "ASN1_generate_nconf.pod", + "base_name": "ASN1_generate_nconf", + "extension": ".pod", + "size": 7767, + "date": "2017-02-16", + "sha1": "29a523521ce459f07a80c09b67dfa391b7fd01b0", + "md5": "bd900debb1693cc45e803836c04be3ec", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 265, + "end_line": 267, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 261, + "end_line": 263 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASN1_INTEGER_get_int64.pod", + "type": "file", + "name": "ASN1_INTEGER_get_int64.pod", + "base_name": "ASN1_INTEGER_get_int64", + "extension": ".pod", + "size": 5263, + "date": "2017-02-16", + "sha1": "b743b94b9ab587cf9d5e36bfd9b160ac58b0b85a", + "md5": "1f98352049135e9c951ce3045048e9d2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 127, + "end_line": 129, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 123, + "end_line": 125 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASN1_OBJECT_new.pod", + "type": "file", + "name": "ASN1_OBJECT_new.pod", + "base_name": "ASN1_OBJECT_new", + "extension": ".pod", + "size": 1368, + "date": "2017-02-16", + "sha1": "287635326086f1a1414d71ddb1a6c2570d8d6c9c", + "md5": "ebd3047be5b25c5add957ca440c26d26", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASN1_STRING_length.pod", + "type": "file", + "name": "ASN1_STRING_length.pod", + "base_name": "ASN1_STRING_length", + "extension": ".pod", + "size": 3301, + "date": "2017-02-16", + "sha1": "c6e2a5184283d890a8636b921b655f54af467907", + "md5": "353a77ab969e2bd01ca80118f4ecae83", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 88, + "end_line": 90, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 84, + "end_line": 86 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASN1_STRING_new.pod", + "type": "file", + "name": "ASN1_STRING_new.pod", + "base_name": "ASN1_STRING_new", + "extension": ".pod", + "size": 1254, + "date": "2017-02-16", + "sha1": "3ea75169208cc58fdc04c43a37ea0134f0ce24d3", + "md5": "24a16cff6644e803fa23de00c1e68101", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASN1_STRING_print_ex.pod", + "type": "file", + "name": "ASN1_STRING_print_ex.pod", + "base_name": "ASN1_STRING_print_ex", + "extension": ".pod", + "size": 4059, + "date": "2017-02-16", + "sha1": "77eac8db49c8b59c4c29587866d5f71709cca8aa", + "md5": "2d29ea50710a28f7b20817054d19d2dd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 96, + "end_line": 98, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 92, + "end_line": 94 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASN1_TIME_set.pod", + "type": "file", + "name": "ASN1_TIME_set.pod", + "base_name": "ASN1_TIME_set", + "extension": ".pod", + "size": 5025, + "date": "2017-02-16", + "sha1": "2dd32d9b2336fe109ffa6d1c6f2a3f63f4a27c16", + "md5": "b3f6d4d20e32c455d4099d334df6690d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 133, + "end_line": 135, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 129, + "end_line": 131 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASN1_TYPE_get.pod", + "type": "file", + "name": "ASN1_TYPE_get.pod", + "base_name": "ASN1_TYPE_get", + "extension": ".pod", + "size": 4058, + "date": "2017-02-16", + "sha1": "72efde7abab2f0f13dc6f1c8d8922506631e4bb9", + "md5": "154571263b3593c8b8999863123f0925", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 95, + "end_line": 97, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 91, + "end_line": 93 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASYNC_start_job.pod", + "type": "file", + "name": "ASYNC_start_job.pod", + "base_name": "ASYNC_start_job", + "extension": ".pod", + "size": 12260, + "date": "2017-02-16", + "sha1": "eada39302fad8f1ade455331364481fdb471e24a", + "md5": "784c55f693c12470ed5f4b9bcfbc7f9e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 325, + "end_line": 327, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 321, + "end_line": 323 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ASYNC_WAIT_CTX_new.pod", + "type": "file", + "name": "ASYNC_WAIT_CTX_new.pod", + "base_name": "ASYNC_WAIT_CTX_new", + "extension": ".pod", + "size": 7328, + "date": "2017-02-16", + "sha1": "06afe5a7c027ea090510c3dbc37c36c65c14f9a9", + "md5": "a4d2f80742a8c8fc09733b6f7b143f55", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 139, + "end_line": 141, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 135, + "end_line": 137 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BF_encrypt.pod", + "type": "file", + "name": "BF_encrypt.pod", + "base_name": "BF_encrypt", + "extension": ".pod", + "size": 5075, + "date": "2017-02-16", + "sha1": "b562db91b21f22f284a6d170cbfd1f3a36b03ddd", + "md5": "63c02b0d2f3bd8be3f1d1a5a0b5436d5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 112, + "end_line": 114, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 108, + "end_line": 110 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/bio.pod", + "type": "file", + "name": "bio.pod", + "base_name": "bio", + "extension": ".pod", + "size": 2792, + "date": "2017-02-16", + "sha1": "ddf290adc1ec611907a41193cb52a5722c67a1c1", + "md5": "716717f3120f51efb07e29b358c709ef", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 84, + "end_line": 86, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 80, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_ADDR.pod", + "type": "file", + "name": "BIO_ADDR.pod", + "base_name": "BIO_ADDR", + "extension": ".pod", + "size": 5020, + "date": "2017-02-16", + "sha1": "fcbde6ce3b351599d3b8452f42b0e601cb954e5c", + "md5": "a7f80462c409b5e2f7c3425e18c95676", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 120, + "end_line": 122, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 116, + "end_line": 118 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_ADDRINFO.pod", + "type": "file", + "name": "BIO_ADDRINFO.pod", + "base_name": "BIO_ADDRINFO", + "extension": ".pod", + "size": 3003, + "date": "2017-02-16", + "sha1": "ba25d40fcc81df1142b2101e1ac59c7d9019218d", + "md5": "7ce59ca78466c499bce96a3f4a5e835d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_connect.pod", + "type": "file", + "name": "BIO_connect.pod", + "base_name": "BIO_connect", + "extension": ".pod", + "size": 3519, + "date": "2017-02-16", + "sha1": "f8e197cb95c3da932d18f1667c75c2d0dc7f445f", + "md5": "850ce070641b0bf4e1d56e4d99e47529", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_ctrl.pod", + "type": "file", + "name": "BIO_ctrl.pod", + "base_name": "BIO_ctrl", + "extension": ".pod", + "size": 5224, + "date": "2017-02-16", + "sha1": "d5b5260942f5264b54d0386bd14c0c20f80fe715", + "md5": "5953ce641303a2183db5f1756709fde5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 131, + "end_line": 133, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 127, + "end_line": 129 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_f_base64.pod", + "type": "file", + "name": "BIO_f_base64.pod", + "base_name": "BIO_f_base64", + "extension": ".pod", + "size": 2281, + "date": "2017-02-16", + "sha1": "9e4588ba38012c2718a4ae4f4fc663e09a5aeb24", + "md5": "e625a4199b09b49415c1afeaa2c1bfc5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 86, + "end_line": 88, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 82, + "end_line": 84 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_f_buffer.pod", + "type": "file", + "name": "BIO_f_buffer.pod", + "base_name": "BIO_f_buffer", + "extension": ".pod", + "size": 3005, + "date": "2017-02-16", + "sha1": "99096bcfecb0dad9eff5ae2c176f17a34d6ad7ba", + "md5": "eb10992463aac6488bb5f89dd9977ec6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 87, + "end_line": 89, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 83, + "end_line": 85 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_f_cipher.pod", + "type": "file", + "name": "BIO_f_cipher.pod", + "base_name": "BIO_f_cipher", + "extension": ".pod", + "size": 2805, + "date": "2017-02-16", + "sha1": "dc38721aee0fb12ada43d163725474213c2ffcb8", + "md5": "bcbe7e07734ae8fa9e660373cc1733bf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_f_md.pod", + "type": "file", + "name": "BIO_f_md.pod", + "base_name": "BIO_f_md", + "extension": ".pod", + "size": 4836, + "date": "2017-02-16", + "sha1": "2728420be5d2ef699823bc8ed1ee7cc71d2f9f87", + "md5": "e347637fc649468e167318bebbe8b777", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 151, + "end_line": 153, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 147, + "end_line": 149 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_f_null.pod", + "type": "file", + "name": "BIO_f_null.pod", + "base_name": "BIO_f_null", + "extension": ".pod", + "size": 918, + "date": "2017-02-16", + "sha1": "596922b305fa36d70b0f4a76ca9434efca5bfc2f", + "md5": "c103bdfdf4ab6d9df613ab5b248602c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 34, + "end_line": 36, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_f_ssl.pod", + "type": "file", + "name": "BIO_f_ssl.pod", + "base_name": "BIO_f_ssl", + "extension": ".pod", + "size": 9691, + "date": "2017-02-16", + "sha1": "502a62de5b063e6dfe42885610abd25b75fc7629", + "md5": "709ffa245e6236f6a2bafbecb8d664dd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 293, + "end_line": 295, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 289, + "end_line": 291 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_find_type.pod", + "type": "file", + "name": "BIO_find_type.pod", + "base_name": "BIO_find_type", + "extension": ".pod", + "size": 1928, + "date": "2017-02-16", + "sha1": "25deb50d5a442fb0c7c1cd9ad31edc8414d1d3a1", + "md5": "6d88cb3b739754d1e8cadb6c84992ebf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_get_data.pod", + "type": "file", + "name": "BIO_get_data.pod", + "base_name": "BIO_get_data", + "extension": ".pod", + "size": 2214, + "date": "2017-02-16", + "sha1": "ce2813445d0ade4d5c5f8028fd1e4b8baa23c88b", + "md5": "94053d651da2e4dac68d9f1799f5272d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 60, + "end_line": 62, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 56, + "end_line": 58 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_get_ex_new_index.pod", + "type": "file", + "name": "BIO_get_ex_new_index.pod", + "base_name": "BIO_get_ex_new_index", + "extension": ".pod", + "size": 2055, + "date": "2017-02-16", + "sha1": "ca681ad17dd4c303d1014a92b06fdaed364cdf41", + "md5": "a31493f29e9a7c83b9ab4e8249a91f55", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_meth_new.pod", + "type": "file", + "name": "BIO_meth_new.pod", + "base_name": "BIO_meth_new", + "extension": ".pod", + "size": 6309, + "date": "2017-02-16", + "sha1": "fec2b79099c3f97438534e8181f2cca82c65ab05", + "md5": "f1ae45df638ec260455d973f4cf51985", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 126, + "end_line": 128, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 122, + "end_line": 124 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_new.pod", + "type": "file", + "name": "BIO_new.pod", + "base_name": "BIO_new", + "extension": ".pod", + "size": 1997, + "date": "2017-02-16", + "sha1": "302695a7f6825ee693531f79e20fdb168ec55925", + "md5": "58ee59410c6fa046fdf542b4352a3277", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_new_CMS.pod", + "type": "file", + "name": "BIO_new_CMS.pod", + "base_name": "BIO_new_CMS", + "extension": ".pod", + "size": 2418, + "date": "2017-02-16", + "sha1": "a35004b3c69e9f051c5bd014c5a539b8dfa08a1a", + "md5": "ec530c5b285aff9b113ebcf0aa23fa70", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 70, + "end_line": 72, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 66, + "end_line": 68 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_parse_hostserv.pod", + "type": "file", + "name": "BIO_parse_hostserv.pod", + "base_name": "BIO_parse_hostserv", + "extension": ".pod", + "size": 2167, + "date": "2017-02-16", + "sha1": "0e553b699ae92d4ee02b0f0eaf038695526672d3", + "md5": "9996fe6f9ed5ed776ff6fa6e2d53086f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 68, + "end_line": 70, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 64, + "end_line": 66 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_push.pod", + "type": "file", + "name": "BIO_push.pod", + "base_name": "BIO_push", + "extension": ".pod", + "size": 2511, + "date": "2017-02-16", + "sha1": "faa27cbcf8ec581190057b05df8d20e00db36fe9", + "md5": "d30f73514b98ff43aa4246bacd4a89bf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 84, + "end_line": 86, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 80, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_read.pod", + "type": "file", + "name": "BIO_read.pod", + "base_name": "BIO_read", + "extension": ".pod", + "size": 2866, + "date": "2017-02-16", + "sha1": "a9f82511256caf279c4f19dfcd8c4112208f70d8", + "md5": "610bf86c648bc4c9c21e601168d79e18", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_s_accept.pod", + "type": "file", + "name": "BIO_s_accept.pod", + "base_name": "BIO_s_accept", + "extension": ".pod", + "size": 8213, + "date": "2017-02-16", + "sha1": "1f4c98cd7b6cffca7702569aec40a6a75c31008a", + "md5": "7d7c36606cf41549a0b76e8c2fbaeab0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 217, + "end_line": 219, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 213, + "end_line": 215 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_s_bio.pod", + "type": "file", + "name": "BIO_s_bio.pod", + "base_name": "BIO_s_bio", + "extension": ".pod", + "size": 8185, + "date": "2017-02-16", + "sha1": "83c160836bd673999595687960239cc898ad80b5", + "md5": "0a13f37a600205ae9651581ef8505b0c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 196, + "end_line": 198, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 192, + "end_line": 194 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_s_connect.pod", + "type": "file", + "name": "BIO_s_connect.pod", + "base_name": "BIO_s_connect", + "extension": ".pod", + "size": 6977, + "date": "2017-02-16", + "sha1": "aeca6a0e3b329e98cd815bf64928a7c50485ec31", + "md5": "15623186ce367b182f01f032de5f9ba2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 195, + "end_line": 197, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 191, + "end_line": 193 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_s_fd.pod", + "type": "file", + "name": "BIO_s_fd.pod", + "base_name": "BIO_s_fd", + "extension": ".pod", + "size": 2676, + "date": "2017-02-16", + "sha1": "9d9d8513f83bd45f6185bfcab22b27faed9b697b", + "md5": "7803ffc0aa72f54047b4417a3a8f0c9b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 93, + "end_line": 95, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 89, + "end_line": 91 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_s_file.pod", + "type": "file", + "name": "BIO_s_file.pod", + "base_name": "BIO_s_file", + "extension": ".pod", + "size": 4762, + "date": "2017-02-16", + "sha1": "61282d82579b2525aa9a507e7503d857de887b90", + "md5": "453453f39e951e099f15e65eb3941cc6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 154, + "end_line": 156, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 150, + "end_line": 152 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_s_mem.pod", + "type": "file", + "name": "BIO_s_mem.pod", + "base_name": "BIO_s_mem", + "extension": ".pod", + "size": 4400, + "date": "2017-02-16", + "sha1": "5b3d487a08eb58ee42d13ebd830961f92b774b7b", + "md5": "48cbac47b6f1749d020653b242fe6c50", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 119, + "end_line": 121, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 115, + "end_line": 117 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_s_null.pod", + "type": "file", + "name": "BIO_s_null.pod", + "base_name": "BIO_s_null", + "extension": ".pod", + "size": 1132, + "date": "2017-02-16", + "sha1": "0c4cff3d3092d7ea3133ba745fdb3f60dce6fc56", + "md5": "07ea9e1ab6677289825bd6969d29bcd8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_s_socket.pod", + "type": "file", + "name": "BIO_s_socket.pod", + "base_name": "BIO_s_socket", + "extension": ".pod", + "size": 1409, + "date": "2017-02-16", + "sha1": "6525bef940dff3d349cfe0ee04f3932e7a641dbd", + "md5": "d361d7e164f60a0788d48b785b0dda50", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_set_callback.pod", + "type": "file", + "name": "BIO_set_callback.pod", + "base_name": "BIO_set_callback", + "extension": ".pod", + "size": 5989, + "date": "2017-02-16", + "sha1": "98abe63cfafd634e5b65b95c4790a1134d06198b", + "md5": "437f63f40a39154c79aee56e4061c4ba", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 216, + "end_line": 216, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 212, + "end_line": 214 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BIO_should_retry.pod", + "type": "file", + "name": "BIO_should_retry.pod", + "base_name": "BIO_should_retry", + "extension": ".pod", + "size": 5148, + "date": "2017-02-16", + "sha1": "823315b44a7d76500800b865d3e74754915fadb1", + "md5": "837c967f46fb6dba538764d8aa0fc2dc", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 127, + "end_line": 129, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 123, + "end_line": 125 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_add.pod", + "type": "file", + "name": "BN_add.pod", + "base_name": "BN_add", + "extension": ".pod", + "size": 4228, + "date": "2017-02-16", + "sha1": "a4e28106c95658423546c5931ac28da0096faaeb", + "md5": "2c088f76330a943196c093048707fb9a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 122, + "end_line": 124, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 118, + "end_line": 120 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_add_word.pod", + "type": "file", + "name": "BN_add_word.pod", + "base_name": "BN_add_word", + "extension": ".pod", + "size": 1588, + "date": "2017-02-16", + "sha1": "fcecf1034de1b4e1eb9454c76c83adb811872cba", + "md5": "97b8ea62cd85719e7f25530e50a80942", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_BLINDING_new.pod", + "type": "file", + "name": "BN_BLINDING_new.pod", + "base_name": "BN_BLINDING_new", + "extension": ".pod", + "size": 4927, + "date": "2017-02-16", + "sha1": "fe6311747a6b12371d36b4a703ab72e2d4b06ecb", + "md5": "086ce0c1941ca0daa6ff8a639415d8dd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 121, + "end_line": 123, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 117, + "end_line": 119 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_bn2bin.pod", + "type": "file", + "name": "BN_bn2bin.pod", + "base_name": "BN_bn2bin", + "extension": ".pod", + "size": 4344, + "date": "2017-02-16", + "sha1": "9f29c0d549919c63d54addfd08ce2e25b5ad9f5c", + "md5": "f679e83b44ed2c217e91cc33101f9076", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 111, + "end_line": 113, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 107, + "end_line": 109 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_cmp.pod", + "type": "file", + "name": "BN_cmp.pod", + "base_name": "BN_cmp", + "extension": ".pod", + "size": 1300, + "date": "2017-02-16", + "sha1": "417e480a4e29ec20fd3efdcf6c0626a4ec446e7a", + "md5": "3a92ad46e6bd8a624645bfd81741d6ce", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_copy.pod", + "type": "file", + "name": "BN_copy.pod", + "base_name": "BN_copy", + "extension": ".pod", + "size": 2028, + "date": "2017-02-16", + "sha1": "799d41a2f646c5b84d51859ac1dcfa3708c1f6ea", + "md5": "8b4db5e1c5a3def9a9a95dc67c0e13af", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_CTX_new.pod", + "type": "file", + "name": "BN_CTX_new.pod", + "base_name": "BN_CTX_new", + "extension": ".pod", + "size": 2028, + "date": "2017-02-16", + "sha1": "4dc9a609e48558ddb15975eb6d335642d508e0e7", + "md5": "0c5808c6ba6fbad6219d76eb2626933c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_CTX_start.pod", + "type": "file", + "name": "BN_CTX_start.pod", + "base_name": "BN_CTX_start", + "extension": ".pod", + "size": 1672, + "date": "2017-02-16", + "sha1": "c5622067e48f3e64e49c9222df51b1b78f3008b2", + "md5": "1c244614f43274fbebb21a992db40d95", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_generate_prime.pod", + "type": "file", + "name": "BN_generate_prime.pod", + "base_name": "BN_generate_prime", + "extension": ".pod", + "size": 6524, + "date": "2017-02-16", + "sha1": "05758939d243430a11f8cbc9e040254d9e559681", + "md5": "19fd1cf0eba52e0a75e8b1028b12eb35", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 189, + "end_line": 191, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 185, + "end_line": 187 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_mod_inverse.pod", + "type": "file", + "name": "BN_mod_inverse.pod", + "base_name": "BN_mod_inverse", + "extension": ".pod", + "size": 1043, + "date": "2017-02-16", + "sha1": "fb114a013d46387c3e42aa14792a90ca166ebc52", + "md5": "a5680639206319c540c936030340d7ca", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 36, + "end_line": 38, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 32, + "end_line": 34 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_mod_mul_montgomery.pod", + "type": "file", + "name": "BN_mod_mul_montgomery.pod", + "base_name": "BN_mod_mul_montgomery", + "extension": ".pod", + "size": 2641, + "date": "2017-02-16", + "sha1": "443b46c7ce928b335b2a20febf4ecca7f4a39e86", + "md5": "5cf714a5ac2a6572ba56b390ec4dcf29", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_mod_mul_reciprocal.pod", + "type": "file", + "name": "BN_mod_mul_reciprocal.pod", + "base_name": "BN_mod_mul_reciprocal", + "extension": ".pod", + "size": 2278, + "date": "2017-02-16", + "sha1": "b4381558761953d87e3226a805ca7264a79462f4", + "md5": "03a66c56ed3b588e6fb54c0279014715", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_new.pod", + "type": "file", + "name": "BN_new.pod", + "base_name": "BN_new", + "extension": ".pod", + "size": 1602, + "date": "2017-02-16", + "sha1": "ebdc6038b6261f2490c534ce5d470b29728d25e3", + "md5": "9bc1e410be4dee3f8a27afc62a2a56e6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_num_bytes.pod", + "type": "file", + "name": "BN_num_bytes.pod", + "base_name": "BN_num_bytes", + "extension": ".pod", + "size": 1760, + "date": "2017-02-16", + "sha1": "beb3b56fae756a9a8b6460e2d4fc8a759cd442ce", + "md5": "d0b8be8f38dd2e76bfbda9d41a19ab98", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_rand.pod", + "type": "file", + "name": "BN_rand.pod", + "base_name": "BN_rand", + "extension": ".pod", + "size": 2387, + "date": "2017-02-16", + "sha1": "b2c5b543f8b1265fe3ac0b9e734708fb13609294", + "md5": "a219e458abf03fa9be9e9d04956c4058", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_set_bit.pod", + "type": "file", + "name": "BN_set_bit.pod", + "base_name": "BN_set_bit", + "extension": ".pod", + "size": 2020, + "date": "2017-02-16", + "sha1": "3368a884f1fe5ed8c40c23a77883798907fff75b", + "md5": "9ce4fb4baf8bc1b79bd195cd6906d7e9", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_swap.pod", + "type": "file", + "name": "BN_swap.pod", + "base_name": "BN_swap", + "extension": ".pod", + "size": 545, + "date": "2017-02-16", + "sha1": "f2348c4a3829ed703846fcd9343d758e19821b98", + "md5": "3ce7f4ed4fd01f4e5f05109d3ed08ba5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 23, + "end_line": 25, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 19, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BN_zero.pod", + "type": "file", + "name": "BN_zero.pod", + "base_name": "BN_zero", + "extension": ".pod", + "size": 1636, + "date": "2017-02-16", + "sha1": "1102987ea5184903b9ccec97e9cfd121946c3727", + "md5": "d661ef31d7f75dc81cdce3afe021ed77", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 62, + "end_line": 64, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 58, + "end_line": 60 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/BUF_MEM_new.pod", + "type": "file", + "name": "BUF_MEM_new.pod", + "base_name": "BUF_MEM_new", + "extension": ".pod", + "size": 2080, + "date": "2017-02-16", + "sha1": "b4ee27f6de885d1f729c536d74deba15dc363216", + "md5": "98420a18faf50995842a6da63661d6ef", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_add0_cert.pod", + "type": "file", + "name": "CMS_add0_cert.pod", + "base_name": "CMS_add0_cert", + "extension": ".pod", + "size": 2143, + "date": "2017-02-16", + "sha1": "84016f57ec12ee8642462778a3ac66b4e5f829b6", + "md5": "9ec80c2ee48afe3069cb2338783b140a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_add1_recipient_cert.pod", + "type": "file", + "name": "CMS_add1_recipient_cert.pod", + "base_name": "CMS_add1_recipient_cert", + "extension": ".pod", + "size": 2543, + "date": "2017-02-16", + "sha1": "42f29c982cddd3c50ed13d2d3ec12dee666c23fe", + "md5": "52823da5f260cf9d7846598a16efd966", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 61, + "end_line": 63, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 57, + "end_line": 59 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_add1_signer.pod", + "type": "file", + "name": "CMS_add1_signer.pod", + "base_name": "CMS_add1_signer", + "extension": ".pod", + "size": 4252, + "date": "2017-02-16", + "sha1": "3a6510438214c3f26e3320aef8e2fdac0b68c788", + "md5": "4a1722467e5fe5af9db0dc22075d3596", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 101, + "end_line": 103, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 97, + "end_line": 99 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_compress.pod", + "type": "file", + "name": "CMS_compress.pod", + "base_name": "CMS_compress", + "extension": ".pod", + "size": 2644, + "date": "2017-02-16", + "sha1": "7acf513f32709d1d8d5ea6fcbb81cfde2807dd3d", + "md5": "61f27f8ee05ce564b355fc87da5f140a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_decrypt.pod", + "type": "file", + "name": "CMS_decrypt.pod", + "base_name": "CMS_decrypt", + "extension": ".pod", + "size": 3097, + "date": "2017-02-16", + "sha1": "f1a98eae25ab581e4c85fad71160c0fae6201c46", + "md5": "1711433bbd1a1d2eb7cce32073d2e441", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_encrypt.pod", + "type": "file", + "name": "CMS_encrypt.pod", + "base_name": "CMS_encrypt", + "extension": ".pod", + "size": 3863, + "date": "2017-02-16", + "sha1": "9381b85927a2b00f82406cade51a87fa1668383b", + "md5": "e33b8c9184a366c33181710e71d5a55a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 99, + "end_line": 101, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 95, + "end_line": 97 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_final.pod", + "type": "file", + "name": "CMS_final.pod", + "base_name": "CMS_final", + "extension": ".pod", + "size": 1304, + "date": "2017-02-16", + "sha1": "be8e85acc97678d0e49b896f3619b0d28b88371d", + "md5": "4f02fa1d25771497b9d772cf146009ed", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 41, + "end_line": 43, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 37, + "end_line": 39 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_get0_RecipientInfos.pod", + "type": "file", + "name": "CMS_get0_RecipientInfos.pod", + "base_name": "CMS_get0_RecipientInfos", + "extension": ".pod", + "size": 6057, + "date": "2017-02-16", + "sha1": "e8f21df58a116d25f5dfed49ea4c3d87fb4fc4a3", + "md5": "db3b2e9f5cd68b52990e28a63f63f5d9", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 125, + "end_line": 127, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 121, + "end_line": 123 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_get0_SignerInfos.pod", + "type": "file", + "name": "CMS_get0_SignerInfos.pod", + "base_name": "CMS_get0_SignerInfos", + "extension": ".pod", + "size": 3167, + "date": "2017-02-16", + "sha1": "4d2f2e41161dd6f1cc956d31d49b39fedb2c5a8a", + "md5": "7cc3268025c0f0a07f0e039c66f57a23", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 84, + "end_line": 86, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 80, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_get0_type.pod", + "type": "file", + "name": "CMS_get0_type.pod", + "base_name": "CMS_get0_type", + "extension": ".pod", + "size": 2718, + "date": "2017-02-16", + "sha1": "7c527a3fe497d75862f03b4092395c9c3cd50692", + "md5": "3c5ca83349f55a0a627d3d8e7f5041db", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_get1_ReceiptRequest.pod", + "type": "file", + "name": "CMS_get1_ReceiptRequest.pod", + "base_name": "CMS_get1_ReceiptRequest", + "extension": ".pod", + "size": 2862, + "date": "2017-02-16", + "sha1": "aff33178d77c77c29dd2a354b602eaae1f0d0c6d", + "md5": "2253f5f334c517cb3708ff1350d2c018", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_sign.pod", + "type": "file", + "name": "CMS_sign.pod", + "base_name": "CMS_sign", + "extension": ".pod", + "size": 5252, + "date": "2017-02-16", + "sha1": "7aa4c95012b85eb3f3b2c7698e1f8ceb378d7b66", + "md5": "7897370398e1ad40b52449a94a1ca12d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 123, + "end_line": 125, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 119, + "end_line": 121 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_sign_receipt.pod", + "type": "file", + "name": "CMS_sign_receipt.pod", + "base_name": "CMS_sign_receipt", + "extension": ".pod", + "size": 1517, + "date": "2017-02-16", + "sha1": "b5736234a5f1c91c08793beea8c6bffc2c95a5d5", + "md5": "b0ab6420a7697e8d59fdd9344208ab33", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_uncompress.pod", + "type": "file", + "name": "CMS_uncompress.pod", + "base_name": "CMS_uncompress", + "extension": ".pod", + "size": 1701, + "date": "2017-02-16", + "sha1": "8582c19043b3f5811a361d4c10a1fb8ebdce1add", + "md5": "c6e9f0c3dcd89c00cb13d837fe328343", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 54, + "end_line": 56, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 50, + "end_line": 52 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_verify.pod", + "type": "file", + "name": "CMS_verify.pod", + "base_name": "CMS_verify", + "extension": ".pod", + "size": 5024, + "date": "2017-02-16", + "sha1": "4f86d105c978dedfd7d23a8e00e3e2da2aaf3784", + "md5": "02b02afb1c41cb38c65cd844a43be28d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 126, + "end_line": 128, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 122, + "end_line": 124 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CMS_verify_receipt.pod", + "type": "file", + "name": "CMS_verify_receipt.pod", + "base_name": "CMS_verify_receipt", + "extension": ".pod", + "size": 1503, + "date": "2017-02-16", + "sha1": "a30dac22d7323a79b92ce7d33d38d6801bbb1fff", + "md5": "7896ec7b5152bf19a3078f17f1e4c7ec", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CONF_modules_free.pod", + "type": "file", + "name": "CONF_modules_free.pod", + "base_name": "CONF_modules_free", + "extension": ".pod", + "size": 1657, + "date": "2017-02-16", + "sha1": "6a2366707d938b272889c156b072685f169ef2ea", + "md5": "51ac0dec4f3475f4d86c10d2810a36e8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CONF_modules_load_file.pod", + "type": "file", + "name": "CONF_modules_load_file.pod", + "base_name": "CONF_modules_load_file", + "extension": ".pod", + "size": 4812, + "date": "2017-02-16", + "sha1": "cc99fa68afa84fb846630f573c5c8c5bca55f029", + "md5": "92772d71e57a9b04bb02e6e9aadfd75b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 131, + "end_line": 133, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 127, + "end_line": 129 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/crypto.pod", + "type": "file", + "name": "crypto.pod", + "base_name": "crypto", + "extension": ".pod", + "size": 1875, + "date": "2017-02-16", + "sha1": "572749e7ebc9d504c6378c9ed1e58b701506b3db", + "md5": "a0a459022d79edf48d779685e25cf30c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CRYPTO_get_ex_new_index.pod", + "type": "file", + "name": "CRYPTO_get_ex_new_index.pod", + "base_name": "CRYPTO_get_ex_new_index", + "extension": ".pod", + "size": 6523, + "date": "2017-02-16", + "sha1": "37127e778e8c83bc898826a32a361c8b677eb33f", + "md5": "52a4ad2da21694c9df3898fa6250c00e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 156, + "end_line": 158, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 152, + "end_line": 154 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CRYPTO_THREAD_run_once.pod", + "type": "file", + "name": "CRYPTO_THREAD_run_once.pod", + "base_name": "CRYPTO_THREAD_run_once", + "extension": ".pod", + "size": 4789, + "date": "2017-02-16", + "sha1": "d11b0346c21abb31e779cbfe8295bd20dc3e5e26", + "md5": "c184be81fb0d190397f9f19e86b60b70", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 158, + "end_line": 160, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 154, + "end_line": 156 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ct.pod", + "type": "file", + "name": "ct.pod", + "base_name": "ct", + "extension": ".pod", + "size": 1427, + "date": "2017-02-16", + "sha1": "42dd4526c4bbeeadf78d8d2d1a516fe3bcd4a249", + "md5": "34f877b1de3f3adb32d27bb6f7c0e96a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 50, + "end_line": 52, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 46, + "end_line": 48 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CT_POLICY_EVAL_CTX_new.pod", + "type": "file", + "name": "CT_POLICY_EVAL_CTX_new.pod", + "base_name": "CT_POLICY_EVAL_CTX_new", + "extension": ".pod", + "size": 3158, + "date": "2017-02-16", + "sha1": "1d564669cf5e9ce26cad1f5e7fc1adb439aa2f71", + "md5": "fdccd6a953668498492b9a00233e7d8e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CTLOG_new.pod", + "type": "file", + "name": "CTLOG_new.pod", + "base_name": "CTLOG_new", + "extension": ".pod", + "size": 2446, + "date": "2017-02-16", + "sha1": "5641564739a6a0a197cfbba508121d39b42ada3e", + "md5": "3551db17e684c9b5e49af598f9f31798", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CTLOG_STORE_get0_log_by_id.pod", + "type": "file", + "name": "CTLOG_STORE_get0_log_by_id.pod", + "base_name": "CTLOG_STORE_get0_log_by_id", + "extension": ".pod", + "size": 1344, + "date": "2017-02-16", + "sha1": "678b9b1a5a60e050099c1ae199eaaaf31cf2a3a3", + "md5": "870368847f0753ed425af9fb3e75f1b7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 44, + "end_line": 46, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 40, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/CTLOG_STORE_new.pod", + "type": "file", + "name": "CTLOG_STORE_new.pod", + "base_name": "CTLOG_STORE_new", + "extension": ".pod", + "size": 2438, + "date": "2017-02-16", + "sha1": "2075ec165d24524adb206bb12269783c8d8a9340", + "md5": "f3a016f8b35271ddf9e302313e40a009", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/d2i_DHparams.pod", + "type": "file", + "name": "d2i_DHparams.pod", + "base_name": "d2i_DHparams", + "extension": ".pod", + "size": 843, + "date": "2017-02-16", + "sha1": "ce7e4bb1c457f855749f2d46e50b493bd884b230", + "md5": "7c9df4d153cfd4c1df0975681ea5ba63", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 30, + "end_line": 32, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 26, + "end_line": 28 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/d2i_Netscape_RSA.pod", + "type": "file", + "name": "d2i_Netscape_RSA.pod", + "base_name": "d2i_Netscape_RSA", + "extension": ".pod", + "size": 1004, + "date": "2017-02-16", + "sha1": "c0b5b00118152459fba0d16565a57607d20db831", + "md5": "172f2f1a395e9034cdf2a082fa2040a4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 33, + "end_line": 35, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 29, + "end_line": 31 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/d2i_PKCS8PrivateKey_bio.pod", + "type": "file", + "name": "d2i_PKCS8PrivateKey_bio.pod", + "base_name": "d2i_PKCS8PrivateKey_bio", + "extension": ".pod", + "size": 2229, + "date": "2017-02-16", + "sha1": "1f6adfa35e859cbb8fb1956c262b50bfe4b690aa", + "md5": "2d47262babc7155111773f0ff4cc3d5e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/d2i_PrivateKey.pod", + "type": "file", + "name": "d2i_PrivateKey.pod", + "base_name": "d2i_PrivateKey", + "extension": ".pod", + "size": 2449, + "date": "2017-02-16", + "sha1": "4efa72ba558ba70043569a2500c34cfce26c7b38", + "md5": "85d7b2de5e864ddc9de52df1e8a6bb8f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 68, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 62, + "end_line": 64 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/d2i_X509.pod", + "type": "file", + "name": "d2i_X509.pod", + "base_name": "d2i_X509", + "extension": ".pod", + "size": 14354, + "date": "2017-02-16", + "sha1": "8549d2cbb01c15d4369d9ab41567759cd75bf89f", + "md5": "fb37a9253aea826f9c742ed6eb1b192a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 593, + "end_line": 595, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 589, + "end_line": 591 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DEFINE_STACK_OF.pod", + "type": "file", + "name": "DEFINE_STACK_OF.pod", + "base_name": "DEFINE_STACK_OF", + "extension": ".pod", + "size": 9514, + "date": "2017-02-16", + "sha1": "ae7bea6681468b6046c0d044ec260a6915703ac7", + "md5": "2b79003e329d1d4c481d33f7dff9310b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 228, + "end_line": 230, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 224, + "end_line": 226 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/des_modes.pod", + "type": "file", + "name": "des_modes.pod", + "base_name": "des_modes", + "extension": ".pod", + "size": 6225, + "date": "2017-02-16", + "sha1": "0e4e0e46314cc5808e1847f177b4272906f8901f", + "md5": "0772dc3be0d6f9714f5a53285aa46089", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 258, + "end_line": 260, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 254, + "end_line": 256 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DES_random_key.pod", + "type": "file", + "name": "DES_random_key.pod", + "base_name": "DES_random_key", + "extension": ".pod", + "size": 14021, + "date": "2017-02-16", + "sha1": "fb85ecdc3daeadc3c934f869d4d734121b22b264", + "md5": "23015fee94b0b72fa9446584bf254e36", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 305, + "end_line": 305, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 301, + "end_line": 303 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DH_generate_key.pod", + "type": "file", + "name": "DH_generate_key.pod", + "base_name": "DH_generate_key", + "extension": ".pod", + "size": 1587, + "date": "2017-02-16", + "sha1": "5377ac3bca3a1fe1463d1179a552fb7a116f2aec", + "md5": "59975500bd8fe2bc70a0e4266fe37dc4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DH_generate_parameters.pod", + "type": "file", + "name": "DH_generate_parameters.pod", + "base_name": "DH_generate_parameters", + "extension": ".pod", + "size": 3724, + "date": "2017-02-16", + "sha1": "a4fa399175f18f0717654b93d55a018b789d09e9", + "md5": "7552150b6313a0bb15fac669fe13a46d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 129, + "end_line": 131, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 125, + "end_line": 127 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DH_get0_pqg.pod", + "type": "file", + "name": "DH_get0_pqg.pod", + "base_name": "DH_get0_pqg", + "extension": ".pod", + "size": 4821, + "date": "2017-02-16", + "sha1": "ea1b0241a4c55b80878e1a52a308c02c043a3c61", + "md5": "020df504514a29ea78efa092975daa43", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DH_get_1024_160.pod", + "type": "file", + "name": "DH_get_1024_160.pod", + "base_name": "DH_get_1024_160", + "extension": ".pod", + "size": 2265, + "date": "2017-02-16", + "sha1": "ca159e8853bba15987d74c3c20828cf5a8392d6b", + "md5": "12fd1850ffe1a8f4d7f30e7498e35152", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DH_meth_new.pod", + "type": "file", + "name": "DH_meth_new.pod", + "base_name": "DH_meth_new", + "extension": ".pod", + "size": 7299, + "date": "2017-02-16", + "sha1": "23b068fc4762820c07004e9b0ce9be493fd668ec", + "md5": "174e7ceb1c3e776fd41700b589388069", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 151, + "end_line": 153, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 147, + "end_line": 149 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DH_new.pod", + "type": "file", + "name": "DH_new.pod", + "base_name": "DH_new", + "extension": ".pod", + "size": 1060, + "date": "2017-02-16", + "sha1": "f3f4118ba0a09d1856709b5d10468549649ccf47", + "md5": "92bfbf74a04c71e3c619409212310305", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 41, + "end_line": 43, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 37, + "end_line": 39 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DH_set_method.pod", + "type": "file", + "name": "DH_set_method.pod", + "base_name": "DH_set_method", + "extension": ".pod", + "size": 3072, + "date": "2017-02-16", + "sha1": "6baadc453c7eef24f0f5440562eccfdc44d79761", + "md5": "543f32f99c7a9cfb66ea971e2003dbd8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 80, + "end_line": 82, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 76, + "end_line": 78 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DH_size.pod", + "type": "file", + "name": "DH_size.pod", + "base_name": "DH_size", + "extension": ".pod", + "size": 949, + "date": "2017-02-16", + "sha1": "f5a273d5704845834c29077f4ba504c07f29a99b", + "md5": "cec57d388d89dc3e5e20ae5251038127", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_do_sign.pod", + "type": "file", + "name": "DSA_do_sign.pod", + "base_name": "DSA_do_sign", + "extension": ".pod", + "size": 1413, + "date": "2017-02-16", + "sha1": "fb7f5e82a2c1c5d9dfc618d88ce11d31236dd3b7", + "md5": "68914e73b2a20fdee8873cdaf5c91e68", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_dup_DH.pod", + "type": "file", + "name": "DSA_dup_DH.pod", + "base_name": "DSA_dup_DH", + "extension": ".pod", + "size": 940, + "date": "2017-02-16", + "sha1": "7e7dde65579ebfc2906313767e8b7aefd8fdaf2b", + "md5": "16e06a5639f8aceb1ddf7027a2572d34", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 36, + "end_line": 38, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 32, + "end_line": 34 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_generate_key.pod", + "type": "file", + "name": "DSA_generate_key.pod", + "base_name": "DSA_generate_key", + "extension": ".pod", + "size": 927, + "date": "2017-02-16", + "sha1": "d2d7acced284760830a82d3e098782c95037c5bd", + "md5": "240b1cb08fbc74e7e4d5e2ca75dbe2c1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 34, + "end_line": 36, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_generate_parameters.pod", + "type": "file", + "name": "DSA_generate_parameters.pod", + "base_name": "DSA_generate_parameters", + "extension": ".pod", + "size": 3795, + "date": "2017-02-16", + "sha1": "b04584263a825358d8023b2efe56f4658672ce9a", + "md5": "e806e7c60dc87625bb676b5c7987dcfa", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 117, + "end_line": 119, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 113, + "end_line": 115 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_get0_pqg.pod", + "type": "file", + "name": "DSA_get0_pqg.pod", + "base_name": "DSA_get0_pqg", + "extension": ".pod", + "size": 4353, + "date": "2017-02-16", + "sha1": "da38f63dd82e73f300dc862f079f5854aeaf6f52", + "md5": "8cdc42ee53b82be2f30ff8ddfbc52964", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 97, + "end_line": 99, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 93, + "end_line": 95 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_meth_new.pod", + "type": "file", + "name": "DSA_meth_new.pod", + "base_name": "DSA_meth_new", + "extension": ".pod", + "size": 9313, + "date": "2017-02-16", + "sha1": "21f2cb8fdb0647245002fd142c74b95aa637edcb", + "md5": "54a46ba0487b7d5fe1db78ff540bcf00", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 188, + "end_line": 190, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 184, + "end_line": 186 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_new.pod", + "type": "file", + "name": "DSA_new.pod", + "base_name": "DSA_new", + "extension": ".pod", + "size": 1129, + "date": "2017-02-16", + "sha1": "004c6b94660ea19f219ade3b550f034b5ea524c7", + "md5": "a4b1f870850a1d195ae1bc84c4955225", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 43, + "end_line": 45, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 39, + "end_line": 41 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_set_method.pod", + "type": "file", + "name": "DSA_set_method.pod", + "base_name": "DSA_set_method", + "extension": ".pod", + "size": 3097, + "date": "2017-02-16", + "sha1": "ce1cf045bedcac38f19b07eaa5e04722823226eb", + "md5": "cdd2947b289d38b88173ecb076644048", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 80, + "end_line": 82, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 76, + "end_line": 78 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_SIG_new.pod", + "type": "file", + "name": "DSA_SIG_new.pod", + "base_name": "DSA_SIG_new", + "extension": ".pod", + "size": 1706, + "date": "2017-02-16", + "sha1": "82927f13714bffe4f34cf21c8016c8dce2ccc15d", + "md5": "b877016678a4acfe52db81a081df504b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_sign.pod", + "type": "file", + "name": "DSA_sign.pod", + "base_name": "DSA_sign", + "extension": ".pod", + "size": 2255, + "date": "2017-02-16", + "sha1": "38e79c7983085e9cfd2ee5dc8f96bf9b9f1df039", + "md5": "247bdca019696fec41ffec563ca81c2c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/DSA_size.pod", + "type": "file", + "name": "DSA_size.pod", + "base_name": "DSA_size", + "extension": ".pod", + "size": 1014, + "date": "2017-02-16", + "sha1": "3bdc2869d157e30f08d308a8812b37783a3bf932", + "md5": "b2117e269e0e78913241863ce085eebd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EC_GFp_simple_method.pod", + "type": "file", + "name": "EC_GFp_simple_method.pod", + "base_name": "EC_GFp_simple_method", + "extension": ".pod", + "size": 3067, + "date": "2017-02-16", + "sha1": "862291425a01360a727657c098277d1021cc970d", + "md5": "223ab8b9e9b8928b77379797469cbade", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EC_GROUP_copy.pod", + "type": "file", + "name": "EC_GROUP_copy.pod", + "base_name": "EC_GROUP_copy", + "extension": ".pod", + "size": 11115, + "date": "2017-02-16", + "sha1": "d051ed05b3b6194e4b25d6cbbe994c489db12cc0", + "md5": "98cf995237b52ae8d21154c8b53f895b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 201, + "end_line": 203, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 197, + "end_line": 199 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EC_GROUP_new.pod", + "type": "file", + "name": "EC_GROUP_new.pod", + "base_name": "EC_GROUP_new", + "extension": ".pod", + "size": 5953, + "date": "2017-02-16", + "sha1": "9183ccbcbb25950977fc5dcbc842bf6ee4c3ff44", + "md5": "25c0df211a47e61942d5e91c0d268c28", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 115, + "end_line": 117, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 111, + "end_line": 113 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EC_KEY_get_enc_flags.pod", + "type": "file", + "name": "EC_KEY_get_enc_flags.pod", + "base_name": "EC_KEY_get_enc_flags", + "extension": ".pod", + "size": 2077, + "date": "2017-02-16", + "sha1": "46252fbab0dd91942a2a6fe7fe7fdcbb96679bf0", + "md5": "5a6d9055ae1676ee255421a8787fe2ef", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 54, + "end_line": 56, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 50, + "end_line": 52 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EC_KEY_new.pod", + "type": "file", + "name": "EC_KEY_new.pod", + "base_name": "EC_KEY_new", + "extension": ".pod", + "size": 8116, + "date": "2017-02-16", + "sha1": "b363e7657c996a507eee8670b395c9c921b86db0", + "md5": "1e9f3db59d150570fd018b1c2d694566", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 178, + "end_line": 180, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 174, + "end_line": 176 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EC_POINT_add.pod", + "type": "file", + "name": "EC_POINT_add.pod", + "base_name": "EC_POINT_add", + "extension": ".pod", + "size": 4013, + "date": "2017-02-16", + "sha1": "ff92e547b17200541ef0972c36b953421e784a0b", + "md5": "eba59d81e7bcd1800a377d491af10683", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 75, + "end_line": 77, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 71, + "end_line": 73 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EC_POINT_new.pod", + "type": "file", + "name": "EC_POINT_new.pod", + "base_name": "EC_POINT_new", + "extension": ".pod", + "size": 9760, + "date": "2017-02-16", + "sha1": "906479796829d69350bb2e362f3c7a4500d8b5d5", + "md5": "4244d40dafc62a6719863f6ceaac2db6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 191, + "end_line": 193, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 187, + "end_line": 189 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ECDSA_SIG_new.pod", + "type": "file", + "name": "ECDSA_SIG_new.pod", + "base_name": "ECDSA_SIG_new", + "extension": ".pod", + "size": 7683, + "date": "2017-02-16", + "sha1": "155d0a2f3a3718438d4dee9fe5c5e1ea8d4209cf", + "md5": "c7b11a7c151b7220a086dc4a806ffb4b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 202, + "end_line": 204, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 198, + "end_line": 200 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ECPKParameters_print.pod", + "type": "file", + "name": "ECPKParameters_print.pod", + "base_name": "ECPKParameters_print", + "extension": ".pod", + "size": 1291, + "date": "2017-02-16", + "sha1": "5cc0d0e5ec2e470d1fa05179c2dcec9e12a9c5a0", + "md5": "fea4295305e7dc794022c3d53bc5a5e6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ENGINE_add.pod", + "type": "file", + "name": "ENGINE_add.pod", + "base_name": "ENGINE_add", + "extension": ".pod", + "size": 30300, + "date": "2017-02-16", + "sha1": "a43bfdb73ed379bd9b69e6246213d11283bd9eaf", + "md5": "b04211d7a4b03fc72f66590c59a3b078", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 606, + "end_line": 606, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 602, + "end_line": 604 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_clear_error.pod", + "type": "file", + "name": "ERR_clear_error.pod", + "base_name": "ERR_clear_error", + "extension": ".pod", + "size": 663, + "date": "2017-02-16", + "sha1": "02495bc777e9c2fcd4f3495bfb7685eeff0fd5ff", + "md5": "b23e151cece40bafbce12f188b9ca4c6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 29, + "end_line": 31, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 25, + "end_line": 27 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_error_string.pod", + "type": "file", + "name": "ERR_error_string.pod", + "base_name": "ERR_error_string", + "extension": ".pod", + "size": 2356, + "date": "2017-02-16", + "sha1": "0b5b36f41d01b44f57370b29bc8b773b694252a1", + "md5": "342fa8f9774e71a4689586f6cde59f7f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_get_error.pod", + "type": "file", + "name": "ERR_get_error.pod", + "base_name": "ERR_get_error", + "extension": ".pod", + "size": 2699, + "date": "2017-02-16", + "sha1": "fdbc7f87d1a87e17fb240712fc7684ae016ef349", + "md5": "52e17e3c2a3ffa6f7d77f9658a25dc75", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_GET_LIB.pod", + "type": "file", + "name": "ERR_GET_LIB.pod", + "base_name": "ERR_GET_LIB", + "extension": ".pod", + "size": 1822, + "date": "2017-02-16", + "sha1": "06325cf5c1685f7e34eabf9cc15e7e4bab6b66f8", + "md5": "c5c745dff0a6405fb364a0206bc66400", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 61, + "end_line": 63, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 57, + "end_line": 59 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_load_crypto_strings.pod", + "type": "file", + "name": "ERR_load_crypto_strings.pod", + "base_name": "ERR_load_crypto_strings", + "extension": ".pod", + "size": 1618, + "date": "2017-02-16", + "sha1": "2ebc99b308f518caf93c92cfc0ad531d58895cfd", + "md5": "95b7bc7c86f0142d56782b2325c78199", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_load_strings.pod", + "type": "file", + "name": "ERR_load_strings.pod", + "base_name": "ERR_load_strings", + "extension": ".pod", + "size": 1409, + "date": "2017-02-16", + "sha1": "123be2c9c1a40a40f9d124314e7bf4a65c5f5eed", + "md5": "8defc280453a19ca9e94450aa90318a2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_print_errors.pod", + "type": "file", + "name": "ERR_print_errors.pod", + "base_name": "ERR_print_errors", + "extension": ".pod", + "size": 1738, + "date": "2017-02-16", + "sha1": "8828c2355bd01411be3a625772cb8951d52af31a", + "md5": "05dacccb543e93d5c5256fbaff232fde", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 57, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 51, + "end_line": 53 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_put_error.pod", + "type": "file", + "name": "ERR_put_error.pod", + "base_name": "ERR_put_error", + "extension": ".pod", + "size": 2514, + "date": "2017-02-16", + "sha1": "10707c5d2a0c72557d1fc3f5ce9916a13fe94d78", + "md5": "a016a830e2b1bb568ff60960b5cccb08", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_remove_state.pod", + "type": "file", + "name": "ERR_remove_state.pod", + "base_name": "ERR_remove_state", + "extension": ".pod", + "size": 1287, + "date": "2017-02-16", + "sha1": "ac36dcb6414ce4950563393970ec8125056c253c", + "md5": "21d999fad3aea47ed1b9c54d5e270f01", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/ERR_set_mark.pod", + "type": "file", + "name": "ERR_set_mark.pod", + "base_name": "ERR_set_mark", + "extension": ".pod", + "size": 1023, + "date": "2017-02-16", + "sha1": "c13c7af66cbb1b030411cbb3ed536c1b3860f007", + "md5": "40852098be3acceef562266e50ace15d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 38, + "end_line": 40, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 34, + "end_line": 36 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/evp.pod", + "type": "file", + "name": "evp.pod", + "base_name": "evp", + "extension": ".pod", + "size": 4219, + "date": "2017-02-16", + "sha1": "f8531e6b2acd2dbcc5fc87eb15f71f5d06dd8cd4", + "md5": "af0b93f67dbb7acfb23174137345afe5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 111, + "end_line": 113, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 107, + "end_line": 109 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_BytesToKey.pod", + "type": "file", + "name": "EVP_BytesToKey.pod", + "base_name": "EVP_BytesToKey", + "extension": ".pod", + "size": 2611, + "date": "2017-02-16", + "sha1": "db6ae058de424d6e4ced1af35f3c7ee5f4792cbe", + "md5": "b004fa115c37f1d63b79daadfc38f07a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 73, + "end_line": 75, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 69, + "end_line": 71 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_CIPHER_CTX_get_cipher_data.pod", + "type": "file", + "name": "EVP_CIPHER_CTX_get_cipher_data.pod", + "base_name": "EVP_CIPHER_CTX_get_cipher_data", + "extension": ".pod", + "size": 1771, + "date": "2017-02-16", + "sha1": "29cc2f472a71bee07d92bf26f23968ba00a99603", + "md5": "b0460fb26947879a3061e1111abe8d09", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_CIPHER_meth_new.pod", + "type": "file", + "name": "EVP_CIPHER_meth_new.pod", + "base_name": "EVP_CIPHER_meth_new", + "extension": ".pod", + "size": 9247, + "date": "2017-02-16", + "sha1": "975f976777d1336237380a47d08f2bacfdb5d6b3", + "md5": "6de5eb53e28304830fa043ac0d52eb85", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 233, + "end_line": 235, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 229, + "end_line": 231 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_DigestInit.pod", + "type": "file", + "name": "EVP_DigestInit.pod", + "base_name": "EVP_DigestInit", + "extension": ".pod", + "size": 9333, + "date": "2017-02-16", + "sha1": "3bb0fad7086ead4414eff5c96113c776d98dfa0d", + "md5": "ef88215496dbeedbaba4a921c977a72b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 254, + "end_line": 256, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 250, + "end_line": 252 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_DigestSignInit.pod", + "type": "file", + "name": "EVP_DigestSignInit.pod", + "base_name": "EVP_DigestSignInit", + "extension": ".pod", + "size": 3752, + "date": "2017-02-16", + "sha1": "db982d880d03c89b7cbc268ae3fc90b8f19aaf16", + "md5": "b9f6f1e45d875dcafef21f9f4283ce68", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_DigestVerifyInit.pod", + "type": "file", + "name": "EVP_DigestVerifyInit.pod", + "base_name": "EVP_DigestVerifyInit", + "extension": ".pod", + "size": 3412, + "date": "2017-02-16", + "sha1": "02f093e1098ac72bdb3bd99bfce02bd0c92a6b63", + "md5": "3b4e4063039d063687ca888870b7349e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 86, + "end_line": 88, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 82, + "end_line": 84 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_EncodeInit.pod", + "type": "file", + "name": "EVP_EncodeInit.pod", + "base_name": "EVP_EncodeInit", + "extension": ".pod", + "size": 8205, + "date": "2017-02-16", + "sha1": "f9d20bba8c5643a1bfd831fd08f73a799d0e8c8b", + "md5": "84444b484a5d36f93cf2e87071f1acd1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 157, + "end_line": 159, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 153, + "end_line": 155 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_EncryptInit.pod", + "type": "file", + "name": "EVP_EncryptInit.pod", + "base_name": "EVP_EncryptInit", + "extension": ".pod", + "size": 28420, + "date": "2017-02-16", + "sha1": "970387f9b1e468c5f26cdfa2e2e794e47521dd9a", + "md5": "8722ab699e57a78190bbd5c12356522d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 657, + "end_line": 659, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 653, + "end_line": 655 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_MD_meth_new.pod", + "type": "file", + "name": "EVP_MD_meth_new.pod", + "base_name": "EVP_MD_meth_new", + "extension": ".pod", + "size": 6936, + "date": "2017-02-16", + "sha1": "ddcc8d60fcf2f88127ba525c88a723b367522a5b", + "md5": "3651944cb6e47cc0dd97541ef8a5410f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 165, + "end_line": 167, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 161, + "end_line": 163 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_OpenInit.pod", + "type": "file", + "name": "EVP_OpenInit.pod", + "base_name": "EVP_OpenInit", + "extension": ".pod", + "size": 2257, + "date": "2017-02-16", + "sha1": "06337cc81a0cd403449d50988d29a2b3cdf8ca9a", + "md5": "f76edd1bcd3354df56f4ac89d2f7469b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_cmp.pod", + "type": "file", + "name": "EVP_PKEY_cmp.pod", + "base_name": "EVP_PKEY_cmp", + "extension": ".pod", + "size": 2440, + "date": "2017-02-16", + "sha1": "9ad20acf6019e4b3bbf45a6783cae49fe72a3f8b", + "md5": "0782f2b21752b6101b62f0a02f43d61a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 68, + "end_line": 70, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 64, + "end_line": 66 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_CTX_ctrl.pod", + "type": "file", + "name": "EVP_PKEY_CTX_ctrl.pod", + "base_name": "EVP_PKEY_CTX_ctrl", + "extension": ".pod", + "size": 6814, + "date": "2017-02-16", + "sha1": "bf711c2046990fdf9609447ab43d69d8e20d8b47", + "md5": "bf3d5887106699f784af054147ddb70e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 149, + "end_line": 151, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 145, + "end_line": 147 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_CTX_new.pod", + "type": "file", + "name": "EVP_PKEY_CTX_new.pod", + "base_name": "EVP_PKEY_CTX_new", + "extension": ".pod", + "size": 1908, + "date": "2017-02-16", + "sha1": "ae09b93690f3d3a4f923b071cf138a56ba7aa943", + "md5": "7f9e0818a46c7ae99b497f45cb48c026", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_CTX_set_hkdf_md.pod", + "type": "file", + "name": "EVP_PKEY_CTX_set_hkdf_md.pod", + "base_name": "EVP_PKEY_CTX_set_hkdf_md", + "extension": ".pod", + "size": 4174, + "date": "2017-02-16", + "sha1": "88c2bb0ed450443abf0f7d16c45f08c48889c888", + "md5": "add035aa323921471952071f2afd1a33", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 123, + "end_line": 125, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 119, + "end_line": 121 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_CTX_set_tls1_prf_md.pod", + "type": "file", + "name": "EVP_PKEY_CTX_set_tls1_prf_md.pod", + "base_name": "EVP_PKEY_CTX_set_tls1_prf_md", + "extension": ".pod", + "size": 3597, + "date": "2017-02-16", + "sha1": "aee9e3d60b06969dfe20cb69d6837786941f6a84", + "md5": "4d88f199007d0b99aac887eba3460f9d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_decrypt.pod", + "type": "file", + "name": "EVP_PKEY_decrypt.pod", + "base_name": "EVP_PKEY_decrypt", + "extension": ".pod", + "size": 2941, + "date": "2017-02-16", + "sha1": "f9a65c104009d7e04d6f6b1d693dc07a7c41a744", + "md5": "a0ef380dc530dbeb71389cade980fa77", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 97, + "end_line": 99, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 93, + "end_line": 95 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_derive.pod", + "type": "file", + "name": "EVP_PKEY_derive.pod", + "base_name": "EVP_PKEY_derive", + "extension": ".pod", + "size": 2877, + "date": "2017-02-16", + "sha1": "aaf93da2b7d72a25a0d46b3270f821fbce5e7e47", + "md5": "4fdcbe4fcb26b533c320b410cf36ca05", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 97, + "end_line": 99, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 93, + "end_line": 95 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_encrypt.pod", + "type": "file", + "name": "EVP_PKEY_encrypt.pod", + "base_name": "EVP_PKEY_encrypt", + "extension": ".pod", + "size": 3199, + "date": "2017-02-16", + "sha1": "495932ef3b6f5c9a204778f3fc78c8890657c08e", + "md5": "8cb59147196fc5bb01d3986d2ca8187a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_get_default_digest_nid.pod", + "type": "file", + "name": "EVP_PKEY_get_default_digest_nid.pod", + "base_name": "EVP_PKEY_get_default_digest_nid", + "extension": ".pod", + "size": 1343, + "date": "2017-02-16", + "sha1": "5ee8db867eb0812cd2a82f00b155724952f8f626", + "md5": "91c5139d12a13eba32cf621dd8bfd2e8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_keygen.pod", + "type": "file", + "name": "EVP_PKEY_keygen.pod", + "base_name": "EVP_PKEY_keygen", + "extension": ".pod", + "size": 5680, + "date": "2017-02-16", + "sha1": "332d0f4d91816688ff4e01253441f1f3eaeb2478", + "md5": "34bb01a86a33936cde0eb576c67d244b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 170, + "end_line": 172, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 166, + "end_line": 168 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_new.pod", + "type": "file", + "name": "EVP_PKEY_new.pod", + "base_name": "EVP_PKEY_new", + "extension": ".pod", + "size": 1660, + "date": "2017-02-16", + "sha1": "1fb4db3ea675ab2f33e20bdb2d1adf32b859ebff", + "md5": "9a3e04a9cde02f16d5386761079225bf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_print_private.pod", + "type": "file", + "name": "EVP_PKEY_print_private.pod", + "base_name": "EVP_PKEY_print_private", + "extension": ".pod", + "size": 2033, + "date": "2017-02-16", + "sha1": "d836a6eca6e738e7f9ac73a101151e229affa073", + "md5": "eadfe9a91ceb5d57f3c3ff4439e92ace", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_set1_RSA.pod", + "type": "file", + "name": "EVP_PKEY_set1_RSA.pod", + "base_name": "EVP_PKEY_set1_RSA", + "extension": ".pod", + "size": 4577, + "date": "2017-02-16", + "sha1": "be205209d8dae2db95afcb207ff0abf6459377c9", + "md5": "221fc79da19612596965963d91286211", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 115, + "end_line": 117, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 111, + "end_line": 113 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_sign.pod", + "type": "file", + "name": "EVP_PKEY_sign.pod", + "base_name": "EVP_PKEY_sign", + "extension": ".pod", + "size": 3437, + "date": "2017-02-16", + "sha1": "9d52582ab273c73f786ef590bc9a4d979e6c1223", + "md5": "0dd426f0bd4ec7c7475c1a5fb89dad9b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 110, + "end_line": 112, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 106, + "end_line": 108 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_verify.pod", + "type": "file", + "name": "EVP_PKEY_verify.pod", + "base_name": "EVP_PKEY_verify", + "extension": ".pod", + "size": 3067, + "date": "2017-02-16", + "sha1": "0102906ad9622101f36fb56cf5de9bce4670363f", + "md5": "32dac640e3e9f5c5c4c03cfd33ea0c2a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 95, + "end_line": 97, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 91, + "end_line": 93 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_PKEY_verify_recover.pod", + "type": "file", + "name": "EVP_PKEY_verify_recover.pod", + "base_name": "EVP_PKEY_verify_recover", + "extension": ".pod", + "size": 3538, + "date": "2017-02-16", + "sha1": "297dab14db199ab33dbc4055bb11ba9cb70859b6", + "md5": "f0759c350d790a121e4fc88257160134", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_SealInit.pod", + "type": "file", + "name": "EVP_SealInit.pod", + "base_name": "EVP_SealInit", + "extension": ".pod", + "size": 3274, + "date": "2017-02-16", + "sha1": "6996bf59164326b52703dcfe6f5e26666dadff76", + "md5": "dd56bd4f371577d96fbc555bdb8ca4d0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_SignInit.pod", + "type": "file", + "name": "EVP_SignInit.pod", + "base_name": "EVP_SignInit", + "extension": ".pod", + "size": 3874, + "date": "2017-02-16", + "sha1": "f88ad68b4967ddc6c02ec836038702a88413bc6b", + "md5": "17fff87ada041ed161ca3e05ac919b6c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 105, + "end_line": 107, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 101, + "end_line": 103 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/EVP_VerifyInit.pod", + "type": "file", + "name": "EVP_VerifyInit.pod", + "base_name": "EVP_VerifyInit", + "extension": ".pod", + "size": 3362, + "date": "2017-02-16", + "sha1": "b0d3e3332424898a4c23070e11a307834cc46cd3", + "md5": "9ec9fa226caefbe16cdac031e0c4e3ed", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 94, + "end_line": 96, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 90, + "end_line": 92 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/HMAC.pod", + "type": "file", + "name": "HMAC.pod", + "base_name": "HMAC", + "extension": ".pod", + "size": 4940, + "date": "2017-02-16", + "sha1": "4d8797153be8bda6c88476f2753dd2c45734539b", + "md5": "21fcf53ca90290e1dff9c52f60bfc36a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 146, + "end_line": 148, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 142, + "end_line": 144 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/i2d_CMS_bio_stream.pod", + "type": "file", + "name": "i2d_CMS_bio_stream.pod", + "base_name": "i2d_CMS_bio_stream", + "extension": ".pod", + "size": 1204, + "date": "2017-02-16", + "sha1": "dd1772e81b813f4923087c5d2f6e02db785e0459", + "md5": "4b99300771954fcfa6ddc74c8d351e7c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/i2d_PKCS7_bio_stream.pod", + "type": "file", + "name": "i2d_PKCS7_bio_stream.pod", + "base_name": "i2d_PKCS7_bio_stream", + "extension": ".pod", + "size": 1201, + "date": "2017-02-16", + "sha1": "7cb8bb600ba8789dd508c07510a2a4094441f6c9", + "md5": "531ba0e15bc4399370e6da01befedf67", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/i2d_re_X509_tbs.pod", + "type": "file", + "name": "i2d_re_X509_tbs.pod", + "base_name": "i2d_re_X509_tbs", + "extension": ".pod", + "size": 2825, + "date": "2017-02-16", + "sha1": "deace8a3e86718de9acb475390c8fe5eadb6d12e", + "md5": "439ab401a7e1bd1a7de4111fe0287915", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/MD5.pod", + "type": "file", + "name": "MD5.pod", + "base_name": "MD5", + "extension": ".pod", + "size": 2916, + "date": "2017-02-16", + "sha1": "f70cc6a3affce700e3241649315a95c632e412d7", + "md5": "0d6568f6f066edf29b49894f9ad60ce6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 96, + "end_line": 98, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 92, + "end_line": 94 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/MDC2_Init.pod", + "type": "file", + "name": "MDC2_Init.pod", + "base_name": "MDC2_Init", + "extension": ".pod", + "size": 1872, + "date": "2017-02-16", + "sha1": "5759cca10de3b691963f279405dec9460c3079b2", + "md5": "ee034a52b18c30f0ea415a7618a46342", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/o2i_SCT_LIST.pod", + "type": "file", + "name": "o2i_SCT_LIST.pod", + "base_name": "o2i_SCT_LIST", + "extension": ".pod", + "size": 1333, + "date": "2017-02-16", + "sha1": "33f0dcdafa49c72c87a55b57f4f734daa5ab7bf0", + "md5": "7ab375b52d490462c4466e259f103630", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 43, + "end_line": 45, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 39, + "end_line": 41 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OBJ_nid2obj.pod", + "type": "file", + "name": "OBJ_nid2obj.pod", + "base_name": "OBJ_nid2obj", + "extension": ".pod", + "size": 6933, + "date": "2017-02-16", + "sha1": "b37ffa5c742bab6d7b4845c6830486093e38d236", + "md5": "07c9bfe2ab8a74d4801ba6812901aec5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 193, + "end_line": 195, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 189, + "end_line": 191 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OCSP_cert_to_id.pod", + "type": "file", + "name": "OCSP_cert_to_id.pod", + "base_name": "OCSP_cert_to_id", + "extension": ".pod", + "size": 2851, + "date": "2017-02-16", + "sha1": "0a5a917be2b76a11ef3bb8e9269d9fa60001dc88", + "md5": "b6ef374fd625668f361a9120778e359d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 84, + "end_line": 86, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 80, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OCSP_request_add1_nonce.pod", + "type": "file", + "name": "OCSP_request_add1_nonce.pod", + "base_name": "OCSP_request_add1_nonce", + "extension": ".pod", + "size": 3096, + "date": "2017-02-16", + "sha1": "e85be8d59e5b93de8e5fb631530f57fc3c206720", + "md5": "35d1834f31c69e1a6bea913a9ed10d47", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OCSP_REQUEST_new.pod", + "type": "file", + "name": "OCSP_REQUEST_new.pod", + "base_name": "OCSP_REQUEST_new", + "extension": ".pod", + "size": 3509, + "date": "2017-02-16", + "sha1": "2c627ac04912031d109bcf60d2383e0024443a48", + "md5": "4de20822da05d1337122c6097fad70ca", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 113, + "end_line": 115, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 109, + "end_line": 111 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OCSP_resp_find_status.pod", + "type": "file", + "name": "OCSP_resp_find_status.pod", + "base_name": "OCSP_resp_find_status", + "extension": ".pod", + "size": 5615, + "date": "2017-02-16", + "sha1": "523a76866054e26e2e6d2960bcbe9029c28888aa", + "md5": "342740a2dd43ff9df0b74e7e0110b92a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 134, + "end_line": 136, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 130, + "end_line": 132 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OCSP_response_status.pod", + "type": "file", + "name": "OCSP_response_status.pod", + "base_name": "OCSP_response_status", + "extension": ".pod", + "size": 3253, + "date": "2017-02-16", + "sha1": "bb424589763501a62407af2b274e5028c3b6a19c", + "md5": "baac8f9bbe2241a15617ec8fea044b6e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 95, + "end_line": 97, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 91, + "end_line": 93 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OCSP_sendreq_new.pod", + "type": "file", + "name": "OCSP_sendreq_new.pod", + "base_name": "OCSP_sendreq_new", + "extension": ".pod", + "size": 4581, + "date": "2017-02-16", + "sha1": "4dbb8d0dddd578ebd475242b7b93f408027b8104", + "md5": "7898cc0a075a6e7a5d76ea2eb2a575ec", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 117, + "end_line": 119, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 113, + "end_line": 115 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OpenSSL_add_all_algorithms.pod", + "type": "file", + "name": "OpenSSL_add_all_algorithms.pod", + "base_name": "OpenSSL_add_all_algorithms", + "extension": ".pod", + "size": 2913, + "date": "2017-02-16", + "sha1": "fee4fb8807749f10c9dde9b4948d08ab6b2b7db0", + "md5": "cf04b1090d7430cd04ec58c3d23ff983", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_Applink.pod", + "type": "file", + "name": "OPENSSL_Applink.pod", + "base_name": "OPENSSL_Applink", + "extension": ".pod", + "size": 1048, + "date": "2017-02-16", + "sha1": "d5b74bb9eb5a788733f27e353f6968f1bbfdd599", + "md5": "856eb5cfb0ef20ff68f62b941a4d138b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 26, + "end_line": 28, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_config.pod", + "type": "file", + "name": "OPENSSL_config.pod", + "base_name": "OPENSSL_config", + "extension": ".pod", + "size": 2447, + "date": "2017-02-16", + "sha1": "9c69317e1d51ab467bb85533f9b4f05d9b5b2f72", + "md5": "101adb7d9d80bf433fb3742f924a0ef1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_ia32cap.pod", + "type": "file", + "name": "OPENSSL_ia32cap.pod", + "base_name": "OPENSSL_ia32cap", + "extension": ".pod", + "size": 5012, + "date": "2017-02-16", + "sha1": "7382a940efcb1596db8ef8c3d06cb236b2ea7176", + "md5": "84bdb18646f4f794cee1a4e8e0e587c0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 135, + "end_line": 137, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 131, + "end_line": 133 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_init_crypto.pod", + "type": "file", + "name": "OPENSSL_init_crypto.pod", + "base_name": "OPENSSL_init_crypto", + "extension": ".pod", + "size": 10177, + "date": "2017-02-16", + "sha1": "f15b8c31c50564b7a0a2e2089e302bec987d4fc9", + "md5": "b64fcf02994300c4335ed26c5f193c52", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 240, + "end_line": 242, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 236, + "end_line": 238 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_instrument_bus.pod", + "type": "file", + "name": "OPENSSL_instrument_bus.pod", + "base_name": "OPENSSL_instrument_bus", + "extension": ".pod", + "size": 2021, + "date": "2017-02-16", + "sha1": "760ed95c7a64566c4bb79329ea758b4e2f9f0eb1", + "md5": "d06bee9c1e7712c6325d9af49a191ea1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_LH_COMPFUNC.pod", + "type": "file", + "name": "OPENSSL_LH_COMPFUNC.pod", + "base_name": "OPENSSL_LH_COMPFUNC", + "extension": ".pod", + "size": 9134, + "date": "2017-02-16", + "sha1": "312b910acf59e4fe7cd15c7e52dde659c69aaeb4", + "md5": "b14d22cfd61bd43ad71dfec35e7b9895", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 234, + "end_line": 236, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 230, + "end_line": 232 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_LH_stats.pod", + "type": "file", + "name": "OPENSSL_LH_stats.pod", + "base_name": "OPENSSL_LH_stats", + "extension": ".pod", + "size": 2217, + "date": "2017-02-16", + "sha1": "80e3e5175b4d4252864a52d01e6ac35a6b3bee77", + "md5": "9107ed77ff44d1caa300514ae3efeb59", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_load_builtin_modules.pod", + "type": "file", + "name": "OPENSSL_load_builtin_modules.pod", + "base_name": "OPENSSL_load_builtin_modules", + "extension": ".pod", + "size": 1574, + "date": "2017-02-16", + "sha1": "681c58ee3892110a70aa45dfd0e3abaabcf089ca", + "md5": "258829fb9e8ce16179ba07b830dd8a09", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_malloc.pod", + "type": "file", + "name": "OPENSSL_malloc.pod", + "base_name": "OPENSSL_malloc", + "extension": ".pod", + "size": 8697, + "date": "2017-02-16", + "sha1": "59242393af3a1d4d9ece18df3d64ac5eb22cc3f4", + "md5": "d67a42110f4e079ff372f7a8d032a262", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 202, + "end_line": 204, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 198, + "end_line": 200 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_secure_malloc.pod", + "type": "file", + "name": "OPENSSL_secure_malloc.pod", + "base_name": "OPENSSL_secure_malloc", + "extension": ".pod", + "size": 4538, + "date": "2017-02-16", + "sha1": "31b724d5e3a3838c8ce0ee9136f973247783874d", + "md5": "dddcb3741c1c71d9cdb76fab35dc8bc3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 118, + "end_line": 120, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 114, + "end_line": 116 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/OPENSSL_VERSION_NUMBER.pod", + "type": "file", + "name": "OPENSSL_VERSION_NUMBER.pod", + "base_name": "OPENSSL_VERSION_NUMBER", + "extension": ".pod", + "size": 2574, + "date": "2017-02-16", + "sha1": "5a7d20d7c8f6992c0d070b9e2830c74b04ae3dd7", + "md5": "d4b25103b496fb52d084c9c438c3be48", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 101, + "end_line": 103, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 97, + "end_line": 99 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PEM_read.pod", + "type": "file", + "name": "PEM_read.pod", + "base_name": "PEM_read", + "extension": ".pod", + "size": 5186, + "date": "2017-02-16", + "sha1": "1cb57937623751a3e8249c76e3f352430fdcad8d", + "md5": "d72aed233001882716368a052bf8ebed", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 122, + "end_line": 124, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 118, + "end_line": 120 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PEM_read_bio_PrivateKey.pod", + "type": "file", + "name": "PEM_read_bio_PrivateKey.pod", + "base_name": "PEM_read_bio_PrivateKey", + "extension": ".pod", + "size": 19519, + "date": "2017-02-16", + "sha1": "73754b2d5667539bd92c3356fa2c64403cd7cfed", + "md5": "6ef8ec96388ee4cbf79af03846c46d07", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 476, + "end_line": 476, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 472, + "end_line": 474 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PEM_read_CMS.pod", + "type": "file", + "name": "PEM_read_CMS.pod", + "base_name": "PEM_read_CMS", + "extension": ".pod", + "size": 2742, + "date": "2017-02-16", + "sha1": "798f46e44a2c59c51046be4bebc5ca3ef8cd32b7", + "md5": "6411ef397ac43c483bc71d2126c3444e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 92, + "end_line": 94, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 88, + "end_line": 90 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PEM_write_bio_CMS_stream.pod", + "type": "file", + "name": "PEM_write_bio_CMS_stream.pod", + "base_name": "PEM_write_bio_CMS_stream", + "extension": ".pod", + "size": 1161, + "date": "2017-02-16", + "sha1": "654ff9be8d60c68016de1d13cfab4d749bd2830e", + "md5": "d80999e6ec822bc966ef7d8c359a2a9d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PEM_write_bio_PKCS7_stream.pod", + "type": "file", + "name": "PEM_write_bio_PKCS7_stream.pod", + "base_name": "PEM_write_bio_PKCS7_stream", + "extension": ".pod", + "size": 1141, + "date": "2017-02-16", + "sha1": "58e205088e7f93f58b8a3af827b6018834d9b035", + "md5": "ae5e36c86068f63d0cb2d712a3599061", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 44, + "end_line": 46, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 40, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS12_create.pod", + "type": "file", + "name": "PKCS12_create.pod", + "base_name": "PKCS12_create", + "extension": ".pod", + "size": 2873, + "date": "2017-02-16", + "sha1": "aafd2e7f01915da30bad8113dfadfbe40df5f5cf", + "md5": "3eadefb3e410c6ed9d72ffbeadb71eb3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS12_newpass.pod", + "type": "file", + "name": "PKCS12_newpass.pod", + "base_name": "PKCS12_newpass", + "extension": ".pod", + "size": 2749, + "date": "2017-02-16", + "sha1": "ed1c2a0f44a61a46c5944ee359c60b959a6eac5c", + "md5": "ffe6a497f38143eb6353fe564e5da575", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS12_parse.pod", + "type": "file", + "name": "PKCS12_parse.pod", + "base_name": "PKCS12_parse", + "extension": ".pod", + "size": 1857, + "date": "2017-02-16", + "sha1": "a4c6e42088717cab16bab4cb17a7e287ba5a7d8c", + "md5": "90ffd76fdddd4b69d600647e1c214c16", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS5_PBKDF2_HMAC.pod", + "type": "file", + "name": "PKCS5_PBKDF2_HMAC.pod", + "base_name": "PKCS5_PBKDF2_HMAC", + "extension": ".pod", + "size": 2524, + "date": "2017-02-16", + "sha1": "52dbe32e6da091df7ace9d62692df515d834918d", + "md5": "9123d664b0dd6d89e59597998ea19cac", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 68, + "end_line": 70, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 64, + "end_line": 66 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS7_decrypt.pod", + "type": "file", + "name": "PKCS7_decrypt.pod", + "base_name": "PKCS7_decrypt", + "extension": ".pod", + "size": 1749, + "date": "2017-02-16", + "sha1": "5479f41d09f6181d5d42d5d075f488e4668f3d80", + "md5": "77175bc55b89d12460eac2ba6150b2ff", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS7_encrypt.pod", + "type": "file", + "name": "PKCS7_encrypt.pod", + "base_name": "PKCS7_encrypt", + "extension": ".pod", + "size": 3040, + "date": "2017-02-16", + "sha1": "52d51ae5e197947e5309ea55664a62aa3ffff09c", + "md5": "5131bb49be92d0c682d60370119d20f9", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS7_sign.pod", + "type": "file", + "name": "PKCS7_sign.pod", + "base_name": "PKCS7_sign", + "extension": ".pod", + "size": 4750, + "date": "2017-02-16", + "sha1": "7d4eac7abf8af203955b91fbed1246591b7ca86e", + "md5": "bf4d5647536f03dbc97fa3a48e152560", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 119, + "end_line": 121, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 115, + "end_line": 117 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS7_sign_add_signer.pod", + "type": "file", + "name": "PKCS7_sign_add_signer.pod", + "base_name": "PKCS7_sign_add_signer", + "extension": ".pod", + "size": 3473, + "date": "2017-02-16", + "sha1": "5e359e1d4a1e235662b12738e77396dd4163f1de", + "md5": "f647cf126350d8e356da2f77d8de91be", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/PKCS7_verify.pod", + "type": "file", + "name": "PKCS7_verify.pod", + "base_name": "PKCS7_verify", + "extension": ".pod", + "size": 5088, + "date": "2017-02-16", + "sha1": "787d644e9b44441cfeb9013e7bead31a8a33a7ab", + "md5": "2eb1993be9e839de8114b764bd5e22c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 123, + "end_line": 125, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 119, + "end_line": 121 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RAND_add.pod", + "type": "file", + "name": "RAND_add.pod", + "base_name": "RAND_add", + "extension": ".pod", + "size": 2384, + "date": "2017-02-16", + "sha1": "bfcddad8335974a546ee0b627ef86339657c4ffa", + "md5": "81aa077fa101863842caa0a38286ed66", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RAND_bytes.pod", + "type": "file", + "name": "RAND_bytes.pod", + "base_name": "RAND_bytes", + "extension": ".pod", + "size": 1780, + "date": "2017-02-16", + "sha1": "40231448b9f54aa6cad3a86e2c3c89973a3eb879", + "md5": "32dd6b4a3d8803531a51a3faf2d3cf08", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RAND_cleanup.pod", + "type": "file", + "name": "RAND_cleanup.pod", + "base_name": "RAND_cleanup", + "extension": ".pod", + "size": 913, + "date": "2017-02-16", + "sha1": "f82aea3eb4c0589b1d5bcbf6aa60e9543c819707", + "md5": "e6ed45cbcee9a2bf027dc8d5ac398bfe", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 37, + "end_line": 39, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 33, + "end_line": 35 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RAND_egd.pod", + "type": "file", + "name": "RAND_egd.pod", + "base_name": "RAND_egd", + "extension": ".pod", + "size": 3324, + "date": "2017-02-16", + "sha1": "39246ec151280d01cc144108b97a4e6353f49d57", + "md5": "59caa3dd4aa55eb6321e478462d7c165", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 82, + "end_line": 84, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 78, + "end_line": 80 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RAND_load_file.pod", + "type": "file", + "name": "RAND_load_file.pod", + "base_name": "RAND_load_file", + "extension": ".pod", + "size": 1986, + "date": "2017-02-16", + "sha1": "51fd5af7e5b77b453572d44052f741548b0dbfa9", + "md5": "a2f15f0187097525daf128f2b0a56772", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RAND_set_rand_method.pod", + "type": "file", + "name": "RAND_set_rand_method.pod", + "base_name": "RAND_set_rand_method", + "extension": ".pod", + "size": 2726, + "date": "2017-02-16", + "sha1": "942ee37c41030d3d855441dbdab277c2b0bbd87c", + "md5": "ce4b3de89d51d6083406760cd8b8347f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RC4_set_key.pod", + "type": "file", + "name": "RC4_set_key.pod", + "base_name": "RC4_set_key", + "extension": ".pod", + "size": 1921, + "date": "2017-02-16", + "sha1": "05c945cbdb355c4f165871ce10655cfaaddae254", + "md5": "27632144d11290351d62ee8e2a3dfb66", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 61, + "end_line": 63, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 57, + "end_line": 59 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RIPEMD160_Init.pod", + "type": "file", + "name": "RIPEMD160_Init.pod", + "base_name": "RIPEMD160_Init", + "extension": ".pod", + "size": 1927, + "date": "2017-02-16", + "sha1": "4a0e49656c53b811b383a8d4ed420b1d10eab5e0", + "md5": "2f544d8750c133069d0236e15642a881", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_blinding_on.pod", + "type": "file", + "name": "RSA_blinding_on.pod", + "base_name": "RSA_blinding_on", + "extension": ".pod", + "size": 1236, + "date": "2017-02-16", + "sha1": "67e86e9830810c16f28ff39bf0656b85e986ff68", + "md5": "294b93329ccf18c5560e77355861470b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_check_key.pod", + "type": "file", + "name": "RSA_check_key.pod", + "base_name": "RSA_check_key", + "extension": ".pod", + "size": 2783, + "date": "2017-02-16", + "sha1": "e62c9063384461be54592bf5780552e81fa13115", + "md5": "7c293685c9696176028326c72c8b1309", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_generate_key.pod", + "type": "file", + "name": "RSA_generate_key.pod", + "base_name": "RSA_generate_key", + "extension": ".pod", + "size": 2500, + "date": "2017-02-16", + "sha1": "e5b7ac4ce24b8e0e095927d5375c42a46408f047", + "md5": "d7be8d047cd6f7f15f1f11570f075e43", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_get0_key.pod", + "type": "file", + "name": "RSA_get0_key.pod", + "base_name": "RSA_get0_key", + "extension": ".pod", + "size": 4490, + "date": "2017-02-16", + "sha1": "a288c3a483fc62d743297d0055a995249ee22c33", + "md5": "4ab257a75660ba61d1acd5392cc1b5dd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_meth_new.pod", + "type": "file", + "name": "RSA_meth_new.pod", + "base_name": "RSA_meth_new", + "extension": ".pod", + "size": 10893, + "date": "2017-02-16", + "sha1": "a9e8ca5c5882d8a2f4acb637796f1edef513af8b", + "md5": "da7f5c1fdbc770f59b7620d713c3bf5c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 230, + "end_line": 230, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 226, + "end_line": 228 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_new.pod", + "type": "file", + "name": "RSA_new.pod", + "base_name": "RSA_new", + "extension": ".pod", + "size": 1107, + "date": "2017-02-16", + "sha1": "85e1fd0ad7a48e28971af472b27537d7ed29338e", + "md5": "c49e4ca99e770451779be8c3b9fe5d71", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_padding_add_PKCS1_type_1.pod", + "type": "file", + "name": "RSA_padding_add_PKCS1_type_1.pod", + "base_name": "RSA_padding_add_PKCS1_type_1", + "extension": ".pod", + "size": 3614, + "date": "2017-02-16", + "sha1": "657d45ff9dd623c9dd10600d7974f739017f9f47", + "md5": "df0abb75e1ef761a2e921ca18a7e92eb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 117, + "end_line": 119, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 113, + "end_line": 115 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_print.pod", + "type": "file", + "name": "RSA_print.pod", + "base_name": "RSA_print", + "extension": ".pod", + "size": 1277, + "date": "2017-02-16", + "sha1": "b63f3fb7aa7dc8ae22049c9f05f79eb0848ca26b", + "md5": "20a700668f1f2b8e375d53d982d69c0b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_private_encrypt.pod", + "type": "file", + "name": "RSA_private_encrypt.pod", + "base_name": "RSA_private_encrypt", + "extension": ".pod", + "size": 2132, + "date": "2017-02-16", + "sha1": "208108659b33e1c79b9b2586e71cb48ca57bac39", + "md5": "6397057390a4ed7fffcfb465ad593cf4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_public_encrypt.pod", + "type": "file", + "name": "RSA_public_encrypt.pod", + "base_name": "RSA_public_encrypt", + "extension": ".pod", + "size": 2515, + "date": "2017-02-16", + "sha1": "f16c79fa5bae25647d6d3c75e51b81eb2aada26a", + "md5": "a09005eecb1c65b3499e2c478814d3e3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_set_method.pod", + "type": "file", + "name": "RSA_set_method.pod", + "base_name": "RSA_set_method", + "extension": ".pod", + "size": 6859, + "date": "2017-02-16", + "sha1": "ef88746b00bce4a6f232425fcb33a359da36d911", + "md5": "fc46e3d7954e9a25ddc019a350070b62", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 175, + "end_line": 177, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 171, + "end_line": 173 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_sign.pod", + "type": "file", + "name": "RSA_sign.pod", + "base_name": "RSA_sign", + "extension": ".pod", + "size": 1895, + "date": "2017-02-16", + "sha1": "085bbeb680414b3f8d1affcf1631df7955933c26", + "md5": "29a1a772f3500ec6ea86394380fd0251", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 60, + "end_line": 62, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 56, + "end_line": 58 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_sign_ASN1_OCTET_STRING.pod", + "type": "file", + "name": "RSA_sign_ASN1_OCTET_STRING.pod", + "base_name": "RSA_sign_ASN1_OCTET_STRING", + "extension": ".pod", + "size": 1767, + "date": "2017-02-16", + "sha1": "9aeb3452ef46c511e5e60a0e6a4a8682bd05f7bd", + "md5": "dafa3be417909a911883da17f5ba431e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 58, + "end_line": 60, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 54, + "end_line": 56 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/RSA_size.pod", + "type": "file", + "name": "RSA_size.pod", + "base_name": "RSA_size", + "extension": ".pod", + "size": 888, + "date": "2017-02-16", + "sha1": "fe04875c2417c4f7d2966af09565ddbf13952d8f", + "md5": "719fd9dd67ae9566f7ca385bbcab0f93", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 41, + "end_line": 43, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 37, + "end_line": 39 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SCT_new.pod", + "type": "file", + "name": "SCT_new.pod", + "base_name": "SCT_new", + "extension": ".pod", + "size": 6396, + "date": "2017-02-16", + "sha1": "3941f282354b9a596f6e97989e204b7074f223a4", + "md5": "8d8944db620a0fef9ba1199ee4e8375c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 189, + "end_line": 191, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 185, + "end_line": 187 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SCT_print.pod", + "type": "file", + "name": "SCT_print.pod", + "base_name": "SCT_print", + "extension": ".pod", + "size": 1702, + "date": "2017-02-16", + "sha1": "6b7363b1513eeb0a76766bd89945b4f4860f4410", + "md5": "f5ffc28780d01464b38185080d32962f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SCT_validate.pod", + "type": "file", + "name": "SCT_validate.pod", + "base_name": "SCT_validate", + "extension": ".pod", + "size": 3043, + "date": "2017-02-16", + "sha1": "e0a56fb3a2f7aea714c5f6d3e610b8520f844c83", + "md5": "b693c6cd833f7a2b06ddbd96c0edeced", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SHA256_Init.pod", + "type": "file", + "name": "SHA256_Init.pod", + "base_name": "SHA256_Init", + "extension": ".pod", + "size": 3793, + "date": "2017-02-16", + "sha1": "096fb2cbd3ff6487eb270ca70d289487c0e7cc1c", + "md5": "5b3628c7fa525f134ef4ea8f6d9d577d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SMIME_read_CMS.pod", + "type": "file", + "name": "SMIME_read_CMS.pod", + "base_name": "SMIME_read_CMS", + "extension": ".pod", + "size": 2094, + "date": "2017-02-16", + "sha1": "cda1d1a3bdbf252c831992b5acb1623b67722c2a", + "md5": "0ff0c44cabf4585382bd164a9eab3220", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 70, + "end_line": 72, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 66, + "end_line": 68 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SMIME_read_PKCS7.pod", + "type": "file", + "name": "SMIME_read_PKCS7.pod", + "base_name": "SMIME_read_PKCS7", + "extension": ".pod", + "size": 2084, + "date": "2017-02-16", + "sha1": "f7210a8ed39766141c9257e04d0bfba23f6e28f1", + "md5": "7bf84b99433b9ec697f88cdc17c8dd0c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 73, + "end_line": 75, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 69, + "end_line": 71 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SMIME_write_CMS.pod", + "type": "file", + "name": "SMIME_write_CMS.pod", + "base_name": "SMIME_write_CMS", + "extension": ".pod", + "size": 2144, + "date": "2017-02-16", + "sha1": "7c58010d6b8cf156f51bfdd5a52cc9728e8dbd32", + "md5": "eb2f7cdd7c61e14c4e18c34cf152d9e5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SMIME_write_PKCS7.pod", + "type": "file", + "name": "SMIME_write_PKCS7.pod", + "base_name": "SMIME_write_PKCS7", + "extension": ".pod", + "size": 2170, + "date": "2017-02-16", + "sha1": "ad34e94993451f5111fb9dfe12e310186e34387b", + "md5": "1e33be3baf4284401667fa2c7089212a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/SSL_set_bio.pod", + "type": "file", + "name": "SSL_set_bio.pod", + "base_name": "SSL_set_bio", + "extension": ".pod", + "size": 3654, + "date": "2017-02-16", + "sha1": "b3ef4395511019d870f7c6eeee44c171fa203bcd", + "md5": "3b2036cff67e56e08132580f0a55a072", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/UI_new.pod", + "type": "file", + "name": "UI_new.pod", + "base_name": "UI_new", + "extension": ".pod", + "size": 8175, + "date": "2017-02-16", + "sha1": "be3a08e6ba4e0da779933dab1dd7a8184faa3d3c", + "md5": "026bcd3d6c54e949083f9070f4fc7787", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 181, + "end_line": 183, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 177, + "end_line": 179 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/x509.pod", + "type": "file", + "name": "x509.pod", + "base_name": "x509", + "extension": ".pod", + "size": 2272, + "date": "2017-02-16", + "sha1": "753345497590f3fb4c1876c230ac38e90aeca131", + "md5": "92515bc684bc279c41c64217dcd2c618", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 70, + "end_line": 72, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 66, + "end_line": 68 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_ALGOR_dup.pod", + "type": "file", + "name": "X509_ALGOR_dup.pod", + "base_name": "X509_ALGOR_dup", + "extension": ".pod", + "size": 1767, + "date": "2017-02-16", + "sha1": "21f9f51805e780612e3ef7405eebe4b2a7c1e8f8", + "md5": "0da8bd2e300abaa2e7bbe42526bb8a23", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 43, + "end_line": 45, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 39, + "end_line": 41 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_check_ca.pod", + "type": "file", + "name": "X509_check_ca.pod", + "base_name": "X509_check_ca", + "extension": ".pod", + "size": 1232, + "date": "2017-02-16", + "sha1": "b132c9ea55d5d80c8b2c8035d3926b1def3b7532", + "md5": "3ebcaf95664dad3170c13fb1a2243fed", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 40, + "end_line": 42, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_check_host.pod", + "type": "file", + "name": "X509_check_host.pod", + "base_name": "X509_check_host", + "extension": ".pod", + "size": 6257, + "date": "2017-02-16", + "sha1": "1647208210134c5ec1f8c76f94698dd55a8a02c0", + "md5": "ec1b8fa751d8e9c913b8fb3b124c93c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 152, + "end_line": 154, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 148, + "end_line": 150 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_check_issued.pod", + "type": "file", + "name": "X509_check_issued.pod", + "base_name": "X509_check_issued", + "extension": ".pod", + "size": 1209, + "date": "2017-02-16", + "sha1": "12c713242a87ce09fba0844a11b923ac74fde6dd", + "md5": "6d7565166ea2eb40fb33762949e77758", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 40, + "end_line": 42, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_CRL_get0_by_serial.pod", + "type": "file", + "name": "X509_CRL_get0_by_serial.pod", + "base_name": "X509_CRL_get0_by_serial", + "extension": ".pod", + "size": 3665, + "date": "2017-02-16", + "sha1": "fc8d2d95a57a79aadac9465c09d60d5ca447f4a4", + "md5": "06e3dd2bb8db176acb303ab415cf7ef1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_digest.pod", + "type": "file", + "name": "X509_digest.pod", + "base_name": "X509_digest", + "extension": ".pod", + "size": 2046, + "date": "2017-02-16", + "sha1": "1d70db06310b6d28e9a70867e3e32176b9d81e3e", + "md5": "0cb87895be9b85aae85f24c09cf842bf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 60, + "end_line": 62, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 56, + "end_line": 58 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_dup.pod", + "type": "file", + "name": "X509_dup.pod", + "base_name": "X509_dup", + "extension": ".pod", + "size": 6620, + "date": "2017-02-16", + "sha1": "f8235b77c5f816843d96647c0689d956a48110ac", + "md5": "221b316ea74509bde241608c1ce3e80a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 298, + "end_line": 300, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 294, + "end_line": 296 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_EXTENSION_set_object.pod", + "type": "file", + "name": "X509_EXTENSION_set_object.pod", + "base_name": "X509_EXTENSION_set_object", + "extension": ".pod", + "size": 3720, + "date": "2017-02-16", + "sha1": "ebe2ff80907e743780fd6fea12209eaaaf67d8c0", + "md5": "84a7df66c31aef8132c1aeae4afba467", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_get0_signature.pod", + "type": "file", + "name": "X509_get0_signature.pod", + "base_name": "X509_get0_signature", + "extension": ".pod", + "size": 3029, + "date": "2017-02-16", + "sha1": "cc558cfff29c0cbc8a4e2aef68397a03df8b8ac8", + "md5": "2c8465e2280547c23a08dab6acece0c2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 92, + "end_line": 94, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 88, + "end_line": 90 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_get0_uids.pod", + "type": "file", + "name": "X509_get0_uids.pod", + "base_name": "X509_get0_uids", + "extension": ".pod", + "size": 1385, + "date": "2017-02-16", + "sha1": "989667962574f0dfd53d8d80576e9570c2a6e02c", + "md5": "c794f400e585daba47900616bd5eb574", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_get_extension_flags.pod", + "type": "file", + "name": "X509_get_extension_flags.pod", + "base_name": "X509_get_extension_flags", + "extension": ".pod", + "size": 5859, + "date": "2017-02-16", + "sha1": "93917f887056f78e73eee42766aa8ddf5cd56373", + "md5": "0601666247743967d436c10c61b45c7a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 170, + "end_line": 172, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 166, + "end_line": 168 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_get_notBefore.pod", + "type": "file", + "name": "X509_get_notBefore.pod", + "base_name": "X509_get_notBefore", + "extension": ".pod", + "size": 3421, + "date": "2017-02-16", + "sha1": "60e1efaf226a65651badbb3ec4d376de12973b5b", + "md5": "0927f6bfc2b59e28daf3264344854821", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_get_pubkey.pod", + "type": "file", + "name": "X509_get_pubkey.pod", + "base_name": "X509_get_pubkey", + "extension": ".pod", + "size": 2815, + "date": "2017-02-16", + "sha1": "390964ba7c3850937a4b63a9ef5ba36a792980e2", + "md5": "d4fa908566429e8a8fa3c72e5053b614", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 82, + "end_line": 84, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 78, + "end_line": 80 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_get_serialNumber.pod", + "type": "file", + "name": "X509_get_serialNumber.pod", + "base_name": "X509_get_serialNumber", + "extension": ".pod", + "size": 1992, + "date": "2017-02-16", + "sha1": "b5fe6021ec0ccabf771670afc83e7809fc0996ee", + "md5": "a59b61722e0c212669316a328fcd87ed", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 68, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 62, + "end_line": 64 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_get_subject_name.pod", + "type": "file", + "name": "X509_get_subject_name.pod", + "base_name": "X509_get_subject_name", + "extension": ".pod", + "size": 2721, + "date": "2017-02-16", + "sha1": "33ece99ab32156334f174ef3f4322e99209f1609", + "md5": "8c12896c01d95fa1e14fcaf671367cf6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 81, + "end_line": 83, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 77, + "end_line": 79 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_get_version.pod", + "type": "file", + "name": "X509_get_version.pod", + "base_name": "X509_get_version", + "extension": ".pod", + "size": 2494, + "date": "2017-02-16", + "sha1": "58474e7fb35ebb3c074862dfeec2a711e4d8d2e6", + "md5": "a139abcf6f1504dc15de83185a2ebd82", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 78, + "end_line": 80, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 74, + "end_line": 76 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_LOOKUP_hash_dir.pod", + "type": "file", + "name": "X509_LOOKUP_hash_dir.pod", + "base_name": "X509_LOOKUP_hash_dir", + "extension": ".pod", + "size": 4752, + "date": "2017-02-16", + "sha1": "c571a8a75f22928594f898cb4575fe1110883fab", + "md5": "c829dd52e40a18dc1cfef0f2d40d00f7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 126, + "end_line": 128, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 122, + "end_line": 124 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_NAME_add_entry_by_txt.pod", + "type": "file", + "name": "X509_NAME_add_entry_by_txt.pod", + "base_name": "X509_NAME_add_entry_by_txt", + "extension": ".pod", + "size": 4458, + "date": "2017-02-16", + "sha1": "52d3432beff62da5e25a2a2b89c25b9d5d3ad795", + "md5": "1b366ecaa87e12b6e6182d532652d5b5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 118, + "end_line": 120, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 114, + "end_line": 116 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_NAME_ENTRY_get_object.pod", + "type": "file", + "name": "X509_NAME_ENTRY_get_object.pod", + "base_name": "X509_NAME_ENTRY_get_object", + "extension": ".pod", + "size": 3020, + "date": "2017-02-16", + "sha1": "3e120a25d07120ded67100c482e85771f7bf1718", + "md5": "302a9a69454716f38038ed432e47ff5b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_NAME_get0_der.pod", + "type": "file", + "name": "X509_NAME_get0_der.pod", + "base_name": "X509_NAME_get0_der", + "extension": ".pod", + "size": 990, + "date": "2017-02-16", + "sha1": "3f7265b11bb8dbe23257f5149b899528a255c767", + "md5": "64cf29e01403b952a567500dd0cc2c96", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 35, + "end_line": 37, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 31, + "end_line": 33 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_NAME_get_index_by_NID.pod", + "type": "file", + "name": "X509_NAME_get_index_by_NID.pod", + "base_name": "X509_NAME_get_index_by_NID", + "extension": ".pod", + "size": 4345, + "date": "2017-02-16", + "sha1": "30ed87377eb07ce58f42802447ff4fa6826ed096", + "md5": "b4415be955d082139cbea3a02cad4c5e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 118, + "end_line": 120, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 114, + "end_line": 116 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_NAME_print_ex.pod", + "type": "file", + "name": "X509_NAME_print_ex.pod", + "base_name": "X509_NAME_print_ex", + "extension": ".pod", + "size": 4731, + "date": "2017-02-16", + "sha1": "f6d4086c3488fcb167508ce3ba1f1d5a0cee587d", + "md5": "25ea6f951f1e8df56ded504f9768796c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_new.pod", + "type": "file", + "name": "X509_new.pod", + "base_name": "X509_new", + "extension": ".pod", + "size": 2427, + "date": "2017-02-16", + "sha1": "4f8663a663dfd16625566ecc3610d62001a6a4c3", + "md5": "5c18c8c311a079ccd5c21bcdb3fa12b1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 78, + "end_line": 80, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 74, + "end_line": 76 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_PUBKEY_new.pod", + "type": "file", + "name": "X509_PUBKEY_new.pod", + "base_name": "X509_PUBKEY_new", + "extension": ".pod", + "size": 4456, + "date": "2017-02-16", + "sha1": "74c1e9e3e8d8d8be764719fbfb77ad9ea1cbe1c4", + "md5": "050461efb6a2e7f5e596bc45c7348b9c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 115, + "end_line": 117, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 111, + "end_line": 113 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_SIG_get0.pod", + "type": "file", + "name": "X509_SIG_get0.pod", + "base_name": "X509_SIG_get0", + "extension": ".pod", + "size": 970, + "date": "2017-02-16", + "sha1": "c698d9da1fedd6fd6f4873bc4930cfc09087a530", + "md5": "af02d72120b5038b9ec25967f3b7c70b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 31, + "end_line": 33, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 27, + "end_line": 29 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_sign.pod", + "type": "file", + "name": "X509_sign.pod", + "base_name": "X509_sign", + "extension": ".pod", + "size": 3414, + "date": "2017-02-16", + "sha1": "843cddfa6c0771a160be4b8449abd6bca0393e00", + "md5": "69e07bd63b8490b282fa32ffeec7f93f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 94, + "end_line": 96, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 90, + "end_line": 92 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_STORE_CTX_get_error.pod", + "type": "file", + "name": "X509_STORE_CTX_get_error.pod", + "base_name": "X509_STORE_CTX_get_error", + "extension": ".pod", + "size": 12855, + "date": "2017-02-16", + "sha1": "19ecedbc4034ddea01b0a567e5efff4356cd83f8", + "md5": "e848265a2a8c39def9265c34e476ed52", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 333, + "end_line": 335, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 329, + "end_line": 331 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_STORE_CTX_new.pod", + "type": "file", + "name": "X509_STORE_CTX_new.pod", + "base_name": "X509_STORE_CTX_new", + "extension": ".pod", + "size": 6732, + "date": "2017-02-16", + "sha1": "93c4c39cade5751196b19e3568ca0fbae4cd5bbc", + "md5": "378507f9f7b03dcadba71c3b66b8237d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 169, + "end_line": 171, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 165, + "end_line": 167 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_STORE_CTX_set_verify_cb.pod", + "type": "file", + "name": "X509_STORE_CTX_set_verify_cb.pod", + "base_name": "X509_STORE_CTX_set_verify_cb", + "extension": ".pod", + "size": 8019, + "date": "2017-02-16", + "sha1": "5f0a7e16313ec9e49aa6a4018c97c968de558b9e", + "md5": "428141829a78a27b384fcebf75167b06", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 210, + "end_line": 212, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 206, + "end_line": 208 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_STORE_get0_param.pod", + "type": "file", + "name": "X509_STORE_get0_param.pod", + "base_name": "X509_STORE_get0_param", + "extension": ".pod", + "size": 1573, + "date": "2017-02-16", + "sha1": "d4ac6313267d6fd3a4a7911c597154a3ca77d1ec", + "md5": "500ef19b8dee5e93dd8aa9fe5906eba5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_STORE_new.pod", + "type": "file", + "name": "X509_STORE_new.pod", + "base_name": "X509_STORE_new", + "extension": ".pod", + "size": 1510, + "date": "2017-02-16", + "sha1": "c70267d53a9b54d99d82e53d4fca3be6e167e349", + "md5": "95bc3c5f663da3904d0d86a625186297", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_STORE_set_verify_cb_func.pod", + "type": "file", + "name": "X509_STORE_set_verify_cb_func.pod", + "base_name": "X509_STORE_set_verify_cb_func", + "extension": ".pod", + "size": 11578, + "date": "2017-02-16", + "sha1": "4a75fb903b6d5f6c7c3d403b531f5a69da486c45", + "md5": "125770b0833a7df4feed58cd596c5650", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 262, + "end_line": 264, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 258, + "end_line": 260 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_verify_cert.pod", + "type": "file", + "name": "X509_verify_cert.pod", + "base_name": "X509_verify_cert", + "extension": ".pod", + "size": 1860, + "date": "2017-02-16", + "sha1": "a091b17166bf1dce8d19e5a3250a0a8debff3564", + "md5": "b3881fbd6ec43b2a46dec7d619f9bda8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 57, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 51, + "end_line": 53 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509_VERIFY_PARAM_set_flags.pod", + "type": "file", + "name": "X509_VERIFY_PARAM_set_flags.pod", + "base_name": "X509_VERIFY_PARAM_set_flags", + "extension": ".pod", + "size": 15186, + "date": "2017-02-16", + "sha1": "628d37526c428fd74c72c0b197f1ca19d7a910d0", + "md5": "96d7c2c0f93ed5fe7a1d87ea8224a212", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 337, + "end_line": 339, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 333, + "end_line": 335 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509V3_get_d2i.pod", + "type": "file", + "name": "X509V3_get_d2i.pod", + "base_name": "X509V3_get_d2i", + "extension": ".pod", + "size": 9321, + "date": "2017-02-16", + "sha1": "93b82dfbc31f08a64fc56f8a6a34af3501b5531f", + "md5": "9e79784b7ac85feb81818f53aececdeb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 236, + "end_line": 238, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 232, + "end_line": 234 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/crypto/X509v3_get_ext_by_NID.pod", + "type": "file", + "name": "X509v3_get_ext_by_NID.pod", + "base_name": "X509v3_get_ext_by_NID", + "extension": ".pod", + "size": 6342, + "date": "2017-02-16", + "sha1": "605d4d76625e63687a1a294135a17c44b7818a66", + "md5": "04476b158627e0acf71392799ab22d3a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 135, + "end_line": 137, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 131, + "end_line": 133 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/HOWTO", + "type": "directory", + "name": "HOWTO", + "base_name": "HOWTO", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 19860, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/HOWTO/certificates.txt", + "type": "file", + "name": "certificates.txt", + "base_name": "certificates", + "extension": ".txt", + "size": 4744, + "date": "2017-02-16", + "sha1": "3d25c30aeef18b1197de87d8bcb47662c6508ae8", + "md5": "45247871056142c8526c6f8cd168e830", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/HOWTO/keys.txt", + "type": "file", + "name": "keys.txt", + "base_name": "keys", + "extension": ".txt", + "size": 2568, + "date": "2017-02-16", + "sha1": "a178fea584cfa8bb4c6f1b8323c3845d20f2aeca", + "md5": "0442b71a14dfee97a0e1e7e436646972", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/HOWTO/proxy_certificates.txt", + "type": "file", + "name": "proxy_certificates.txt", + "base_name": "proxy_certificates", + "extension": ".txt", + "size": 12548, + "date": "2017-02-16", + "sha1": "46a05687414a9f3975a901f92c780b398dc13e4b", + "md5": "847cf8e431b79016381a25867fdbf9e7", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl", + "type": "directory", + "name": "ssl", + "base_name": "ssl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 118, + "dirs_count": 0, + "size_count": 411849, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/d2i_SSL_SESSION.pod", + "type": "file", + "name": "d2i_SSL_SESSION.pod", + "base_name": "d2i_SSL_SESSION", + "extension": ".pod", + "size": 1529, + "date": "2017-02-16", + "sha1": "bad7e439eeb3fca404cc82d8219f8dcfb0a6931e", + "md5": "d2ed87d558732f7f8414963fe8839f76", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 44, + "end_line": 46, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 40, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/DTLSv1_listen.pod", + "type": "file", + "name": "DTLSv1_listen.pod", + "base_name": "DTLSv1_listen", + "extension": ".pod", + "size": 4497, + "date": "2017-02-16", + "sha1": "673dec4cd9d03d7cd97bed02e8d204db09a5dfa9", + "md5": "d4b26a15a1fc39917b197b44a1d923e8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 97, + "end_line": 99, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 93, + "end_line": 95 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/OPENSSL_init_ssl.pod", + "type": "file", + "name": "OPENSSL_init_ssl.pod", + "base_name": "OPENSSL_init_ssl", + "extension": ".pod", + "size": 2792, + "date": "2017-02-16", + "sha1": "f884424301c96d68ee2f8c1c99ddba4e75894c24", + "md5": "67cfdc6a9eac3c8cdb055260b14feb1d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/ssl.pod", + "type": "file", + "name": "ssl.pod", + "base_name": "ssl", + "extension": ".pod", + "size": 25920, + "date": "2017-02-16", + "sha1": "6a413ef51f93129cd98f946b3734274cab43e946", + "md5": "0816c609159a89c36e9f360441b71c70", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 828, + "end_line": 828, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 824, + "end_line": 826 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_accept.pod", + "type": "file", + "name": "SSL_accept.pod", + "base_name": "SSL_accept", + "extension": ".pod", + "size": 2574, + "date": "2017-02-16", + "sha1": "9f6558fe055b022a3fd06691115e0796ee39d5e4", + "md5": "e2c471a9adbb080bdcd98a4cf16e17c5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_alert_type_string.pod", + "type": "file", + "name": "SSL_alert_type_string.pod", + "base_name": "SSL_alert_type_string", + "extension": ".pod", + "size": 7535, + "date": "2017-02-16", + "sha1": "5bede5cadac79bfc026e09975a81e5a48e84a54b", + "md5": "e26e9ff32ef3bca19218563f88f7899b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 53.57, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 237, + "end_line": 238, + "matched_rule": { + "identifier": "apache-2.0_55.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 237, + "end_line": 237, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 233, + "end_line": 235 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_check_chain.pod", + "type": "file", + "name": "SSL_check_chain.pod", + "base_name": "SSL_check_chain", + "extension": ".pod", + "size": 3162, + "date": "2017-02-16", + "sha1": "96ea5a315153a4cf673e544915ff8be76f88f864", + "md5": "44ce7c3e731a31474e030c03eb94a24e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 89, + "end_line": 91, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 85, + "end_line": 87 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CIPHER_get_name.pod", + "type": "file", + "name": "SSL_CIPHER_get_name.pod", + "base_name": "SSL_CIPHER_get_name", + "extension": ".pod", + "size": 4043, + "date": "2017-02-16", + "sha1": "3bc32cf95a9fbb4370b016f0a968a05522248c52", + "md5": "d3acf1a87590fb1514c5ff8557102e3e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 123, + "end_line": 125, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 119, + "end_line": 121 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_clear.pod", + "type": "file", + "name": "SSL_clear.pod", + "base_name": "SSL_clear", + "extension": ".pod", + "size": 2567, + "date": "2017-02-16", + "sha1": "7c42cf3b4e1c982ae433415f2bdacacf108d7b5c", + "md5": "c4c4fe51fb83c560c2075c118a130da2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_COMP_add_compression_method.pod", + "type": "file", + "name": "SSL_COMP_add_compression_method.pod", + "base_name": "SSL_COMP_add_compression_method", + "extension": ".pod", + "size": 4095, + "date": "2017-02-16", + "sha1": "9595097f8a05166da1f69907e3d6e5c7fb69ce68", + "md5": "e74adc3d09a2b4254727e5d7c7c4f5c2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 111, + "end_line": 113, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 107, + "end_line": 109 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CONF_cmd.pod", + "type": "file", + "name": "SSL_CONF_cmd.pod", + "base_name": "SSL_CONF_cmd", + "extension": ".pod", + "size": 19616, + "date": "2017-02-16", + "sha1": "1d57354194b2ded8f4ddfe1c5437f35d6c1177a6", + "md5": "9701e8afff5337cc94528c8ded6f593a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 548, + "end_line": 550, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 544, + "end_line": 546 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CONF_cmd_argv.pod", + "type": "file", + "name": "SSL_CONF_cmd_argv.pod", + "base_name": "SSL_CONF_cmd_argv", + "extension": ".pod", + "size": 1369, + "date": "2017-02-16", + "sha1": "3a4669d48cdfb70ffdc4f2eb916638f41a294b5e", + "md5": "bfb1df0fb32ab801be622457b259284b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CONF_CTX_new.pod", + "type": "file", + "name": "SSL_CONF_CTX_new.pod", + "base_name": "SSL_CONF_CTX_new", + "extension": ".pod", + "size": 1211, + "date": "2017-02-16", + "sha1": "a709d428ac692d6f222e2fa1d7cd87f08b9a3f50", + "md5": "a9b8863b2683d679cc3a116f2dab1574", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CONF_CTX_set1_prefix.pod", + "type": "file", + "name": "SSL_CONF_CTX_set1_prefix.pod", + "base_name": "SSL_CONF_CTX_set1_prefix", + "extension": ".pod", + "size": 1724, + "date": "2017-02-16", + "sha1": "d0f762dbbac0b63989953a049dc33505b521c45d", + "md5": "1696ee73b85d99f21a1d2f9a1dc06adc", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CONF_CTX_set_flags.pod", + "type": "file", + "name": "SSL_CONF_CTX_set_flags.pod", + "base_name": "SSL_CONF_CTX_set_flags", + "extension": ".pod", + "size": 2300, + "date": "2017-02-16", + "sha1": "54e17ce6067c3c492e7bf13f5c459095fc0575e6", + "md5": "79e611d04d481032791e2b83f031a8e8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CONF_CTX_set_ssl_ctx.pod", + "type": "file", + "name": "SSL_CONF_CTX_set_ssl_ctx.pod", + "base_name": "SSL_CONF_CTX_set_ssl_ctx", + "extension": ".pod", + "size": 1538, + "date": "2017-02-16", + "sha1": "48c9958c8a5948684b43a73fc1ecebb1f7dc3435", + "md5": "973b29d930728ee6817d52848f1ce8d0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_connect.pod", + "type": "file", + "name": "SSL_connect.pod", + "base_name": "SSL_connect", + "extension": ".pod", + "size": 2564, + "date": "2017-02-16", + "sha1": "4137777681280db9fae6a1020c25f3d818faaf2c", + "md5": "e8b17fbe9f24dc09d0cba24fd73ec5a3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_add1_chain_cert.pod", + "type": "file", + "name": "SSL_CTX_add1_chain_cert.pod", + "base_name": "SSL_CTX_add1_chain_cert", + "extension": ".pod", + "size": 6913, + "date": "2017-02-16", + "sha1": "3bac968351cc0394e39cdaf3cb75186ef8ba8526", + "md5": "95f3a60448f3dfe2e5613943b739b70b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 153, + "end_line": 155, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 149, + "end_line": 151 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_add_extra_chain_cert.pod", + "type": "file", + "name": "SSL_CTX_add_extra_chain_cert.pod", + "base_name": "SSL_CTX_add_extra_chain_cert", + "extension": ".pod", + "size": 2431, + "date": "2017-02-16", + "sha1": "5e66ba70b80f990487783a4ff1a2e7de6e9da599", + "md5": "c9bb27db5ebb01a80bc2a28c832c80ba", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 75, + "end_line": 77, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 71, + "end_line": 73 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_add_session.pod", + "type": "file", + "name": "SSL_CTX_add_session.pod", + "base_name": "SSL_CTX_add_session", + "extension": ".pod", + "size": 2587, + "date": "2017-02-16", + "sha1": "4ce1e86db3b64059c68f6ce73fae72377fad57b8", + "md5": "6a937fd11d557da81e1a4aa8c272a767", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_config.pod", + "type": "file", + "name": "SSL_CTX_config.pod", + "base_name": "SSL_CTX_config", + "extension": ".pod", + "size": 2247, + "date": "2017-02-16", + "sha1": "7322a20a1ac4a1e4236db3c59f39bdd650e1f494", + "md5": "3194abf136333ff8c1292804aabcd445", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 88, + "end_line": 90, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 84, + "end_line": 86 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_ctrl.pod", + "type": "file", + "name": "SSL_CTX_ctrl.pod", + "base_name": "SSL_CTX_ctrl", + "extension": ".pod", + "size": 1258, + "date": "2017-02-16", + "sha1": "061b83d49fa6076652b4bdd8362e576567167905", + "md5": "6e00e7038fec2edff3e0963c149d9757", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 38, + "end_line": 40, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 34, + "end_line": 36 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_dane_enable.pod", + "type": "file", + "name": "SSL_CTX_dane_enable.pod", + "base_name": "SSL_CTX_dane_enable", + "extension": ".pod", + "size": 16230, + "date": "2017-02-16", + "sha1": "4622fbb3ae607479f67fcb139f4b3de536a619e4", + "md5": "010f4922cabf416da4db17830d65b747", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 377, + "end_line": 379, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 373, + "end_line": 375 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_flush_sessions.pod", + "type": "file", + "name": "SSL_CTX_flush_sessions.pod", + "base_name": "SSL_CTX_flush_sessions", + "extension": ".pod", + "size": 1729, + "date": "2017-02-16", + "sha1": "63abb71dad430d83e88abdbaa4a303e7cc6290d4", + "md5": "11b423448c9e9a840838403517f24fc1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_free.pod", + "type": "file", + "name": "SSL_CTX_free.pod", + "base_name": "SSL_CTX_free", + "extension": ".pod", + "size": 1482, + "date": "2017-02-16", + "sha1": "797b4c51944a5bfed7fde412e368992942f36f80", + "md5": "f9e707b310bcfa833b2e1e7e34871783", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_get0_param.pod", + "type": "file", + "name": "SSL_CTX_get0_param.pod", + "base_name": "SSL_CTX_get0_param", + "extension": ".pod", + "size": 1781, + "date": "2017-02-16", + "sha1": "941e13b3d1c0673f054d4944aa586c8537eaa2c2", + "md5": "272d7a7ddd6c2cd563af9b9628bd5798", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_get_verify_mode.pod", + "type": "file", + "name": "SSL_CTX_get_verify_mode.pod", + "base_name": "SSL_CTX_get_verify_mode", + "extension": ".pod", + "size": 1982, + "date": "2017-02-16", + "sha1": "e217d32667c3e454e4c2c687d833bd1405a5d593", + "md5": "9166bce52398c847fc21ee83dbd95851", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 54, + "end_line": 56, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 50, + "end_line": 52 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_has_client_custom_ext.pod", + "type": "file", + "name": "SSL_CTX_has_client_custom_ext.pod", + "base_name": "SSL_CTX_has_client_custom_ext", + "extension": ".pod", + "size": 889, + "date": "2017-02-16", + "sha1": "a5f24963d7e22f48939bd98859e73b3b44056fe8", + "md5": "c58c83bb0606a7fd269e33bc9955415e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 32, + "end_line": 34, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 28, + "end_line": 30 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_load_verify_locations.pod", + "type": "file", + "name": "SSL_CTX_load_verify_locations.pod", + "base_name": "SSL_CTX_load_verify_locations", + "extension": ".pod", + "size": 5734, + "date": "2017-02-16", + "sha1": "0402f4e8b977d36e30757f0a839e1181e280b64a", + "md5": "06395356bf22e8d19b25b9ca6f8497f1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 156, + "end_line": 158, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 152, + "end_line": 154 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_new.pod", + "type": "file", + "name": "SSL_CTX_new.pod", + "base_name": "SSL_CTX_new", + "extension": ".pod", + "size": 7753, + "date": "2017-02-16", + "sha1": "8e4dd1e899353f519d2f02b141da3e14065bc9e8", + "md5": "d8dbcbf62ef735ec6685b4ef8dda6c86", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 213, + "end_line": 215, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 209, + "end_line": 211 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_sess_number.pod", + "type": "file", + "name": "SSL_CTX_sess_number.pod", + "base_name": "SSL_CTX_sess_number", + "extension": ".pod", + "size": 3097, + "date": "2017-02-16", + "sha1": "b8f5d0b9c9256464fda2a5731775480cd06bce22", + "md5": "8fec84f9fdb2a6d3749d4b023e3211b5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 80, + "end_line": 82, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 76, + "end_line": 78 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_sess_set_cache_size.pod", + "type": "file", + "name": "SSL_CTX_sess_set_cache_size.pod", + "base_name": "SSL_CTX_sess_set_cache_size", + "extension": ".pod", + "size": 1872, + "date": "2017-02-16", + "sha1": "d5072ed4683ed8e35332a998ed3643c59c8f0ae5", + "md5": "71c8bed463eff05ccf6d1c1de0a02d70", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_sess_set_get_cb.pod", + "type": "file", + "name": "SSL_CTX_sess_set_get_cb.pod", + "base_name": "SSL_CTX_sess_set_get_cb", + "extension": ".pod", + "size": 4142, + "date": "2017-02-16", + "sha1": "86a5b41004754002a99d0e54289892a0f63dd66a", + "md5": "9515daffac725d0be7e6433771f394d0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_sessions.pod", + "type": "file", + "name": "SSL_CTX_sessions.pod", + "base_name": "SSL_CTX_sessions", + "extension": ".pod", + "size": 1130, + "date": "2017-02-16", + "sha1": "34b9cb980a4148462d433cb5ba10950e76acc614", + "md5": "355c409be87be654aa64180e82993ae0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 38, + "end_line": 40, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 34, + "end_line": 36 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set1_curves.pod", + "type": "file", + "name": "SSL_CTX_set1_curves.pod", + "base_name": "SSL_CTX_set1_curves", + "extension": ".pod", + "size": 3174, + "date": "2017-02-16", + "sha1": "f0279297ea46b4ee972f251379d31ccedf952ac1", + "md5": "5c3887377bd6ea90c1492fb5bbd89fd1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set1_sigalgs.pod", + "type": "file", + "name": "SSL_CTX_set1_sigalgs.pod", + "base_name": "SSL_CTX_set1_sigalgs", + "extension": ".pod", + "size": 4242, + "date": "2017-02-16", + "sha1": "1ab2f2fb49025fc1f0a373a669633ba196242d92", + "md5": "1f4251a66d72f92725256b9d8efd471c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 108, + "end_line": 110, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 104, + "end_line": 106 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set1_verify_cert_store.pod", + "type": "file", + "name": "SSL_CTX_set1_verify_cert_store.pod", + "base_name": "SSL_CTX_set1_verify_cert_store", + "extension": ".pod", + "size": 3488, + "date": "2017-02-16", + "sha1": "5639eb3a897c159f0929632851387179a2c12e2d", + "md5": "ca87229aec17b9d3ae4dd16681dda270", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 95, + "end_line": 97, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 91, + "end_line": 93 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_alpn_select_cb.pod", + "type": "file", + "name": "SSL_CTX_set_alpn_select_cb.pod", + "base_name": "SSL_CTX_set_alpn_select_cb", + "extension": ".pod", + "size": 5132, + "date": "2017-02-16", + "sha1": "2106953f6f78e5f7d54ca048d78525796cbe3e07", + "md5": "3ab8b48c70e08c07037c78e13ff8a67f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 131, + "end_line": 133, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 127, + "end_line": 129 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_cert_cb.pod", + "type": "file", + "name": "SSL_CTX_set_cert_cb.pod", + "base_name": "SSL_CTX_set_cert_cb", + "extension": ".pod", + "size": 2943, + "date": "2017-02-16", + "sha1": "472645c0f30b19c8d2e3a062df9bb7ddb924c74d", + "md5": "91cd2dfae5443ebe1e41100a313893fa", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_cert_store.pod", + "type": "file", + "name": "SSL_CTX_set_cert_store.pod", + "base_name": "SSL_CTX_set_cert_store", + "extension": ".pod", + "size": 2448, + "date": "2017-02-16", + "sha1": "1cc74500c90b6f464f582fafcf945fd77483b9b3", + "md5": "a7b6bf75f749a3bc242232ad3576c517", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 68, + "end_line": 70, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 64, + "end_line": 66 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_cert_verify_callback.pod", + "type": "file", + "name": "SSL_CTX_set_cert_verify_callback.pod", + "base_name": "SSL_CTX_set_cert_verify_callback", + "extension": ".pod", + "size": 2780, + "date": "2017-02-16", + "sha1": "530fe9af89e06615a6c8b91a05f89c0343bc58a5", + "md5": "7ff7491982e92efdb66af3f7f9d8c1ae", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_cipher_list.pod", + "type": "file", + "name": "SSL_CTX_set_cipher_list.pod", + "base_name": "SSL_CTX_set_cipher_list", + "extension": ".pod", + "size": 2700, + "date": "2017-02-16", + "sha1": "35be6b0bc6338b99a95fb3bccb6d64d1bc2b8821", + "md5": "88b353fd6f546e107fd8bf2ced1f6947", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_client_CA_list.pod", + "type": "file", + "name": "SSL_CTX_set_client_CA_list.pod", + "base_name": "SSL_CTX_set_client_CA_list", + "extension": ".pod", + "size": 3261, + "date": "2017-02-16", + "sha1": "638afdf55167a796444fe1d4d1f4c814b6740f4e", + "md5": "2d30debb5b179a63c3178cb294bd4e56", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_client_cert_cb.pod", + "type": "file", + "name": "SSL_CTX_set_client_cert_cb.pod", + "base_name": "SSL_CTX_set_client_cert_cb", + "extension": ".pod", + "size": 4555, + "date": "2017-02-16", + "sha1": "32704b96905596898c21ee1127ef00a8ba592ff1", + "md5": "6e5b9262989a3f0b5bfa0215c214e5c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_ct_validation_callback.pod", + "type": "file", + "name": "SSL_CTX_set_ct_validation_callback.pod", + "base_name": "SSL_CTX_set_ct_validation_callback", + "extension": ".pod", + "size": 5679, + "date": "2017-02-16", + "sha1": "55ccff085936cad05dfaf512576ee2a7c67aebef", + "md5": "f537e3e92a7c44cdd8255699d80fa158", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 133, + "end_line": 135, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 129, + "end_line": 131 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_ctlog_list_file.pod", + "type": "file", + "name": "SSL_CTX_set_ctlog_list_file.pod", + "base_name": "SSL_CTX_set_ctlog_list_file", + "extension": ".pod", + "size": 1578, + "date": "2017-02-16", + "sha1": "07a0777153184b948736d3dcc6fcfd84cd9c3a0b", + "md5": "ca0fa51cabd1e36b888a0c086101edd8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_default_passwd_cb.pod", + "type": "file", + "name": "SSL_CTX_set_default_passwd_cb.pod", + "base_name": "SSL_CTX_set_default_passwd_cb", + "extension": ".pod", + "size": 4285, + "date": "2017-02-16", + "sha1": "8d122cdf8028516c138e51cc911195d67ddafbea", + "md5": "6e46d1c8c9c39846b40b1a694c0caed5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 108, + "end_line": 110, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 104, + "end_line": 106 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_generate_session_id.pod", + "type": "file", + "name": "SSL_CTX_set_generate_session_id.pod", + "base_name": "SSL_CTX_set_generate_session_id", + "extension": ".pod", + "size": 5705, + "date": "2017-02-16", + "sha1": "3aaf13fdb12b117f665fed9a101ac5d7e0bfb84a", + "md5": "8a6d3c04b9937d8784c8fe60b6872ba4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 134, + "end_line": 136, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 130, + "end_line": 132 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_info_callback.pod", + "type": "file", + "name": "SSL_CTX_set_info_callback.pod", + "base_name": "SSL_CTX_set_info_callback", + "extension": ".pod", + "size": 5096, + "date": "2017-02-16", + "sha1": "f6578adfa0037d895aebf8186a1238728e3eb4a0", + "md5": "9da470e83179291ee8d5085f42416e9a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 157, + "end_line": 159, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 153, + "end_line": 155 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_max_cert_list.pod", + "type": "file", + "name": "SSL_CTX_set_max_cert_list.pod", + "base_name": "SSL_CTX_set_max_cert_list", + "extension": ".pod", + "size": 2957, + "date": "2017-02-16", + "sha1": "40fbd688e457dc4f6a66ef482a0dde61b7aa8067", + "md5": "37861d75d7d2088cb0c50fd52d3af860", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_min_proto_version.pod", + "type": "file", + "name": "SSL_CTX_set_min_proto_version.pod", + "base_name": "SSL_CTX_set_min_proto_version", + "extension": ".pod", + "size": 1732, + "date": "2017-02-16", + "sha1": "d303ccf822229e256575bf2354a90b97f4c8019d", + "md5": "32e1db1ed95a92d8eaba80c49bd6a228", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 57, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 51, + "end_line": 53 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_mode.pod", + "type": "file", + "name": "SSL_CTX_set_mode.pod", + "base_name": "SSL_CTX_set_mode", + "extension": ".pod", + "size": 3649, + "date": "2017-02-16", + "sha1": "721097a9ffac89fc5a21b8b176679ea5ebac97cd", + "md5": "f70d1fa716f58f29ddae3470fdf5e4ef", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 109, + "end_line": 111, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 105, + "end_line": 107 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_msg_callback.pod", + "type": "file", + "name": "SSL_CTX_set_msg_callback.pod", + "base_name": "SSL_CTX_set_msg_callback", + "extension": ".pod", + "size": 3575, + "date": "2017-02-16", + "sha1": "a1fbe34f0bc7a1f3581cd691ee60bc0a37de0ca3", + "md5": "70a8b78a97b8fba941b0ba3966f9f266", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_options.pod", + "type": "file", + "name": "SSL_CTX_set_options.pod", + "base_name": "SSL_CTX_set_options", + "extension": ".pod", + "size": 9852, + "date": "2017-02-16", + "sha1": "baa67d3df48d32d183ece94b6a16f261b822ed70", + "md5": "447a7022f317ccb1d18c2e768d7c37c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 287, + "end_line": 289, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 283, + "end_line": 285 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_psk_client_callback.pod", + "type": "file", + "name": "SSL_CTX_set_psk_client_callback.pod", + "base_name": "SSL_CTX_set_psk_client_callback", + "extension": ".pod", + "size": 2109, + "date": "2017-02-16", + "sha1": "e84be4b68b134d503539147d4c9b9d502fe57f14", + "md5": "651810bcf9e00a1782175683b20f8c43", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 61, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_quiet_shutdown.pod", + "type": "file", + "name": "SSL_CTX_set_quiet_shutdown.pod", + "base_name": "SSL_CTX_set_quiet_shutdown", + "extension": ".pod", + "size": 2342, + "date": "2017-02-16", + "sha1": "eb0a9c3d8977090edc84b52b0054a7dc1c01d0c8", + "md5": "2eb38ed4765d3dafd0196463c0eb1418", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_read_ahead.pod", + "type": "file", + "name": "SSL_CTX_set_read_ahead.pod", + "base_name": "SSL_CTX_set_read_ahead", + "extension": ".pod", + "size": 1966, + "date": "2017-02-16", + "sha1": "1e18df99f445184afe001f4016f1a03bf709f205", + "md5": "ae528c7824ebd2602f8c82e51611c000", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 57, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 51, + "end_line": 53 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_security_level.pod", + "type": "file", + "name": "SSL_CTX_set_security_level.pod", + "base_name": "SSL_CTX_set_security_level", + "extension": ".pod", + "size": 7097, + "date": "2017-02-16", + "sha1": "534e28c91f97fd81b4309e4d0067176e4ad6d5af", + "md5": "75be8df9313e34e868ade52882c1cf4c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 164, + "end_line": 166, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 160, + "end_line": 162 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_session_cache_mode.pod", + "type": "file", + "name": "SSL_CTX_set_session_cache_mode.pod", + "base_name": "SSL_CTX_set_session_cache_mode", + "extension": ".pod", + "size": 5033, + "date": "2017-02-16", + "sha1": "84afe590b9b9c6ee96c821c5470b3ce24263efd3", + "md5": "c23976c08006f28e1e205df5cbb1727e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 136, + "end_line": 138, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 132, + "end_line": 134 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_session_id_context.pod", + "type": "file", + "name": "SSL_CTX_set_session_id_context.pod", + "base_name": "SSL_CTX_set_session_id_context", + "extension": ".pod", + "size": 3054, + "date": "2017-02-16", + "sha1": "4dbc2cd024e6a1e6fc78938a563d3dffe68e6730", + "md5": "b6b91b46d899acc6afc539c20320cf24", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 87, + "end_line": 89, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 83, + "end_line": 85 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_split_send_fragment.pod", + "type": "file", + "name": "SSL_CTX_set_split_send_fragment.pod", + "base_name": "SSL_CTX_set_split_send_fragment", + "extension": ".pod", + "size": 5885, + "date": "2017-02-16", + "sha1": "6ca55c6386925c1219ed193a9bcfd323b78a5f89", + "md5": "78862df4272dabd1dab9c114e07f8c5c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 127, + "end_line": 129, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 123, + "end_line": 125 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_ssl_version.pod", + "type": "file", + "name": "SSL_CTX_set_ssl_version.pod", + "base_name": "SSL_CTX_set_ssl_version", + "extension": ".pod", + "size": 1755, + "date": "2017-02-16", + "sha1": "13991a0541c3885d7aceef1cd8bd250ed4081997", + "md5": "5c4678b7cdea9798115a9918f1583810", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_timeout.pod", + "type": "file", + "name": "SSL_CTX_set_timeout.pod", + "base_name": "SSL_CTX_set_timeout", + "extension": ".pod", + "size": 2118, + "date": "2017-02-16", + "sha1": "c5e77ac79fcbcb61fb157893bab8236211d5083f", + "md5": "9c1545328d20b52e49f658d7ffb002d7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_tlsext_status_cb.pod", + "type": "file", + "name": "SSL_CTX_set_tlsext_status_cb.pod", + "base_name": "SSL_CTX_set_tlsext_status_cb", + "extension": ".pod", + "size": 5705, + "date": "2017-02-16", + "sha1": "94b456b454f231fbca2b41f37f4f3351e39ab980", + "md5": "e8ed102a8717c909ca44f2dd53cd0649", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 120, + "end_line": 122, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 116, + "end_line": 118 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_tlsext_ticket_key_cb.pod", + "type": "file", + "name": "SSL_CTX_set_tlsext_ticket_key_cb.pod", + "base_name": "SSL_CTX_set_tlsext_ticket_key_cb", + "extension": ".pod", + "size": 7705, + "date": "2017-02-16", + "sha1": "1de6673a71d43fc0056f33cc4066259ba0351e5f", + "md5": "ca97c7982cac2d484188373530559125", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 193, + "end_line": 195, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 189, + "end_line": 191 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod", + "type": "file", + "name": "SSL_CTX_set_tmp_dh_callback.pod", + "base_name": "SSL_CTX_set_tmp_dh_callback", + "extension": ".pod", + "size": 4980, + "date": "2017-02-16", + "sha1": "e28e67f6193f8c76ad23ffc21d56ba1f688dc60e", + "md5": "3942d081b6fa28649bd77d6eeb2af39f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 132, + "end_line": 134, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 128, + "end_line": 130 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_set_verify.pod", + "type": "file", + "name": "SSL_CTX_set_verify.pod", + "base_name": "SSL_CTX_set_verify", + "extension": ".pod", + "size": 11174, + "date": "2017-02-16", + "sha1": "4dc8caee973ba4282a740a4ea626c6a3c6c1329e", + "md5": "24a972ff5b8c114f785fde0f2d6eabd0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 293, + "end_line": 295, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 289, + "end_line": 291 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_use_certificate.pod", + "type": "file", + "name": "SSL_CTX_use_certificate.pod", + "base_name": "SSL_CTX_use_certificate", + "extension": ".pod", + "size": 8433, + "date": "2017-02-16", + "sha1": "e932ae78aae2b6db45b5c933857ddbfc3bc2bf69", + "md5": "b31815210ed98c2f39167cf93aab1c4f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 175, + "end_line": 177, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 171, + "end_line": 173 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_use_psk_identity_hint.pod", + "type": "file", + "name": "SSL_CTX_use_psk_identity_hint.pod", + "base_name": "SSL_CTX_use_psk_identity_hint", + "extension": ".pod", + "size": 2952, + "date": "2017-02-16", + "sha1": "a58fec83593c1e3c789455dea99ac28425756077", + "md5": "468ce05fbb48c73386847c1d5f098328", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 80, + "end_line": 82, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 76, + "end_line": 78 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 85, + "end_line": 85 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_CTX_use_serverinfo.pod", + "type": "file", + "name": "SSL_CTX_use_serverinfo.pod", + "base_name": "SSL_CTX_use_serverinfo", + "extension": ".pod", + "size": 2063, + "date": "2017-02-16", + "sha1": "c94e330eb03ed4c36ad7e76bb312f5cb0cac41e6", + "md5": "80d71a4abb785d359ee3c60d6e85cd3c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_do_handshake.pod", + "type": "file", + "name": "SSL_do_handshake.pod", + "base_name": "SSL_do_handshake", + "extension": ".pod", + "size": 2584, + "date": "2017-02-16", + "sha1": "bb48dc8e47e2803b4414f980a0dc3b4a3f92d518", + "md5": "b6b4ad4987debd733c960856c820140a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_extension_supported.pod", + "type": "file", + "name": "SSL_extension_supported.pod", + "base_name": "SSL_extension_supported", + "extension": ".pod", + "size": 6084, + "date": "2017-02-16", + "sha1": "9bb30ef80ed89f0468fd6d3b71645edd883b8e11", + "md5": "bfdfd70389328181d46551eab537402e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 140, + "end_line": 142, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 136, + "end_line": 138 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_free.pod", + "type": "file", + "name": "SSL_free.pod", + "base_name": "SSL_free", + "extension": ".pod", + "size": 1644, + "date": "2017-02-16", + "sha1": "295a67685e3a0d343ccce289d3336115a9a78811", + "md5": "2696977577d1ce7d1bf177c1199af022", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get0_peer_scts.pod", + "type": "file", + "name": "SSL_get0_peer_scts.pod", + "base_name": "SSL_get0_peer_scts", + "extension": ".pod", + "size": 1256, + "date": "2017-02-16", + "sha1": "6dc232f6b787e6afe3ab64f9632cc81bb1cc66f4", + "md5": "69df51de09e03c1a5d4494c412474ce4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 40, + "end_line": 42, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_all_async_fds.pod", + "type": "file", + "name": "SSL_get_all_async_fds.pod", + "base_name": "SSL_get_all_async_fds", + "extension": ".pod", + "size": 3486, + "date": "2017-02-16", + "sha1": "74eb86fd6448030a47ad08d97eb006cd27d7ce9b", + "md5": "80818f01696c78d565babb2570d271d2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_ciphers.pod", + "type": "file", + "name": "SSL_get_ciphers.pod", + "base_name": "SSL_get_ciphers", + "extension": ".pod", + "size": 3119, + "date": "2017-02-16", + "sha1": "360863c490e0791eee67605372570e9e710b5d80", + "md5": "3ef17570d1095e12d84d68470353a11c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_client_CA_list.pod", + "type": "file", + "name": "SSL_get_client_CA_list.pod", + "base_name": "SSL_get_client_CA_list", + "extension": ".pod", + "size": 1636, + "date": "2017-02-16", + "sha1": "0ca51ff82d1b6942c6e27edfdf1bc5162e8d2750", + "md5": "5b746bcf501e7e19e56d31bfe33b545a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_client_random.pod", + "type": "file", + "name": "SSL_get_client_random.pod", + "base_name": "SSL_get_client_random", + "extension": ".pod", + "size": 3363, + "date": "2017-02-16", + "sha1": "4a11dcc27b8774c7adbba91cd9cbd14be3dae578", + "md5": "8f02e8b4100e8d7b374eda70b9656135", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_current_cipher.pod", + "type": "file", + "name": "SSL_get_current_cipher.pod", + "base_name": "SSL_get_current_cipher", + "extension": ".pod", + "size": 1524, + "date": "2017-02-16", + "sha1": "eabf03bef17d7cb4020f95c2f01ea124cde75cac", + "md5": "3a5a9565c554e386bd8896b8bcd208eb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 50, + "end_line": 52, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 46, + "end_line": 48 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_default_timeout.pod", + "type": "file", + "name": "SSL_get_default_timeout.pod", + "base_name": "SSL_get_default_timeout", + "extension": ".pod", + "size": 1257, + "date": "2017-02-16", + "sha1": "fbe777954c5c187786a18a9f3acbdb8b970d4955", + "md5": "e234f2373ef91cea969e129a45362df7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_error.pod", + "type": "file", + "name": "SSL_get_error.pod", + "base_name": "SSL_get_error", + "extension": ".pod", + "size": 5549, + "date": "2017-02-16", + "sha1": "deed2b5e8186a34895d02ecc16b0bde9bda77f5a", + "md5": "64b0a19f116a48cc64fcad0478092881", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 138, + "end_line": 140, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 134, + "end_line": 136 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_extms_support.pod", + "type": "file", + "name": "SSL_get_extms_support.pod", + "base_name": "SSL_get_extms_support", + "extension": ".pod", + "size": 922, + "date": "2017-02-16", + "sha1": "9281c37b3107597b8540a99002ad06a3021ac51f", + "md5": "71a6a7cd0c4b8f4127aaae7f818be3d1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 35, + "end_line": 37, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 31, + "end_line": 33 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_fd.pod", + "type": "file", + "name": "SSL_get_fd.pod", + "base_name": "SSL_get_fd", + "extension": ".pod", + "size": 1219, + "date": "2017-02-16", + "sha1": "d6a4e7cf2483d087613197cd23ae447bda165967", + "md5": "13df7eec598004675483705f25775631", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_peer_cert_chain.pod", + "type": "file", + "name": "SSL_get_peer_cert_chain.pod", + "base_name": "SSL_get_peer_cert_chain", + "extension": ".pod", + "size": 2569, + "date": "2017-02-16", + "sha1": "27dc2b5b953c1c7c82631dd4ae864f7e6b743d6f", + "md5": "d00094490fd47afbb8c32bb878d12420", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_peer_certificate.pod", + "type": "file", + "name": "SSL_get_peer_certificate.pod", + "base_name": "SSL_get_peer_certificate", + "extension": ".pod", + "size": 1697, + "date": "2017-02-16", + "sha1": "261317573fa1654c205ba635a2d224f3161cd008", + "md5": "b327a9096c4db6bdb4eba1492dc6aee2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_psk_identity.pod", + "type": "file", + "name": "SSL_get_psk_identity.pod", + "base_name": "SSL_get_psk_identity", + "extension": ".pod", + "size": 1252, + "date": "2017-02-16", + "sha1": "efcbbc2357eb54cc9ce52ce13adc93b095450519", + "md5": "610acbfb7d88774261e4bc47c8899518", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 37, + "end_line": 39, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 33, + "end_line": 35 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 42, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_rbio.pod", + "type": "file", + "name": "SSL_get_rbio.pod", + "base_name": "SSL_get_rbio", + "extension": ".pod", + "size": 957, + "date": "2017-02-16", + "sha1": "4f8c07eae94542052ab7348a9d84d7326de86e35", + "md5": "b599a7d81e412b2dd240984fef03610e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 44, + "end_line": 46, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 40, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_session.pod", + "type": "file", + "name": "SSL_get_session.pod", + "base_name": "SSL_get_session", + "extension": ".pod", + "size": 2492, + "date": "2017-02-16", + "sha1": "da6dadf5066b40a935d1c51e291b39c4ba098274", + "md5": "9ec2e5139369b392f642bbe5d17fecdc", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_shared_sigalgs.pod", + "type": "file", + "name": "SSL_get_shared_sigalgs.pod", + "base_name": "SSL_get_shared_sigalgs", + "extension": ".pod", + "size": 3335, + "date": "2017-02-16", + "sha1": "d47938b467528185b23d5d93e5be5d63297f27e1", + "md5": "e48bc7ae02080d913cb25552b16ea210", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 81, + "end_line": 83, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 77, + "end_line": 79 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_SSL_CTX.pod", + "type": "file", + "name": "SSL_get_SSL_CTX.pod", + "base_name": "SSL_get_SSL_CTX", + "extension": ".pod", + "size": 751, + "date": "2017-02-16", + "sha1": "9067e7551075da0302813183e39ff3818218c422", + "md5": "78614f1baafb15128ad5eb3ed7d827c4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 30, + "end_line": 32, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 26, + "end_line": 28 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_verify_result.pod", + "type": "file", + "name": "SSL_get_verify_result.pod", + "base_name": "SSL_get_verify_result", + "extension": ".pod", + "size": 1622, + "date": "2017-02-16", + "sha1": "35b2f0e86935b61bb82dc3bb0e86c9c6e8f72f44", + "md5": "59e0c30be6bc43a5695c48618f894b2b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 61, + "end_line": 63, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 57, + "end_line": 59 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_get_version.pod", + "type": "file", + "name": "SSL_get_version.pod", + "base_name": "SSL_get_version", + "extension": ".pod", + "size": 1233, + "date": "2017-02-16", + "sha1": "4f9f6ca95e730aa27f5c4d1e05166f46f85e0bd5", + "md5": "8fe3e6a77ab355abc5c08f678f4e2a28", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 62, + "end_line": 64, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 58, + "end_line": 60 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_library_init.pod", + "type": "file", + "name": "SSL_library_init.pod", + "base_name": "SSL_library_init", + "extension": ".pod", + "size": 1271, + "date": "2017-02-16", + "sha1": "9bed5763026f074c1a5f5e303766ba7656d6146f", + "md5": "8d1f01a9300d928a22f4d582c45ef28d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_load_client_CA_file.pod", + "type": "file", + "name": "SSL_load_client_CA_file.pod", + "base_name": "SSL_load_client_CA_file", + "extension": ".pod", + "size": 1572, + "date": "2017-02-16", + "sha1": "fea41df558f2f11f62b422bb236b98e5dfb757c2", + "md5": "d2d1b44a55976aa746545d4f90e66096", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 68, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 62, + "end_line": 64 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_new.pod", + "type": "file", + "name": "SSL_new.pod", + "base_name": "SSL_new", + "extension": ".pod", + "size": 1576, + "date": "2017-02-16", + "sha1": "0821f6274a2d3bdf047721223f9ee130da25be81", + "md5": "87065cb017722cf93f52375973b85737", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_pending.pod", + "type": "file", + "name": "SSL_pending.pod", + "base_name": "SSL_pending", + "extension": ".pod", + "size": 2698, + "date": "2017-02-16", + "sha1": "4a7bc6627582a5527eb9d18d225faa92b89a2e96", + "md5": "a42c57b8b279f7761af7f4d22ae97f31", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_read.pod", + "type": "file", + "name": "SSL_read.pod", + "base_name": "SSL_read", + "extension": ".pod", + "size": 4570, + "date": "2017-02-16", + "sha1": "abd89081445e3a0d3824a1dbc81826597a579c4b", + "md5": "94f2119ece3a0ed1066b05ef5260e835", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 116, + "end_line": 118, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 112, + "end_line": 114 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_rstate_string.pod", + "type": "file", + "name": "SSL_rstate_string.pod", + "base_name": "SSL_rstate_string", + "extension": ".pod", + "size": 1563, + "date": "2017-02-16", + "sha1": "7404bdf4abcc0c2786c47c7970c48c4a09eb3855", + "md5": "2c08dd8187f3418b2b786e7a3f013604", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_SESSION_free.pod", + "type": "file", + "name": "SSL_SESSION_free.pod", + "base_name": "SSL_SESSION_free", + "extension": ".pod", + "size": 2336, + "date": "2017-02-16", + "sha1": "387914533992348c689a2c6b315b70bff2e211dc", + "md5": "e11ab1f3b72866deda0d1d561df31ea2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 60, + "end_line": 62, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 56, + "end_line": 58 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_SESSION_get0_cipher.pod", + "type": "file", + "name": "SSL_SESSION_get0_cipher.pod", + "base_name": "SSL_SESSION_get0_cipher", + "extension": ".pod", + "size": 1015, + "date": "2017-02-16", + "sha1": "ff2656ffcbe51323383c7bc6326062ce6fd381d9", + "md5": "ca3e23a5be193ccacdf0c6837429af8e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 37, + "end_line": 39, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 33, + "end_line": 35 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_SESSION_get0_hostname.pod", + "type": "file", + "name": "SSL_SESSION_get0_hostname.pod", + "base_name": "SSL_SESSION_get0_hostname", + "extension": ".pod", + "size": 896, + "date": "2017-02-16", + "sha1": "fd7a71fefc0c1d9e7bdfbec7d7a485d698436820", + "md5": "4cb2374f7009edb4ce59d2819799c3c2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 32, + "end_line": 34, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 28, + "end_line": 30 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_SESSION_get0_id_context.pod", + "type": "file", + "name": "SSL_SESSION_get0_id_context.pod", + "base_name": "SSL_SESSION_get0_id_context", + "extension": ".pod", + "size": 1051, + "date": "2017-02-16", + "sha1": "7f84eb9ab1a028d04e0dffddbc85107cdaf3fd19", + "md5": "770beeaffc123378afe4f098e53af094", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 36, + "end_line": 38, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 32, + "end_line": 34 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_SESSION_get_protocol_version.pod", + "type": "file", + "name": "SSL_SESSION_get_protocol_version.pod", + "base_name": "SSL_SESSION_get_protocol_version", + "extension": ".pod", + "size": 1098, + "date": "2017-02-16", + "sha1": "bd71b17d6560ddfe2ee7a473b2394d0ac374ba2f", + "md5": "ecd265c85e0c866f04f4795927911934", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_SESSION_get_time.pod", + "type": "file", + "name": "SSL_SESSION_get_time.pod", + "base_name": "SSL_SESSION_get_time", + "extension": ".pod", + "size": 2334, + "date": "2017-02-16", + "sha1": "788e099b300bf294fba204f61d0d59929d87f46b", + "md5": "077050b60479a1b6ccd7588d38afb49a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_SESSION_has_ticket.pod", + "type": "file", + "name": "SSL_SESSION_has_ticket.pod", + "base_name": "SSL_SESSION_has_ticket", + "extension": ".pod", + "size": 1661, + "date": "2017-02-16", + "sha1": "c712b6a51db413acdf2885410e0f132e3f47392f", + "md5": "02a0f732e6a6b605530a03a701b598f5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_session_reused.pod", + "type": "file", + "name": "SSL_session_reused.pod", + "base_name": "SSL_session_reused", + "extension": ".pod", + "size": 1117, + "date": "2017-02-16", + "sha1": "c06abee09d4946b3adb908a6402d842d08abfd8b", + "md5": "1ed87829379cf20f6ad4000388ba743c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_SESSION_set1_id.pod", + "type": "file", + "name": "SSL_SESSION_set1_id.pod", + "base_name": "SSL_SESSION_set1_id", + "extension": ".pod", + "size": 966, + "date": "2017-02-16", + "sha1": "9976f95ac7f8abc199e31ae1a1eeefbf871ebb9f", + "md5": "19b851a3c2e292d727ff29fa940dab8a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 36, + "end_line": 38, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 32, + "end_line": 34 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_set1_host.pod", + "type": "file", + "name": "SSL_set1_host.pod", + "base_name": "SSL_set1_host", + "extension": ".pod", + "size": 4564, + "date": "2017-02-16", + "sha1": "0ba0005e6673614180f96484dea4ad67dbd419d6", + "md5": "edde7d73932a75c5f15e337f1758b627", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 116, + "end_line": 118, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 112, + "end_line": 114 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_set_bio.pod", + "type": "file", + "name": "SSL_set_bio.pod", + "base_name": "SSL_set_bio", + "extension": ".pod", + "size": 3640, + "date": "2017-02-16", + "sha1": "77190c19b7699711308637c10b0a9d6a46f3ce97", + "md5": "e19b05a7fa819a7ffd294e72db2868bd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_set_connect_state.pod", + "type": "file", + "name": "SSL_set_connect_state.pod", + "base_name": "SSL_set_connect_state", + "extension": ".pod", + "size": 1941, + "date": "2017-02-16", + "sha1": "371c764dab379c4d9fb6b065d385cb749b3c2701", + "md5": "a6f604552cc528499b30c777c75d7fda", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_set_fd.pod", + "type": "file", + "name": "SSL_set_fd.pod", + "base_name": "SSL_set_fd", + "extension": ".pod", + "size": 1667, + "date": "2017-02-16", + "sha1": "d78ee4aaa0d19b0d7224569d1760050715dd499f", + "md5": "beaf3fbbbab4d043b6e31a6b4be223b3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 58, + "end_line": 60, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 54, + "end_line": 56 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_set_session.pod", + "type": "file", + "name": "SSL_set_session.pod", + "base_name": "SSL_set_session", + "extension": ".pod", + "size": 2114, + "date": "2017-02-16", + "sha1": "fbaa1114b05607149539968b57066b4bce70cf09", + "md5": "16a8d2687351c53a16691057e131e922", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_set_shutdown.pod", + "type": "file", + "name": "SSL_set_shutdown.pod", + "base_name": "SSL_set_shutdown", + "extension": ".pod", + "size": 2212, + "date": "2017-02-16", + "sha1": "bb7c6a788c7b92bd02e0d4be82d5a2cbd02bc4d2", + "md5": "b072f7bb4191180f2ae20c7f34beeb1b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_set_verify_result.pod", + "type": "file", + "name": "SSL_set_verify_result.pod", + "base_name": "SSL_set_verify_result", + "extension": ".pod", + "size": 1230, + "date": "2017-02-16", + "sha1": "e7079621043771597f1c26135fc11dfe579e60a2", + "md5": "b108ed5c862da9908dfcf6183e7b9827", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_shutdown.pod", + "type": "file", + "name": "SSL_shutdown.pod", + "base_name": "SSL_shutdown", + "extension": ".pod", + "size": 5077, + "date": "2017-02-16", + "sha1": "3f761206e63ed12ba418f106977cbd9c82337ca2", + "md5": "6c82f51432b92cc461796283e3b46901", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 127, + "end_line": 129, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 123, + "end_line": 125 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_state_string.pod", + "type": "file", + "name": "SSL_state_string.pod", + "base_name": "SSL_state_string", + "extension": ".pod", + "size": 1591, + "date": "2017-02-16", + "sha1": "68dc39ce54c289ca213dc6269853d201b5c75648", + "md5": "61298edd54805e23b783bf0297a1a231", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_want.pod", + "type": "file", + "name": "SSL_want.pod", + "base_name": "SSL_want", + "extension": ".pod", + "size": 3029, + "date": "2017-02-16", + "sha1": "f4eb1ee6a286bc6c20ddf7e3d5447084854ff165", + "md5": "f1b29af2d1bb279476772c649dbbf93d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/doc/ssl/SSL_write.pod", + "type": "file", + "name": "SSL_write.pod", + "base_name": "SSL_write", + "extension": ".pod", + "size": 4014, + "date": "2017-02-16", + "sha1": "88fd4458583dfe62e4241641d8484b4b1fef5148", + "md5": "ef4812a3a7dc9d5aa8c2a3e48ad3bd50", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 106, + "end_line": 108, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 102, + "end_line": 104 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines", + "type": "directory", + "name": "engines", + "base_name": "engines", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 29, + "dirs_count": 3, + "size_count": 274153, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 987, + "date": "2017-02-16", + "sha1": "12c249e73059d1568ccf5cf2cf10de30b29f8525", + "md5": "5160578600f4bb5ba1d25c736c109835", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_capi.c", + "type": "file", + "name": "e_capi.c", + "base_name": "e_capi", + "extension": ".c", + "size": 55885, + "date": "2017-02-16", + "sha1": "9c194e41455a250968f0bc9efd67740220f70799", + "md5": "4ef139aed66901a889ada2d1b88b4fdd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_capi.ec", + "type": "file", + "name": "e_capi.ec", + "base_name": "e_capi", + "extension": ".ec", + "size": 42, + "date": "2017-02-16", + "sha1": "790538b0f4dd12e30f216494371fddc74809fd65", + "md5": "a25fa1307b2f27749962c90ec1151da4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_capi_err.c", + "type": "file", + "name": "e_capi_err.c", + "base_name": "e_capi_err", + "extension": ".c", + "size": 5626, + "date": "2017-02-16", + "sha1": "52fead31f38b709260c5002fe2cf8c3ad4b759f1", + "md5": "3b77748f8388180642d9f0f1f827c148", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_capi_err.h", + "type": "file", + "name": "e_capi_err.h", + "base_name": "e_capi_err", + "extension": ".h", + "size": 4105, + "date": "2017-02-16", + "sha1": "f150398c82aea5a272c859591f759e125d949917", + "md5": "34dfed265993370a5ef5e54aa920cd07", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_chil.c", + "type": "file", + "name": "e_chil.c", + "base_name": "e_chil", + "extension": ".c", + "size": 39996, + "date": "2017-02-16", + "sha1": "1778ba217250113a2996b6ef625422e1a4e918af", + "md5": "2a2e329de1ad4fd7941904b0080f6159", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_chil.ec", + "type": "file", + "name": "e_chil.ec", + "base_name": "e_chil", + "extension": ".ec", + "size": 37, + "date": "2017-02-16", + "sha1": "534330e7cf065c45096619e0f424aa9cc9c2f1c5", + "md5": "d11dd96d764ad670fb334f78a9d4fa04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_chil_err.c", + "type": "file", + "name": "e_chil_err.c", + "base_name": "e_chil_err", + "extension": ".c", + "size": 3738, + "date": "2017-02-16", + "sha1": "af0136e0e56457a5e735188994f53fa8107cb7a7", + "md5": "031d3faa6c3df90e0821fbb029a9ceba", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_chil_err.h", + "type": "file", + "name": "e_chil_err.h", + "base_name": "e_chil_err", + "extension": ".h", + "size": 2635, + "date": "2017-02-16", + "sha1": "7d060e79bcb0098b6406994e6f7290c8e29b34a9", + "md5": "1bcb5f3628849cfd79ceb69d2a8faf06", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_dasync.c", + "type": "file", + "name": "e_dasync.c", + "base_name": "e_dasync", + "extension": ".c", + "size": 24984, + "date": "2017-02-16", + "sha1": "f2a351cc1e2cb64910d3471487f6203007855d96", + "md5": "e5efc6d49156859268732c49237c0a63", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_dasync.ec", + "type": "file", + "name": "e_dasync.ec", + "base_name": "e_dasync", + "extension": ".ec", + "size": 48, + "date": "2017-02-16", + "sha1": "e9c49a5b7eb225c713bbd51298001cfafabf3a73", + "md5": "6792de6c953ec612abf9c93497e200fe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_dasync_err.c", + "type": "file", + "name": "e_dasync_err.c", + "base_name": "e_dasync_err", + "extension": ".c", + "size": 3251, + "date": "2017-02-16", + "sha1": "d6075654ada5c5c46d6007e67fee66154c811f1f", + "md5": "9c91043ff812b596c73d12fc76d2948f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_dasync_err.h", + "type": "file", + "name": "e_dasync_err.h", + "base_name": "e_dasync_err", + "extension": ".h", + "size": 1891, + "date": "2017-02-16", + "sha1": "04cd6a08693ed4789346b2db3fa4cc918e99f2e5", + "md5": "55b9680c7c941114689ef342b8e3d3b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_ossltest.c", + "type": "file", + "name": "e_ossltest.c", + "base_name": "e_ossltest", + "extension": ".c", + "size": 16600, + "date": "2017-02-16", + "sha1": "54cabbe7557f954da0bc9aa3114438b555f2b715", + "md5": "240f1ba86c85b5497dcbd566b4ca583b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_ossltest.ec", + "type": "file", + "name": "e_ossltest.ec", + "base_name": "e_ossltest", + "extension": ".ec", + "size": 54, + "date": "2017-02-16", + "sha1": "a43cf1ec184de57ec489530664503211c2c54fbf", + "md5": "54df8703df8ec0c1fb78f75d274c0ea1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_ossltest_err.c", + "type": "file", + "name": "e_ossltest_err.c", + "base_name": "e_ossltest_err", + "extension": ".c", + "size": 2494, + "date": "2017-02-16", + "sha1": "50a9d29ad179a86d841ca2ff14adff3a8a44c091", + "md5": "1883d858dac7947a81432f49bce11818", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_ossltest_err.h", + "type": "file", + "name": "e_ossltest_err.h", + "base_name": "e_ossltest_err", + "extension": ".h", + "size": 1225, + "date": "2017-02-16", + "sha1": "18c11226380ed943fb7eb1160223bee5cb0d0e8b", + "md5": "2904ad7ad34d604ce541868fb4dd5247", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_padlock.c", + "type": "file", + "name": "e_padlock.c", + "base_name": "e_padlock", + "extension": ".c", + "size": 23226, + "date": "2017-02-16", + "sha1": "deb24586895e40a65bf8e67edde51dca710dbbac", + "md5": "47ff84ea49e3b07b79c68e82c7afa55e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/e_padlock.ec", + "type": "file", + "name": "e_padlock.ec", + "base_name": "e_padlock", + "extension": ".ec", + "size": 44, + "date": "2017-02-16", + "sha1": "cf5e1063f00ab46ca0e30e1f1f628f34daaa4c79", + "md5": "99c314c41df4c3a8c57d3a67816aa3ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/engine_vector.mar", + "type": "file", + "name": "engine_vector.mar", + "base_name": "engine_vector", + "extension": ".mar", + "size": 532, + "date": "2017-02-16", + "sha1": "469e3361023bf90ee6c3d841471c9863a5206028", + "md5": "9951187958582095204f5916aea148c2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/afalg", + "type": "directory", + "name": "afalg", + "base_name": "afalg", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 32077, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/afalg/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 353, + "date": "2017-02-16", + "sha1": "af26de4e2a4bdb0caa34f5d7a9eb0271d5106e8b", + "md5": "c6729a28142eb4b822e607f5ca3ea57c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/afalg/e_afalg.c", + "type": "file", + "name": "e_afalg.c", + "base_name": "e_afalg", + "extension": ".c", + "size": 23731, + "date": "2017-02-16", + "sha1": "3a42afa86bd7873f49ee87061c2f212432bc5d02", + "md5": "e809ae6a478b13e67d5ac8cb10b6d964", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/afalg/e_afalg.ec", + "type": "file", + "name": "e_afalg.ec", + "base_name": "e_afalg", + "extension": ".ec", + "size": 45, + "date": "2017-02-16", + "sha1": "da31abbcca9fde4077116438c8a393a50b2ac979", + "md5": "8f0b4940f65eafa23a96df40a3af92fe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/afalg/e_afalg.h", + "type": "file", + "name": "e_afalg.h", + "base_name": "e_afalg", + "extension": ".h", + "size": 1863, + "date": "2017-02-16", + "sha1": "9fdfa94ccc003099748e4c5af1ac15d2316d833b", + "md5": "4f72c303e73b8793f59e814e34df33bb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/afalg/e_afalg_err.c", + "type": "file", + "name": "e_afalg_err.c", + "base_name": "e_afalg_err", + "extension": ".c", + "size": 3733, + "date": "2017-02-16", + "sha1": "5aa0320beb5ded2c30079ac77db3b803080183cc", + "md5": "50e8bb19152efef791da57610688a92a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/afalg/e_afalg_err.h", + "type": "file", + "name": "e_afalg_err.h", + "base_name": "e_afalg_err", + "extension": ".h", + "size": 2352, + "date": "2017-02-16", + "sha1": "fb6185e07c10fc1ebd533f7c27f04f6ae8c3d7e7", + "md5": "737381e06ea46c7ffc3e324fcf5b91a8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 31614, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/asm/e_padlock-x86.pl", + "type": "file", + "name": "e_padlock-x86.pl", + "base_name": "e_padlock-x86", + "extension": ".pl", + "size": 18599, + "date": "2017-02-16", + "sha1": "fb8b10559c0b4dd39b58e80cca0fdf09a6408493", + "md5": "0efe1cc85a7be9f2e865afd566ae0dea", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/asm/e_padlock-x86_64.pl", + "type": "file", + "name": "e_padlock-x86_64.pl", + "base_name": "e_padlock-x86_64", + "extension": ".pl", + "size": 13015, + "date": "2017-02-16", + "sha1": "5a37d4652dd42c0e5e9a342fdcb38603acff7045", + "md5": "548c7a2f0bda0d03f4e8402ebdeafc64", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/vendor_defns", + "type": "directory", + "name": "vendor_defns", + "base_name": "vendor_defns", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 23062, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/engines/vendor_defns/hwcryptohook.h", + "type": "file", + "name": "hwcryptohook.h", + "base_name": "hwcryptohook", + "extension": ".h", + "size": 23062, + "date": "2017-02-16", + "sha1": "c24066ec131bbaaef7e8b7912c32b1102b05cc92", + "md5": "6a2b5edc8e0082562fe7e82082e3840d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-simplified", + "score": 78.13, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 22, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-simplified_14.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "warranty-disclaimer", + "score": 47.06, + "short_name": "Generic, Bare Warranty Disclaimer", + "category": "Unknown License", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:warranty-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "warranty-disclaimer.RULE", + "license_choice": false, + "licenses": [ + "warranty-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1998-2000 nCipher Corporation Limited." + ], + "holders": [ + "nCipher Corporation Limited." + ], + "authors": [], + "start_line": 20, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external", + "type": "directory", + "name": "external", + "base_name": "external", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 27, + "dirs_count": 8, + "size_count": 142908, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl", + "type": "directory", + "name": "perl", + "base_name": "perl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 27, + "dirs_count": 7, + "size_count": 142908, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Downloaded.txt", + "type": "file", + "name": "Downloaded.txt", + "base_name": "Downloaded", + "extension": ".txt", + "size": 397, + "date": "2017-02-16", + "sha1": "7ff1851e04b14d7ec3c96e03805d4bd3b76b4b5f", + "md5": "e6163775b89433b8b6b500a7cf95e1b8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46", + "type": "directory", + "name": "Text-Template-1.46", + "base_name": "Text-Template-1.46", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 4, + "size_count": 141680, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/Artistic", + "type": "file", + "name": "Artistic", + "base_name": "Artistic", + "extension": "", + "size": 6111, + "date": "2017-02-16", + "sha1": "be0627fff2e8aef3d2a14d5d7486babc8a4873ba", + "md5": "f921793d03cc6d63ec4b15e9be8fd3f8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "artistic-perl-1.0", + "score": 100.0, + "short_name": "Artistic-Perl-1.0", + "category": "Copyleft Limited", + "owner": "Perl Foundation", + "homepage_url": "http://dev.perl.org/licenses/artistic.html", + "text_url": "http://dev.perl.org/licenses/artistic.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:artistic-perl-1.0", + "spdx_license_key": "Artistic-1.0-Perl", + "spdx_url": "https://spdx.org/licenses/Artistic-1.0-Perl", + "start_line": 5, + "end_line": 131, + "matched_rule": { + "identifier": "artistic-perl-1.0.LICENSE", + "license_choice": false, + "licenses": [ + "artistic-perl-1.0" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/COPYING", + "type": "file", + "name": "COPYING", + "base_name": "COPYING", + "extension": "", + "size": 18043, + "date": "2017-02-16", + "sha1": "ab8577d3eb0eedf3f98004e381a9cee30e7224e1", + "md5": "361b6b837cad26c6900a926b62aada5f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-2.0", + "score": 99.97, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 1, + "end_line": 340, + "matched_rule": { + "identifier": "gpl-2.0_100.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc." + ], + "holders": [ + "Free Software Foundation, Inc." + ], + "authors": [], + "start_line": 4, + "end_line": 8 + }, + { + "statements": [ + "copyrighted by the Free Software Foundation" + ], + "holders": [ + "the Free Software Foundation" + ], + "authors": [], + "start_line": 251, + "end_line": 257 + }, + { + "statements": [], + "holders": [], + "authors": [ + "James Hacker." + ], + "start_line": 330, + "end_line": 331 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/INSTALL", + "type": "file", + "name": "INSTALL", + "base_name": "INSTALL", + "extension": "", + "size": 584, + "date": "2017-02-16", + "sha1": "b457bd56a70b838ccc55d183ab09de64b6996958", + "md5": "e6e20eb00e2c04d90de9a649e2f55ace", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/Makefile.PL", + "type": "file", + "name": "Makefile.PL", + "base_name": "Makefile", + "extension": ".PL", + "size": 217, + "date": "2017-02-16", + "sha1": "5950942a8aa07dc9755f354151e833c269dbd3ef", + "md5": "db9397bb70131be47edae35b75e95397", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "CPAN Perl module", + "name": null, + "version": null, + "primary_language": null, + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/MANIFEST", + "type": "file", + "name": "MANIFEST", + "base_name": "MANIFEST", + "extension": "", + "size": 476, + "date": "2017-02-16", + "sha1": "d55ef286f57719261f7b57d12e4f8264f32c2a4f", + "md5": "6fe30124e308b9dd506cf22b85344170", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "CPAN Perl module", + "name": null, + "version": null, + "primary_language": null, + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/META.json", + "type": "file", + "name": "META.json", + "base_name": "META", + "extension": ".json", + "size": 791, + "date": "2017-02-16", + "sha1": "4863680e4a35d96d2f4f170ab96dada500b4a690", + "md5": "2d18f8c1549faba584c8307a3fd8ea19", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "CPAN Perl module", + "name": null, + "version": null, + "primary_language": null, + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/META.yml", + "type": "file", + "name": "META.yml", + "base_name": "META", + "extension": ".yml", + "size": 429, + "date": "2017-02-16", + "sha1": "3a60e91dbb96b2afc0e06c065f0e778102c7e0c1", + "md5": "c98937fe236331b264beb6a33329a9b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "CPAN Perl module", + "name": null, + "version": null, + "primary_language": null, + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 11701, + "date": "2017-02-16", + "sha1": "5d77dacc6fbc44c87a96bbf67cb5c988be4ce5ee", + "md5": "59f394e63299cd817b2eaf741cff1fd2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/lib", + "type": "directory", + "name": "lib", + "base_name": "lib", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 2, + "size_count": 66373, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/lib/Text", + "type": "directory", + "name": "Text", + "base_name": "Text", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 66373, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/lib/Text/Template.pm", + "type": "file", + "name": "Template.pm", + "base_name": "Template", + "extension": ".pm", + "size": 62082, + "date": "2017-02-16", + "sha1": "113b79701a4a976b654ad81402e2207226e34c19", + "md5": "a73f87adea447f454d235795ca741f0f", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "gpl-2.0-plus", + "score": 100.0, + "short_name": "GPL 2.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus", + "spdx_license_key": "GPL-2.0+", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 1847, + "end_line": 1850, + "matched_rule": { + "identifier": "gpl-2.0-plus_64.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0-plus" + ] + } + }, + { + "key": "gpl-2.0", + "score": 67.29, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 1852, + "end_line": 1861, + "matched_rule": { + "identifier": "gpl-2.0_107.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013 M. J. Dominus." + ], + "holders": [ + "M. J. Dominus." + ], + "authors": [], + "start_line": 6, + "end_line": 9 + }, + { + "statements": [ + "Copyright 2013 Mark Jason Dominus" + ], + "holders": [ + "Mark Jason Dominus" + ], + "authors": [], + "start_line": 1844, + "end_line": 1845 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/lib/Text/Template", + "type": "directory", + "name": "Template", + "base_name": "Template", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 4291, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/lib/Text/Template/Preprocess.pm", + "type": "file", + "name": "Preprocess.pm", + "base_name": "Preprocess", + "extension": ".pm", + "size": 4291, + "date": "2017-02-16", + "sha1": "02684c91af41c92de45f0d3ca610e913a0b17d00", + "md5": "fd9081a561787275786aef330d65ddf0", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "gpl-2.0-plus", + "score": 87.18, + "short_name": "GPL 2.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus", + "spdx_license_key": "GPL-2.0+", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 127, + "end_line": 136, + "matched_rule": { + "identifier": "gpl-2.0-plus_92.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 20.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 138, + "end_line": 138, + "matched_rule": { + "identifier": "gpl_63.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013 Mark Jason Dominus" + ], + "holders": [ + "Mark Jason Dominus" + ], + "authors": [], + "start_line": 123, + "end_line": 124 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t", + "type": "directory", + "name": "t", + "base_name": "t", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 15, + "dirs_count": 0, + "size_count": 36955, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/00-version.t", + "type": "file", + "name": "00-version.t", + "base_name": "00-version", + "extension": ".t", + "size": 149, + "date": "2017-02-16", + "sha1": "4e6099155d8afe89d50339ba682cea804e785071", + "md5": "524f90207c648af8309909ed4f00dc47", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/01-basic.t", + "type": "file", + "name": "01-basic.t", + "base_name": "01-basic", + "extension": ".t", + "size": 6172, + "date": "2017-02-16", + "sha1": "29e008c1e05c5b2e75eb12a9ace5b625422daf6c", + "md5": "d14772090c8bbbd70b68daae10616b6f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/02-hash.t", + "type": "file", + "name": "02-hash.t", + "base_name": "02-hash", + "extension": ".t", + "size": 3215, + "date": "2017-02-16", + "sha1": "891e4a6f0a6564877452bec1e4026af1fbce462a", + "md5": "11a9c0284f53862ab310f78e4d1edca2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/03-out.t", + "type": "file", + "name": "03-out.t", + "base_name": "03-out", + "extension": ".t", + "size": 1221, + "date": "2017-02-16", + "sha1": "cb6de64424c205dbdeb71d8ea530e8f472b02aa6", + "md5": "0b271452f90f253b03f1816683d12c88", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/04-safe.t", + "type": "file", + "name": "04-safe.t", + "base_name": "04-safe", + "extension": ".t", + "size": 4508, + "date": "2017-02-16", + "sha1": "463cbc6b0e95aa458f6481414f11102cd687c6c4", + "md5": "0fc26cb1f621824e9a9d211bee70b865", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/05-safe2.t", + "type": "file", + "name": "05-safe2.t", + "base_name": "05-safe2", + "extension": ".t", + "size": 2801, + "date": "2017-02-16", + "sha1": "a52465b366e85c23f758f0db2998fec1fc363b93", + "md5": "db4ad97da803b50f217b11b0a0621ce1", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/06-ofh.t", + "type": "file", + "name": "06-ofh.t", + "base_name": "06-ofh", + "extension": ".t", + "size": 835, + "date": "2017-02-16", + "sha1": "2b86167a768c1a811c8c66b3b53f471b4d780b87", + "md5": "2ba20960dacd0893976ec5bb77fed0d9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/07-safe3.t", + "type": "file", + "name": "07-safe3.t", + "base_name": "07-safe3", + "extension": ".t", + "size": 2167, + "date": "2017-02-16", + "sha1": "7415cb479c01b81d94496f6b49beb4a3726f23c5", + "md5": "ec4078901a7be3a4093117f6f6fc738a", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/08-exported.t", + "type": "file", + "name": "08-exported.t", + "base_name": "08-exported", + "extension": ".t", + "size": 2283, + "date": "2017-02-16", + "sha1": "75e96ed59a3da15999194fcf76208b7511f9baf2", + "md5": "a5298ea901131cf7f58b4df12c386f3e", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/09-error.t", + "type": "file", + "name": "09-error.t", + "base_name": "09-error", + "extension": ".t", + "size": 1275, + "date": "2017-02-16", + "sha1": "4c615f1e1851620fc77194d112570f8ab6a523a7", + "md5": "a639c5542d00bea81f086f2c439142d8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/10-delimiters.t", + "type": "file", + "name": "10-delimiters.t", + "base_name": "10-delimiters", + "extension": ".t", + "size": 3051, + "date": "2017-02-16", + "sha1": "88fbc0c11ca2f741b3be9fa56494ce8972653b56", + "md5": "32f9a1d6cc02d6da5fb18f78bcd1b0fb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/11-prepend.t", + "type": "file", + "name": "11-prepend.t", + "base_name": "11-prepend", + "extension": ".t", + "size": 2483, + "date": "2017-02-16", + "sha1": "70a93244a424ebff566ebb12bffeaa94d5052950", + "md5": "1c27bc86b7ddfddc18118a19798953dc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/12-preprocess.t", + "type": "file", + "name": "12-preprocess.t", + "base_name": "12-preprocess", + "extension": ".t", + "size": 1451, + "date": "2017-02-16", + "sha1": "9d54e6b10b998e90e5ca045738211d6b787f8d5a", + "md5": "7a32234eae48cb5b1d2550e4cc6c048d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/13-taint.t", + "type": "file", + "name": "13-taint.t", + "base_name": "13-taint", + "extension": ".t", + "size": 3023, + "date": "2017-02-16", + "sha1": "ce35a9fcec37796920dd6c6093e1066bfe4bc121", + "md5": "9678d9b42bef5d0eda64bc435a2bf296", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/Text-Template-1.46/t/14-broken.t", + "type": "file", + "name": "14-broken.t", + "base_name": "14-broken", + "extension": ".t", + "size": 2321, + "date": "2017-02-16", + "sha1": "c3b024906a09905da5c5dec4193e2968dcf2b1fb", + "md5": "066c2c9b74576091ad2c624dbf50920c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/transfer", + "type": "directory", + "name": "transfer", + "base_name": "transfer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 831, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/transfer/Text", + "type": "directory", + "name": "Text", + "base_name": "Text", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 831, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/external/perl/transfer/Text/Template.pm", + "type": "file", + "name": "Template.pm", + "base_name": "Template", + "extension": ".pm", + "size": 831, + "date": "2017-02-16", + "sha1": "6217708eca82118f60b1434d18df290e28115fa8", + "md5": "cc8517c66838d54272fccfdfa82c525d", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz", + "type": "directory", + "name": "fuzz", + "base_name": "fuzz", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 0, + "size_count": 41619, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/asn1.c", + "type": "file", + "name": "asn1.c", + "base_name": "asn1", + "extension": ".c", + "size": 6828, + "date": "2017-02-16", + "sha1": "2326ef7d3a540703e0b4654a01fb2bc69e98f242", + "md5": "5d5723ea1943215950ae0c96a11337e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/asn1parse.c", + "type": "file", + "name": "asn1parse.c", + "base_name": "asn1parse", + "extension": ".c", + "size": 837, + "date": "2017-02-16", + "sha1": "0b5ce525458fda83a8b3a2a15d27674e26f71a89", + "md5": "1fd9e7ef550dc6267e219355946376d8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/bignum.c", + "type": "file", + "name": "bignum.c", + "base_name": "bignum", + "extension": ".c", + "size": 2396, + "date": "2017-02-16", + "sha1": "a17eb84388c0db6e0c5d239423c49d4c51bedaa2", + "md5": "0a9cfcd0fe6f67ee8cc02b3420397334", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/bndiv.c", + "type": "file", + "name": "bndiv.c", + "base_name": "bndiv", + "extension": ".c", + "size": 3089, + "date": "2017-02-16", + "sha1": "3448e61945d868210c86f130dcd51f36203c40de", + "md5": "9ca64a426974f0ab47e98d36b888d2b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 3229, + "date": "2017-02-16", + "sha1": "201b88ef29bfcafae7c44e36b60fe2c76c1cdc5a", + "md5": "7fdd7501d4a5268f2ab7e41814229054", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/cms.c", + "type": "file", + "name": "cms.c", + "base_name": "cms", + "extension": ".c", + "size": 837, + "date": "2017-02-16", + "sha1": "a7867f196b7a692b77bb587e0b104db17c2b3467", + "md5": "563142bda260525466118429dd7281e1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/conf.c", + "type": "file", + "name": "conf.c", + "base_name": "conf", + "extension": ".c", + "size": 853, + "date": "2017-02-16", + "sha1": "70a526ca701c856f5a330b08fe9029d0ff6007db", + "md5": "167a86fad93e9a9069f77f12039de9ac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/crl.c", + "type": "file", + "name": "crl.c", + "base_name": "crl", + "extension": ".c", + "size": 891, + "date": "2017-02-16", + "sha1": "bb785c21bfe362223ec05a16f4fd96dacf6700e8", + "md5": "6f908b07eb3eb5e1f7bd3ce394aec4a7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/ct.c", + "type": "file", + "name": "ct.c", + "base_name": "ct", + "extension": ".c", + "size": 1000, + "date": "2017-02-16", + "sha1": "c343149b5fd75b86fae4c53c88789a67cf3f0198", + "md5": "e9b2385e67b64f4640143829ee50aa32", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/driver.c", + "type": "file", + "name": "driver.c", + "base_name": "driver", + "extension": ".c", + "size": 1147, + "date": "2017-02-16", + "sha1": "e5d62d9faee3bb76e141c5d948058bb2ef9881b9", + "md5": "22691243e630604b1a7f3aa7da972b88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/fuzzer.h", + "type": "file", + "name": "fuzzer.h", + "base_name": "fuzzer", + "extension": ".h", + "size": 451, + "date": "2017-02-16", + "sha1": "305836a75f124e8a5ea3b70778a19d6b070791f6", + "md5": "5c1dc31139a014489dfe0c157112fd82", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/helper.py", + "type": "file", + "name": "helper.py", + "base_name": "helper", + "extension": ".py", + "size": 1357, + "date": "2017-02-16", + "sha1": "42d1922cb908a7a9a0b27932841d945f0efed094", + "md5": "a06e40e86f9aad25304cfc717cdf45a7", + "mime_type": "text/x-python", + "file_type": "Python script, ASCII text executable", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 1804, + "date": "2017-02-16", + "sha1": "da27e95c203d4cdd85e99382c3c39e109fc8e9d3", + "md5": "ec1607d44f0170963469205eee9b29c0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/server.c", + "type": "file", + "name": "server.c", + "base_name": "server", + "extension": ".c", + "size": 14772, + "date": "2017-02-16", + "sha1": "98dedc878847432ce2e4475619aedc74d5ba41dc", + "md5": "e50e371e780b095c7b4dea9d69070fdd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/test-corpus.c", + "type": "file", + "name": "test-corpus.c", + "base_name": "test-corpus", + "extension": ".c", + "size": 1176, + "date": "2017-02-16", + "sha1": "dedfdb31bd2746ad151e735338b83744ab151c77", + "md5": "239aac00919075413e6c24e9a8cc09b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/fuzz/x509.c", + "type": "file", + "name": "x509.c", + "base_name": "x509", + "extension": ".c", + "size": 952, + "date": "2017-02-16", + "sha1": "2248ce80bfc2e78698ca28862a1cb580f77c2600", + "md5": "3a3691fdc82488cfc977f07566f99e55", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include", + "type": "directory", + "name": "include", + "base_name": "include", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 86, + "dirs_count": 2, + "size_count": 1259761, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 0, + "size_count": 29601, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/bio.h", + "type": "file", + "name": "bio.h", + "base_name": "bio", + "extension": ".h", + "size": 794, + "date": "2017-02-16", + "sha1": "2c84c801bc06eae20924717b9bd08dd8f814b031", + "md5": "8ff584efb244ae8789083977aab6b26a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/comp.h", + "type": "file", + "name": "comp.h", + "base_name": "comp", + "extension": ".h", + "size": 390, + "date": "2017-02-16", + "sha1": "ca8ab3c76924ce697e6a3dca9ea74b142a1a22cc", + "md5": "6552ecdea28adf6e2d27275445492d0b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/conf.h", + "type": "file", + "name": "conf.h", + "base_name": "conf", + "extension": ".h", + "size": 666, + "date": "2017-02-16", + "sha1": "ccc4554877bcf54434cf37b1c54c30da097a3f79", + "md5": "47404248e82f15255e290550a430dc87", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/constant_time_locl.h", + "type": "file", + "name": "constant_time_locl.h", + "base_name": "constant_time_locl", + "extension": ".h", + "size": 6274, + "date": "2017-02-16", + "sha1": "0d796e91f347e6d3977e9cd5106696c81d0b8410", + "md5": "bd7678e9a98e584523ed754bf78c5215", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/dane.h", + "type": "file", + "name": "dane.h", + "base_name": "dane", + "extension": ".h", + "size": 3578, + "date": "2017-02-16", + "sha1": "46d983758786570fb7537c2090698f2cb437eb70", + "md5": "a5b206ba273d8efa359d08ab59549acb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/dso.h", + "type": "file", + "name": "dso.h", + "base_name": "dso", + "extension": ".h", + "size": 10792, + "date": "2017-02-16", + "sha1": "7de45048ae370166b1d913b3f1e9bf17e069308c", + "md5": "ebc5f8b03bc08bcca992ec8e98faf9e8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/err.h", + "type": "file", + "name": "err.h", + "base_name": "err", + "extension": ".h", + "size": 418, + "date": "2017-02-16", + "sha1": "7bc6afcd4f1d7a77a115d0660e68df281cc6506b", + "md5": "3175492892671281ac93136021ca7575", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/numbers.h", + "type": "file", + "name": "numbers.h", + "base_name": "numbers", + "extension": ".h", + "size": 1906, + "date": "2017-02-16", + "sha1": "82c8697696628483b08ee93304691e8788f319ef", + "md5": "0c539904105e5b5fb1e56c19899c62e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/o_dir.h", + "type": "file", + "name": "o_dir.h", + "base_name": "o_dir", + "extension": ".h", + "size": 2418, + "date": "2017-02-16", + "sha1": "9dd27c35c68ef8fadb448b9921201de673f58907", + "md5": "0562d7205241cf0d1dce9e1bbf3875d1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-simplified", + "score": 100.0, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 20, + "end_line": 39, + "matched_rule": { + "identifier": "bsd-simplified_28.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 17, + "end_line": 18 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/o_str.h", + "type": "file", + "name": "o_str.h", + "base_name": "o_str", + "extension": ".h", + "size": 505, + "date": "2017-02-16", + "sha1": "40a688efa6cb9051f3de58e129cc2df0e2319720", + "md5": "afa55612afca86d1bca0edec9066ab71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/internal/thread_once.h", + "type": "file", + "name": "thread_once.h", + "base_name": "thread_once", + "extension": ".h", + "size": 1860, + "date": "2017-02-16", + "sha1": "c218c67cc68a44b79145cb78133a60c1c2bf4d51", + "md5": "5781800fe884416da65fe3eb3969510a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl", + "type": "directory", + "name": "openssl", + "base_name": "openssl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 75, + "dirs_count": 0, + "size_count": 1230160, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/__DECC_INCLUDE_EPILOGUE.H", + "type": "file", + "name": "__DECC_INCLUDE_EPILOGUE.H", + "base_name": "__DECC_INCLUDE_EPILOGUE", + "extension": ".H", + "size": 556, + "date": "2017-02-16", + "sha1": "5f848946189b2808fdbd730c811650361aeef9c3", + "md5": "a06e40cc4176b1cbe4c30cd57b4cb72f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/__DECC_INCLUDE_PROLOGUE.H", + "type": "file", + "name": "__DECC_INCLUDE_PROLOGUE.H", + "base_name": "__DECC_INCLUDE_PROLOGUE", + "extension": ".H", + "size": 627, + "date": "2017-02-16", + "sha1": "596a3e43a62a89a3721cdc0ca3c4d45654897000", + "md5": "a29d554c45941209edb31401032531d3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/aes.h", + "type": "file", + "name": "aes.h", + "base_name": "aes", + "extension": ".h", + "size": 3349, + "date": "2017-02-16", + "sha1": "fd01d7b1fa7929906db7486943e3c68510794d01", + "md5": "1fe491c6755e6f1014a9b9704ce9bf5b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/asn1.h", + "type": "file", + "name": "asn1.h", + "base_name": "asn1", + "extension": ".h", + "size": 46219, + "date": "2017-02-16", + "sha1": "6273cbbd483b5f432bebeb3b4518206670a64b4e", + "md5": "9816fb07c66fb16ff3265928f96f09a1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/asn1_mac.h", + "type": "file", + "name": "asn1_mac.h", + "base_name": "asn1_mac", + "extension": ".h", + "size": 395, + "date": "2017-02-16", + "sha1": "9fe8dd066ed9109c09862222a25b15bf109ad34c", + "md5": "926348f025372ccacaf16c663b051aec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/asn1t.h", + "type": "file", + "name": "asn1t.h", + "base_name": "asn1t", + "extension": ".h", + "size": 31918, + "date": "2017-02-16", + "sha1": "c179741e69b0e3701415ea0d26cc56e56ee44457", + "md5": "14f097d5eb77f21366c94d70c2fe7960", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 30, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 30, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 30, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/async.h", + "type": "file", + "name": "async.h", + "base_name": "async", + "extension": ".h", + "size": 3292, + "date": "2017-02-16", + "sha1": "e05991d4dbc495c5a65b4a86b1827e21144563ab", + "md5": "3c60c8fa0b456dc2a4440de7f155446b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/bio.h", + "type": "file", + "name": "bio.h", + "base_name": "bio", + "extension": ".h", + "size": 37704, + "date": "2017-02-16", + "sha1": "114b3e05f5906629b84c4d31a87e9488934ca425", + "md5": "3dccec73234aead55f4d917a7f976d82", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/blowfish.h", + "type": "file", + "name": "blowfish.h", + "base_name": "blowfish", + "extension": ".h", + "size": 1847, + "date": "2017-02-16", + "sha1": "04ba89a4b5829781a5d0347858ed25ba8ca2c4c8", + "md5": "7e7efd03e9788db2a80ec3b86c50ccd7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/bn.h", + "type": "file", + "name": "bn.h", + "base_name": "bn", + "extension": ".h", + "size": 24932, + "date": "2017-02-16", + "sha1": "f77d49e9cd4c0263872d50f999f09cc80a941f11", + "md5": "db31c0ebc3cab0b94f1512f1e594647b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/buffer.h", + "type": "file", + "name": "buffer.h", + "base_name": "buffer", + "extension": ".h", + "size": 2095, + "date": "2017-02-16", + "sha1": "c3c9597f1807537e1737c3c58da9a540850f42f1", + "md5": "a297b7b91c282e92d733b418ca49ce71", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/camellia.h", + "type": "file", + "name": "camellia.h", + "base_name": "camellia", + "extension": ".h", + "size": 3179, + "date": "2017-02-16", + "sha1": "4747317d07b854c7a37f0fc50675798e5ad3c52f", + "md5": "3cbdd1cd1b3c842d31bef989e630402c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/cast.h", + "type": "file", + "name": "cast.h", + "base_name": "cast", + "extension": ".h", + "size": 1674, + "date": "2017-02-16", + "sha1": "b60f5fc1e2b295dd8c1797358b0eec121e5bb433", + "md5": "4ccd1f55ecd549e61aaba7b49ca05d25", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/cmac.h", + "type": "file", + "name": "cmac.h", + "base_name": "cmac", + "extension": ".h", + "size": 1064, + "date": "2017-02-16", + "sha1": "4ac7c970fbe73b7459ee2f90c967aec8806816be", + "md5": "6f3232824538b358381945b2898a47f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/cms.h", + "type": "file", + "name": "cms.h", + "base_name": "cms", + "extension": ".h", + "size": 26518, + "date": "2017-02-16", + "sha1": "70560813453f96eb5db4e4c8cd88e0bb7a92be87", + "md5": "4944b7455f37fe8815a22c7ae5743b75", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/comp.h", + "type": "file", + "name": "comp.h", + "base_name": "comp", + "extension": ".h", + "size": 2033, + "date": "2017-02-16", + "sha1": "c3faf61ab35d62fb21f70a69abb2bfaff0a037f9", + "md5": "bdefe8c3473874ef6d6869119554a957", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/conf.h", + "type": "file", + "name": "conf.h", + "base_name": "conf", + "extension": ".h", + "size": 8011, + "date": "2017-02-16", + "sha1": "e958dbc62a4746b10004709788d36b84e72685d4", + "md5": "8a2e246f9fad012944af3b6be4ad118a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/conf_api.h", + "type": "file", + "name": "conf_api.h", + "base_name": "conf_api", + "extension": ".h", + "size": 1300, + "date": "2017-02-16", + "sha1": "684908ecc08d24667e489c6ce75e2e318d685b7b", + "md5": "829179180a4cb85b2ad608c4cc28bf06", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/crypto.h", + "type": "file", + "name": "crypto.h", + "base_name": "crypto", + "extension": ".h", + "size": 17785, + "date": "2017-02-16", + "sha1": "aa9241c78e8c4c8f033c30725df4441cc788860b", + "md5": "2763f604066b396ce0b6004b20020277", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ct.h", + "type": "file", + "name": "ct.h", + "base_name": "ct", + "extension": ".h", + "size": 18985, + "date": "2017-02-16", + "sha1": "3bb3c80adf92004e8108c02f8c043ad545895d05", + "md5": "03bf116462712da19aabb257fe22cc63", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/des.h", + "type": "file", + "name": "des.h", + "base_name": "des", + "extension": ".h", + "size": 7627, + "date": "2017-02-16", + "sha1": "ce73b0ff456ad81d50590e5097248010892b7701", + "md5": "38e6b1b2fdcc4367bd308e973a4247a3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/dh.h", + "type": "file", + "name": "dh.h", + "base_name": "dh", + "extension": ".h", + "size": 14120, + "date": "2017-02-16", + "sha1": "37fa9907dc7f5805ca104a6014bf92f19c315450", + "md5": "f63a703e3d2c5944396c6f562beba5eb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/dsa.h", + "type": "file", + "name": "dsa.h", + "base_name": "dsa", + "extension": ".h", + "size": 11773, + "date": "2017-02-16", + "sha1": "76ed0e972eb456ace437bd2b8f5756e7a4203f1f", + "md5": "ee9868775b10c19dcbf98c9900bf653e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Steven Schoch " + ], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/dtls1.h", + "type": "file", + "name": "dtls1.h", + "base_name": "dtls1", + "extension": ".h", + "size": 1616, + "date": "2017-02-16", + "sha1": "dd10faf8cf8f3d9faa44a45655dd796fb6480670", + "md5": "4a07ac235fe9e38f5698dc32ca8501b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/e_os2.h", + "type": "file", + "name": "e_os2.h", + "base_name": "e_os2", + "extension": ".h", + "size": 9237, + "date": "2017-02-16", + "sha1": "5c9201a6be873430bfc12d8b1af1cf9b1e17cd11", + "md5": "e90ab46efdd2656d511ca99f376bdd52", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ebcdic.h", + "type": "file", + "name": "ebcdic.h", + "base_name": "ebcdic", + "extension": ".h", + "size": 924, + "date": "2017-02-16", + "sha1": "cf9167f536cf690a3cce863e530a3f952afd489f", + "md5": "9a0ab751702219dec33afc302f43b147", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ec.h", + "type": "file", + "name": "ec.h", + "base_name": "ec", + "extension": ".h", + "size": 70473, + "date": "2017-02-16", + "sha1": "ce13dd8fec1c5c82e5d609ca776f3145d8fc293e", + "md5": "5411f9b6eb9cb6484cb2fa441a8e7b3f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ecdh.h", + "type": "file", + "name": "ecdh.h", + "base_name": "ecdh", + "extension": ".h", + "size": 358, + "date": "2017-02-16", + "sha1": "89752ac2395c5c28b1da2d7e4ffcd7455e0f535f", + "md5": "a31fd955a1012e150f038b98feff2a60", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ecdsa.h", + "type": "file", + "name": "ecdsa.h", + "base_name": "ecdsa", + "extension": ".h", + "size": 358, + "date": "2017-02-16", + "sha1": "89752ac2395c5c28b1da2d7e4ffcd7455e0f535f", + "md5": "a31fd955a1012e150f038b98feff2a60", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/engine.h", + "type": "file", + "name": "engine.h", + "base_name": "engine", + "extension": ".h", + "size": 39584, + "date": "2017-02-16", + "sha1": "7f8dcff4d684e074e816af6a03df91307c2cc661", + "md5": "ae0d349e354733aa742b28f86f87ac26", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/err.h", + "type": "file", + "name": "err.h", + "base_name": "err", + "extension": ".h", + "size": 10600, + "date": "2017-02-16", + "sha1": "3b8dafc435161cebd336055b11e6adf290339b81", + "md5": "b6dc50c6f6abcb54f2410185c73bea4a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/evp.h", + "type": "file", + "name": "evp.h", + "base_name": "evp", + "extension": ".h", + "size": 74604, + "date": "2017-02-16", + "sha1": "c587f9d9a3ebd62b0b01167b1df0cf4fb874d9ed", + "md5": "6c9316f451a93d14138bacfeea07be98", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/hmac.h", + "type": "file", + "name": "hmac.h", + "base_name": "hmac", + "extension": ".h", + "size": 1553, + "date": "2017-02-16", + "sha1": "a30c85a6cd906922e84c150b1adea71546920363", + "md5": "1892cba22b3720f8cc3a571b2023d6b2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/idea.h", + "type": "file", + "name": "idea.h", + "base_name": "idea", + "extension": ".h", + "size": 2099, + "date": "2017-02-16", + "sha1": "f4e85f1a33444625a6f886856678379a3ef86bbd", + "md5": "89bb79567ff1d3e8b087add0dce79651", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/kdf.h", + "type": "file", + "name": "kdf.h", + "base_name": "kdf", + "extension": ".h", + "size": 2842, + "date": "2017-02-16", + "sha1": "f767d44adb9c06ad59d340cdd5659d1a2fbdea19", + "md5": "566a6bc126609b976c1e2a7eacd02aa0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/lhash.h", + "type": "file", + "name": "lhash.h", + "base_name": "lhash", + "extension": ".h", + "size": 7912, + "date": "2017-02-16", + "sha1": "31cd03911a9ba88de284761936190a088e0e1d58", + "md5": "1486d0434cf5c8ea5bc00abc1ff07c9e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/md2.h", + "type": "file", + "name": "md2.h", + "base_name": "md2", + "extension": ".h", + "size": 1054, + "date": "2017-02-16", + "sha1": "494e60fa1147f0a5c9c12125504eaa9f3f3c5db4", + "md5": "261ca3b3b8b40bc2ea7273e5534ccc88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/md4.h", + "type": "file", + "name": "md4.h", + "base_name": "md4", + "extension": ".h", + "size": 1322, + "date": "2017-02-16", + "sha1": "35599855d5da1521f2969449461e762d4a920086", + "md5": "c0080b025a91c0730a3b55f53f33cf7c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/md5.h", + "type": "file", + "name": "md5.h", + "base_name": "md5", + "extension": ".h", + "size": 1320, + "date": "2017-02-16", + "sha1": "f11d9d89db381c679cd01b89e518e7234b0d02ab", + "md5": "a05b534a22be4a2ee377ddd19994a5af", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/mdc2.h", + "type": "file", + "name": "mdc2.h", + "base_name": "mdc2", + "extension": ".h", + "size": 1053, + "date": "2017-02-16", + "sha1": "71e3f990ee603890c9192ec7ac3463a56586da2e", + "md5": "461fae96a1e2f8cd641753ad59e3bcd9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/modes.h", + "type": "file", + "name": "modes.h", + "base_name": "modes", + "extension": ".h", + "size": 10415, + "date": "2017-02-16", + "sha1": "b8f61f0c20ff791684307c0b7f5e8837b4400fc5", + "md5": "4defb9676e8e27d820721a68dc15731f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/obj_mac.h", + "type": "file", + "name": "obj_mac.h", + "base_name": "obj_mac", + "extension": ".h", + "size": 191201, + "date": "2017-02-16", + "sha1": "2922bc46d66966eaf1c43f5bddaf283ad1adc7d3", + "md5": "18213a5f8b5d977e56a7356fee616e5e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/objects.h", + "type": "file", + "name": "objects.h", + "base_name": "objects", + "extension": ".h", + "size": 44812, + "date": "2017-02-16", + "sha1": "a845ec4cb1ca243c45b8f7aed83ed673f3c420e6", + "md5": "0bf2d1a0c9999aee0fa3c8e77d98ec0f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ocsp.h", + "type": "file", + "name": "ocsp.h", + "base_name": "ocsp", + "extension": ".h", + "size": 18411, + "date": "2017-02-16", + "sha1": "45ea589fff61b044d96190e2939e2fbd4c184d7a", + "md5": "05f417f96d4f685dda0a278d7091810e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/opensslconf.h.in", + "type": "file", + "name": "opensslconf.h.in", + "base_name": "opensslconf.h", + "extension": ".in", + "size": 3788, + "date": "2017-02-16", + "sha1": "180a32a0ab89110c04081b741213780e52e9b6f4", + "md5": "3ce5e4faa89d296061fb459a61109a55", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 4, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/opensslv.h", + "type": "file", + "name": "opensslv.h", + "base_name": "opensslv", + "extension": ".h", + "size": 4208, + "date": "2017-02-16", + "sha1": "e6be3eea2cc78525f57f4bf502e8895b10417566", + "md5": "9a25a5c81b3d56a04f9cd9513cf62e1c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ossl_typ.h", + "type": "file", + "name": "ossl_typ.h", + "base_name": "ossl_typ", + "extension": ".h", + "size": 6023, + "date": "2017-02-16", + "sha1": "ff966db873a1f75a49cfad6b87f20a91f79d8ade", + "md5": "ec6d5cdc7aebaaa748f916ec6b48ae89", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/pem.h", + "type": "file", + "name": "pem.h", + "base_name": "pem", + "extension": ".h", + "size": 20680, + "date": "2017-02-16", + "sha1": "0cf3ee9567cdd1835a17f0ce8ef5fdfdea58ac18", + "md5": "a5b33e4781e6ae6cf776ba24f39b81ab", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/pem2.h", + "type": "file", + "name": "pem2.h", + "base_name": "pem2", + "extension": ".h", + "size": 463, + "date": "2017-02-16", + "sha1": "bb2e30938214a7e2c96eed29725e47b384e86ad2", + "md5": "f0a13efb9110714b1f8fa41c409245b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/pkcs12.h", + "type": "file", + "name": "pkcs12.h", + "base_name": "pkcs12", + "extension": ".h", + "size": 12999, + "date": "2017-02-16", + "sha1": "77c65fbdbd68b6f7f490b150345baa983c61262c", + "md5": "5f9176a464d06ebe341dce86b8d4d337", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/pkcs7.h", + "type": "file", + "name": "pkcs7.h", + "base_name": "pkcs7", + "extension": ".h", + "size": 16331, + "date": "2017-02-16", + "sha1": "35479eb06f57411be37ac4592f84d97599411d56", + "md5": "84a79bd5e5c7303081c75378698da6ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/rand.h", + "type": "file", + "name": "rand.h", + "base_name": "rand", + "extension": ".h", + "size": 2634, + "date": "2017-02-16", + "sha1": "c3d0909e9fc2ee0f2c44fb4fdd021e6eac4b1122", + "md5": "2eb9376e32c8e3ed73e25e7985f2ef5c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/rc2.h", + "type": "file", + "name": "rc2.h", + "base_name": "rc2", + "extension": ".h", + "size": 1534, + "date": "2017-02-16", + "sha1": "5f3c2fc758afe16df9925c560a9c91477e7f5307", + "md5": "f99acbe6bb832ddcdafff758d719e8e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/rc4.h", + "type": "file", + "name": "rc4.h", + "base_name": "rc4", + "extension": ".h", + "size": 825, + "date": "2017-02-16", + "sha1": "d35987dfdbfca6f5c877307737fddb9f4b89c15b", + "md5": "adacdb0815ebd6ba4b14354255971086", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/rc5.h", + "type": "file", + "name": "rc5.h", + "base_name": "rc5", + "extension": ".h", + "size": 1988, + "date": "2017-02-16", + "sha1": "9d531d34575b3a17a24b33508c9e6ff762ef1262", + "md5": "abf58bf4c91faf041a4b94d94060a7d3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ripemd.h", + "type": "file", + "name": "ripemd.h", + "base_name": "ripemd", + "extension": ".h", + "size": 1243, + "date": "2017-02-16", + "sha1": "5143555c6514d549ec1a95e2bc8ce973f672150b", + "md5": "32f0286704f206769249aed9182bdcf2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/rsa.h", + "type": "file", + "name": "rsa.h", + "base_name": "rsa", + "extension": ".h", + "size": 27404, + "date": "2017-02-16", + "sha1": "1f87726ff16f2d9928949a23ce827aacefaaf7bf", + "md5": "f64b58123371795c837c28aa4c8d570b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/safestack.h", + "type": "file", + "name": "safestack.h", + "base_name": "safestack", + "extension": ".h", + "size": 6300, + "date": "2017-02-16", + "sha1": "f0e9fd911f44d70663c45f6bb1aeb8701fcc9904", + "md5": "b78f71932c8cb866e117fdacf5282134", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/seed.h", + "type": "file", + "name": "seed.h", + "base_name": "seed", + "extension": ".h", + "size": 3518, + "date": "2017-02-16", + "sha1": "57e8b670cf2e4f4f2f9e499f9ef16c38a2405709", + "md5": "450cee303355eaa1fe735c831528468b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 84.58, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 13, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-new_181.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2007" + ], + "holders": [], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/sha.h", + "type": "file", + "name": "sha.h", + "base_name": "sha", + "extension": ".h", + "size": 3831, + "date": "2017-02-16", + "sha1": "96ed47038a1d226b3238037abdc0ca6873b132b7", + "md5": "b9e5afb99b7becb95f2bbcdf1339e953", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/srp.h", + "type": "file", + "name": "srp.h", + "base_name": "srp", + "extension": ".h", + "size": 3672, + "date": "2017-02-16", + "sha1": "55340d877e572f1cd3fb0ab07909df093ad2a8a0", + "md5": "deaff141b295a4a45aebd0565b9de4e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/srtp.h", + "type": "file", + "name": "srtp.h", + "base_name": "srtp", + "extension": ".h", + "size": 1316, + "date": "2017-02-16", + "sha1": "6fa02a5c501c7cacd848d2c9ae46b3d35f45d753", + "md5": "46d9445631593c865f391739cda815d8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Rescorla " + ], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [ + "Copyright (c) 2006, Network Resonance, Inc.", + "Copyright (c) 2011, RTFM, Inc." + ], + "holders": [ + "Network Resonance, Inc.", + "RTFM, Inc." + ], + "authors": [], + "start_line": 13, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ssl.h", + "type": "file", + "name": "ssl.h", + "base_name": "ssl", + "extension": ".h", + "size": 123498, + "date": "2017-02-16", + "sha1": "06c81f5d9edb22111cf64c859795a6f5ecba800a", + "md5": "9dfd580e5662dcedc4d9e88f4a803a9f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ssl2.h", + "type": "file", + "name": "ssl2.h", + "base_name": "ssl2", + "extension": ".h", + "size": 542, + "date": "2017-02-16", + "sha1": "654045f73cd0aff1274b1f611f42420741133fcb", + "md5": "29861f974e3256592642e226c80c8a5b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ssl3.h", + "type": "file", + "name": "ssl3.h", + "base_name": "ssl3", + "extension": ".h", + "size": 13014, + "date": "2017-02-16", + "sha1": "dc9b43c2ecf17e77d995acc5d121aaf0109509f3", + "md5": "98d310c8cb4e6065f3be0024957e92f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/stack.h", + "type": "file", + "name": "stack.h", + "base_name": "stack", + "extension": ".h", + "size": 2860, + "date": "2017-02-16", + "sha1": "4cce6174cfcd6f3b0f69291a2afb9d0990796e22", + "md5": "8a731a19d4b9260097351af4fad6f31d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/symhacks.h", + "type": "file", + "name": "symhacks.h", + "base_name": "symhacks", + "extension": ".h", + "size": 2076, + "date": "2017-02-16", + "sha1": "4d8629fff89ff39ab0f81507650178632d50a336", + "md5": "7a5c282616cc5c37f1b55876fdc92161", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/tls1.h", + "type": "file", + "name": "tls1.h", + "base_name": "tls1", + "extension": ".h", + "size": 49487, + "date": "2017-02-16", + "sha1": "7c4e8fcc2570f889c4231876f26d46fe4a90e1fa", + "md5": "9374db567f2a48cee48beb33f37b2952", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 24, + "end_line": 24 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 26, + "end_line": 28 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ts.h", + "type": "file", + "name": "ts.h", + "base_name": "ts", + "extension": ".h", + "size": 27348, + "date": "2017-02-16", + "sha1": "6bad06788e2bb0e49200974f67a456708e3fc45a", + "md5": "93351f356de373b950a18bf88ac95ac4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/txt_db.h", + "type": "file", + "name": "txt_db.h", + "base_name": "txt_db", + "extension": ".h", + "size": 1662, + "date": "2017-02-16", + "sha1": "7e6cdb876a29373e4bf16e95f5cd214177b9e55a", + "md5": "7c8c5770a233de69adafe44baba47a58", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/ui.h", + "type": "file", + "name": "ui.h", + "base_name": "ui", + "extension": ".h", + "size": 16856, + "date": "2017-02-16", + "sha1": "932edcf7209803f75c3bddf5e2f37a1177bfa64b", + "md5": "a2b19ac1d2ca71f87b12b8142b08f74d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/whrlpool.h", + "type": "file", + "name": "whrlpool.h", + "base_name": "whrlpool", + "extension": ".h", + "size": 1377, + "date": "2017-02-16", + "sha1": "528d0afdd195aa1b11528afff0216999635aa076", + "md5": "a8b0d0f09b12792cba263c2972b66a0d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/x509.h", + "type": "file", + "name": "x509.h", + "base_name": "x509", + "extension": ".h", + "size": 47981, + "date": "2017-02-16", + "sha1": "c6d8cf613eeebe1797190482ab09962d7e018ebf", + "md5": "724a2c7f6698c956c4b82327fae7e8e3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Pat Richard " + ], + "start_line": 255, + "end_line": 257 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/x509_vfy.h", + "type": "file", + "name": "x509_vfy.h", + "base_name": "x509_vfy", + "extension": ".h", + "size": 27689, + "date": "2017-02-16", + "sha1": "48fe5d243f1b5b3f1887427983627afe3169cbec", + "md5": "b587f7fb1de3a2278c499f7aed6902d0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/include/openssl/x509v3.h", + "type": "file", + "name": "x509v3.h", + "base_name": "x509v3", + "extension": ".h", + "size": 38262, + "date": "2017-02-16", + "sha1": "30ee2266d0f2a69b693aab076e0359686ff8b54e", + "md5": "c3d258eba96c1be8ff92a044da23b3f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms", + "type": "directory", + "name": "ms", + "base_name": "ms", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 23281, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/applink.c", + "type": "file", + "name": "applink.c", + "base_name": "applink", + "extension": ".c", + "size": 3508, + "date": "2017-02-16", + "sha1": "c764e8954385160b38f58b311c821c0232fae75a", + "md5": "cbea35e9cc59c24f7b8a4430c976ef36", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/cmp.pl", + "type": "file", + "name": "cmp.pl", + "base_name": "cmp", + "extension": ".pl", + "size": 1194, + "date": "2017-02-16", + "sha1": "b272c91ccba5a3492b0fa4b1aee7422c92ca6468", + "md5": "2b92c027ff8e83870ae145db49f48871", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/segrenam.pl", + "type": "file", + "name": "segrenam.pl", + "base_name": "segrenam", + "extension": ".pl", + "size": 2744, + "date": "2017-02-16", + "sha1": "04db5c2bbddffc6abd3c7ad579993525f7a885fe", + "md5": "8c3a55b9657d4a4b42caf7ab3a78ddcd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/tlhelp32.h", + "type": "file", + "name": "tlhelp32.h", + "base_name": "tlhelp32", + "extension": ".h", + "size": 4405, + "date": "2017-02-16", + "sha1": "1314d24695d6bb6436cb1b0dcfc7db0ea117f5ad", + "md5": "d3c289b50a51f988183d38daffe48844", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "lgpl-2.1", + "score": 38.67, + "short_name": "LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", + "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1", + "spdx_license_key": "LGPL-2.1", + "spdx_url": "https://spdx.org/licenses/LGPL-2.1", + "start_line": 8, + "end_line": 10, + "matched_rule": { + "identifier": "lgpl-2.1_65.RULE", + "license_choice": false, + "licenses": [ + "lgpl-2.1" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Mumit Khan " + ], + "start_line": 4, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/uplink-common.pl", + "type": "file", + "name": "uplink-common.pl", + "base_name": "uplink-common", + "extension": ".pl", + "size": 1109, + "date": "2017-02-16", + "sha1": "5a8582b6bcc4aac6b8c4ca2a776cdcbf733c3920", + "md5": "0b5c99ee5d834b210a8e5d7b8ba03f4c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/uplink-ia64.pl", + "type": "file", + "name": "uplink-ia64.pl", + "base_name": "uplink-ia64", + "extension": ".pl", + "size": 1411, + "date": "2017-02-16", + "sha1": "93f617bb4053c3ff0bbc7cae7e96427e9e118079", + "md5": "b0e4663cb3f75086ed4579f59515c50a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/uplink-x86.pl", + "type": "file", + "name": "uplink-x86.pl", + "base_name": "uplink-x86", + "extension": ".pl", + "size": 1067, + "date": "2017-02-16", + "sha1": "8d2af9e276813c558028be11ccbea731e67bcdc0", + "md5": "483b130bf484397008fd23a2ad957e38", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/uplink-x86_64.pl", + "type": "file", + "name": "uplink-x86_64.pl", + "base_name": "uplink-x86_64", + "extension": ".pl", + "size": 1523, + "date": "2017-02-16", + "sha1": "6237db8b1e9a70b8f7a4b28d497b6c694834e64d", + "md5": "a7a4437f7667c3d07223b3e0e08a0a33", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/uplink.c", + "type": "file", + "name": "uplink.c", + "base_name": "uplink", + "extension": ".c", + "size": 4090, + "date": "2017-02-16", + "sha1": "7a6759f97282c77ad615eddfc4d644cc48719afa", + "md5": "5bcb20ee6bf7b2a76664c69d5a4ce413", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ms/uplink.h", + "type": "file", + "name": "uplink.h", + "base_name": "uplink", + "extension": ".h", + "size": 2230, + "date": "2017-02-16", + "sha1": "fdfe733a4be9dcf36a1fcac2f3648be3284450f2", + "md5": "3fd95e82fd2ac67b9cf3dd0ef010b315", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/os-dep", + "type": "directory", + "name": "os-dep", + "base_name": "os-dep", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 46, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/os-dep/haiku.h", + "type": "file", + "name": "haiku.h", + "base_name": "haiku", + "extension": ".h", + "size": 46, + "date": "2017-02-16", + "sha1": "719c72789228b8acf94f63f36c5d48f99840b5f7", + "md5": "de120cca30b30c0019615acf513f0048", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl", + "type": "directory", + "name": "ssl", + "base_name": "ssl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 48, + "dirs_count": 2, + "size_count": 1419974, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/bio_ssl.c", + "type": "file", + "name": "bio_ssl.c", + "base_name": "bio_ssl", + "extension": ".c", + "size": 13541, + "date": "2017-02-16", + "sha1": "7ee2178c09c0716775ba4498991b97244934cd81", + "md5": "ff3224197e853ac17a4b7ff7fac80a96", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 657, + "date": "2017-02-16", + "sha1": "020fa9311b5ec19a723c42966372baecadad2bb3", + "md5": "8278032cfc54745f779d3397e211e2fe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/d1_lib.c", + "type": "file", + "name": "d1_lib.c", + "base_name": "d1_lib", + "extension": ".c", + "size": 32359, + "date": "2017-02-16", + "sha1": "f00184b7829b7047206a3fd9fc0cb7047b2ba4de", + "md5": "7940093744d4c2219e2e06eafcb66d21", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/d1_msg.c", + "type": "file", + "name": "d1_msg.c", + "base_name": "d1_msg", + "extension": ".c", + "size": 2754, + "date": "2017-02-16", + "sha1": "41d737003f4602785e1985952b5e4f0b1510a569", + "md5": "006ec9db9e87800ac0b859ef2fe595be", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/d1_srtp.c", + "type": "file", + "name": "d1_srtp.c", + "base_name": "d1_srtp", + "extension": ".c", + "size": 8794, + "date": "2017-02-16", + "sha1": "b348fade860b5e1275163192c99924d390854c14", + "md5": "6a1fb01c420b622777603eaaf28500e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Rescorla " + ], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [ + "Copyright (c) 2006, Network Resonance, Inc.", + "Copyright (c) 2011, RTFM, Inc." + ], + "holders": [ + "Network Resonance, Inc.", + "RTFM, Inc." + ], + "authors": [], + "start_line": 13, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/methods.c", + "type": "file", + "name": "methods.c", + "base_name": "methods", + "extension": ".c", + "size": 8239, + "date": "2017-02-16", + "sha1": "0fc9697c4f72fb718736c4aa1c6298c73908860e", + "md5": "dc4441728e48388785a50f6b840cb755", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/packet_locl.h", + "type": "file", + "name": "packet_locl.h", + "base_name": "packet_locl", + "extension": ".h", + "size": 15690, + "date": "2017-02-16", + "sha1": "d2c518fd94db2089751b98d8afdbd66e7baa01c6", + "md5": "f6f60a99a82f8e843cca80731635e222", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/pqueue.c", + "type": "file", + "name": "pqueue.c", + "base_name": "pqueue", + "extension": ".c", + "size": 2879, + "date": "2017-02-16", + "sha1": "aaa5894976dc7dddc003f0e7c44516fdffb9dfe8", + "md5": "fe72c53b9b43a7813d6ae8c69d0144ed", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/s3_cbc.c", + "type": "file", + "name": "s3_cbc.c", + "base_name": "s3_cbc", + "extension": ".c", + "size": 19837, + "date": "2017-02-16", + "sha1": "de16a74b7675bff3157654cd14300e1e79ccb4e1", + "md5": "7b52a568cb1c591238325edae9ec2211", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/s3_enc.c", + "type": "file", + "name": "s3_enc.c", + "base_name": "s3_enc", + "extension": ".c", + "size": 18408, + "date": "2017-02-16", + "sha1": "4f52970112db51d6c94758a37c44156235b337d3", + "md5": "ad4f4d83d218881bf321dbeb4647db5b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/s3_lib.c", + "type": "file", + "name": "s3_lib.c", + "base_name": "s3_lib", + "extension": ".c", + "size": 104428, + "date": "2017-02-16", + "sha1": "d4e6629269ce35fcd75b2eb8965c2bee5dd8b1a5", + "md5": "fafe730d9718182f949f617ab78baefc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 24, + "end_line": 24 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 26, + "end_line": 28 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/s3_msg.c", + "type": "file", + "name": "s3_msg.c", + "base_name": "s3_msg", + "extension": ".c", + "size": 3917, + "date": "2017-02-16", + "sha1": "6d6033e09926336cd29df24ad6c29d26f86a1a6f", + "md5": "c5d6ded136f2cd09eac92aaa2196bb89", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_asn1.c", + "type": "file", + "name": "ssl_asn1.c", + "base_name": "ssl_asn1", + "extension": ".c", + "size": 11160, + "date": "2017-02-16", + "sha1": "314092dc5228514f50493d3de96b24f38bd18a6f", + "md5": "e59838e8b44d3ad6afe24be9fc21cb43", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_cert.c", + "type": "file", + "name": "ssl_cert.c", + "base_name": "ssl_cert", + "extension": ".c", + "size": 31267, + "date": "2017-02-16", + "sha1": "27065c9d74bbda1268e7ca640c7627dc2f44b09f", + "md5": "b48958bcd8572075e89f949008168495", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_ciph.c", + "type": "file", + "name": "ssl_ciph.c", + "base_name": "ssl_ciph", + "extension": ".c", + "size": 61853, + "date": "2017-02-16", + "sha1": "4f996a2aea2325b2a98961f97a7b262ae7b4b5ee", + "md5": "fd1fcb2b01791421975a6fd006863ec6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_conf.c", + "type": "file", + "name": "ssl_conf.c", + "base_name": "ssl_conf", + "extension": ".c", + "size": 26893, + "date": "2017-02-16", + "sha1": "c1a716d8c8a88dd5ce944e382ae47ac9840161c2", + "md5": "f0c489071b3b7ab11fff043125b353e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_err.c", + "type": "file", + "name": "ssl_err.c", + "base_name": "ssl_err", + "extension": ".c", + "size": 36679, + "date": "2017-02-16", + "sha1": "63400e9e3becde0ffd13891a58574341d73af0fb", + "md5": "e046b16579b4a3eb70844c5be2c832e1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_init.c", + "type": "file", + "name": "ssl_init.c", + "base_name": "ssl_init", + "extension": ".c", + "size": 6302, + "date": "2017-02-16", + "sha1": "2af2928e95a1c38b2e3c2e01c1e8ec6cc0b6df36", + "md5": "9a6f16ab03891b4ef940b3f48709deda", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_lib.c", + "type": "file", + "name": "ssl_lib.c", + "base_name": "ssl_lib", + "extension": ".c", + "size": 121001, + "date": "2017-02-16", + "sha1": "34a93f977b4a408c31d860c55389a0752ac61f38", + "md5": "995d2af06d9066a788d33935ed54ef3c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_locl.h", + "type": "file", + "name": "ssl_locl.h", + "base_name": "ssl_locl", + "extension": ".h", + "size": 83280, + "date": "2017-02-16", + "sha1": "895ad651cc3b15b1bfa584e6be6a93ed206da86a", + "md5": "ae9a34643ab1bcc8e4eb6e3aab9172ea", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_mcnf.c", + "type": "file", + "name": "ssl_mcnf.c", + "base_name": "ssl_mcnf", + "extension": ".c", + "size": 5990, + "date": "2017-02-16", + "sha1": "1b1f33113678ed96c5911d3fde258dddde6896f6", + "md5": "1007870cc09c13818ea2c82592ae29a2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_rsa.c", + "type": "file", + "name": "ssl_rsa.c", + "base_name": "ssl_rsa", + "extension": ".c", + "size": 27812, + "date": "2017-02-16", + "sha1": "90a58ca0c22b1a05438f0dd1ce5255148a443882", + "md5": "8fb662159ee3efc7e3554d917382cd24", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_sess.c", + "type": "file", + "name": "ssl_sess.c", + "base_name": "ssl_sess", + "extension": ".c", + "size": 36556, + "date": "2017-02-16", + "sha1": "449e29b4d18a02ef48e07f96e667367be225c84f", + "md5": "0f007ee44cac9ce0076f9baf7b97664f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_stat.c", + "type": "file", + "name": "ssl_stat.c", + "base_name": "ssl_stat", + "extension": ".c", + "size": 11252, + "date": "2017-02-16", + "sha1": "3f6ebfa41d63f895a32b0f3d182743c1094936ad", + "md5": "6f5457b5897dbd9b142b5390fffe50b0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_txt.c", + "type": "file", + "name": "ssl_txt.c", + "base_name": "ssl_txt", + "extension": ".c", + "size": 6845, + "date": "2017-02-16", + "sha1": "e8fd5647af99865b70a3dc28133a887536ee06bf", + "md5": "ef33ed347c841110d3894153520ae739", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/ssl_utst.c", + "type": "file", + "name": "ssl_utst.c", + "base_name": "ssl_utst", + "extension": ".c", + "size": 721, + "date": "2017-02-16", + "sha1": "f5278f987f0ec95959e4e244c823392f3d5f238b", + "md5": "d4f7ff324476c79df4416b7e7aa59ef4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/t1_enc.c", + "type": "file", + "name": "t1_enc.c", + "base_name": "t1_enc", + "extension": ".c", + "size": 23804, + "date": "2017-02-16", + "sha1": "15c553c233c791fcf454f3d5bf1d38a5b8f72b12", + "md5": "07f2c1eb63de716b158b7b9f280c401f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/t1_ext.c", + "type": "file", + "name": "t1_ext.c", + "base_name": "t1_ext", + "extension": ".c", + "size": 8685, + "date": "2017-02-16", + "sha1": "f9933051b0897c09fdf1e47472fc794af066ee89", + "md5": "af13c91c7136bb07a1fa91641cdbefe1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/t1_lib.c", + "type": "file", + "name": "t1_lib.c", + "base_name": "t1_lib", + "extension": ".c", + "size": 136462, + "date": "2017-02-16", + "sha1": "5f0c3aa6610e5e5267c325f2e554e8bcce716213", + "md5": "54acfa79132f71d17226d849ed02b610", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/t1_reneg.c", + "type": "file", + "name": "t1_reneg.c", + "base_name": "t1_reneg", + "extension": ".c", + "size": 5175, + "date": "2017-02-16", + "sha1": "e98e79bd2454afb31a516f641672366d28ac4fdd", + "md5": "d6a6bf50ce4e85fb2639ffdbfc9c6b6b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/t1_trce.c", + "type": "file", + "name": "t1_trce.c", + "base_name": "t1_trce", + "extension": ".c", + "size": 47696, + "date": "2017-02-16", + "sha1": "862584a48265a5099c606388eadd2db0b01b9958", + "md5": "f0162ccd1a27db52d2b7fe852125990a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/tls_srp.c", + "type": "file", + "name": "tls_srp.c", + "base_name": "tls_srp", + "extension": ".c", + "size": 13455, + "date": "2017-02-16", + "sha1": "421050ee8e2c7adb273d7bc4e4d8b60036b35dd8", + "md5": "af301a4a346776a03c3a463fa491a31f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record", + "type": "directory", + "name": "record", + "base_name": "record", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 173482, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record/dtls1_bitmap.c", + "type": "file", + "name": "dtls1_bitmap.c", + "base_name": "dtls1_bitmap", + "extension": ".c", + "size": 2166, + "date": "2017-02-16", + "sha1": "888af6d5286fe3eb9b2227dafc93cb5989b6c86e", + "md5": "12cec09b6d69e1bc6be40f6b745c0ca8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 3544, + "date": "2017-02-16", + "sha1": "fb651e2fe16381f7cb9f3d9aa810ad52410d032e", + "md5": "57cc9d7282eaf79507ceb0be416dfed4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record/rec_layer_d1.c", + "type": "file", + "name": "rec_layer_d1.c", + "base_name": "rec_layer_d1", + "extension": ".c", + "size": 40298, + "date": "2017-02-16", + "sha1": "f60aa9a501cf2f20c2ec40bf0a02a1b4f1908c0a", + "md5": "ddeeacd8e6e7354b69bab356e3aec904", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record/rec_layer_s3.c", + "type": "file", + "name": "rec_layer_s3.c", + "base_name": "rec_layer_s3", + "extension": ".c", + "size": 51195, + "date": "2017-02-16", + "sha1": "4dd1acbf72d15315d26a9b0a105faddb773ce866", + "md5": "d3b3f088942e14f5fab52a49e35c1d0a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record/record.h", + "type": "file", + "name": "record.h", + "base_name": "record", + "extension": ".h", + "size": 9857, + "date": "2017-02-16", + "sha1": "a4a40ab120f984f5ab44616ffee803c2333eada6", + "md5": "d9857ffb6b148e7c20ab62f54b618811", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record/record_locl.h", + "type": "file", + "name": "record_locl.h", + "base_name": "record_locl", + "extension": ".h", + "size": 6235, + "date": "2017-02-16", + "sha1": "69bd18882a443ba6fc9a7714310e96e6d13b9364", + "md5": "d0732bb2a5a9a1c0932073cf2e8eb5ce", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record/ssl3_buffer.c", + "type": "file", + "name": "ssl3_buffer.c", + "base_name": "ssl3_buffer", + "extension": ".c", + "size": 3959, + "date": "2017-02-16", + "sha1": "042366a0e04ba869a8bca93f205f608a9e9bd7fd", + "md5": "6e84b6eecf681e01a706e78a840cd26d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/record/ssl3_record.c", + "type": "file", + "name": "ssl3_record.c", + "base_name": "ssl3_record", + "extension": ".c", + "size": 56228, + "date": "2017-02-16", + "sha1": "9ba6691f1998cfa3139a0fc2d8971c4b727b9a81", + "md5": "08a178ff60b9fccd2e0e1e5f8cab9b0d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem", + "type": "directory", + "name": "statem", + "base_name": "statem", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 312101, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 3358, + "date": "2017-02-16", + "sha1": "cc82c7751b46166d2048626d06dfd75ac433936f", + "md5": "c9e989aecc3fa5a691976aed18fdd481", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem/statem.c", + "type": "file", + "name": "statem.c", + "base_name": "statem", + "extension": ".c", + "size": 26200, + "date": "2017-02-16", + "sha1": "863b3c21d3f900e507dcb6928018bc16c851f913", + "md5": "ed8c5cecf1ba5329ee88c8b4895c34ae", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem/statem.h", + "type": "file", + "name": "statem.h", + "base_name": "statem", + "extension": ".h", + "size": 4472, + "date": "2017-02-16", + "sha1": "01ea57259658840a95d29c32d72664bda48e5a2b", + "md5": "cd70ce526ab828c552cb595a75ad801d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem/statem_clnt.c", + "type": "file", + "name": "statem_clnt.c", + "base_name": "statem_clnt", + "extension": ".c", + "size": 92592, + "date": "2017-02-16", + "sha1": "f35916372482c4f451cc6c7e6f6d9318f1d60444", + "md5": "39e20d7195e292d0f078e1f254be6ecc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 24, + "end_line": 24 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 26, + "end_line": 28 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem/statem_dtls.c", + "type": "file", + "name": "statem_dtls.c", + "base_name": "statem_dtls", + "extension": ".c", + "size": 38562, + "date": "2017-02-16", + "sha1": "9ab2ac8b0851526436e3357ea62e81fa3170e64c", + "md5": "9566aaf34b1285e3f5af823b730af2ba", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem/statem_lib.c", + "type": "file", + "name": "statem_lib.c", + "base_name": "statem_lib", + "extension": ".c", + "size": 33920, + "date": "2017-02-16", + "sha1": "8dabe7e029d66963d253244bbb8643d4eab475d9", + "md5": "92158e4354658f3fecc95d8763645d8c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem/statem_locl.h", + "type": "file", + "name": "statem_locl.h", + "base_name": "statem_locl", + "extension": ".h", + "size": 5816, + "date": "2017-02-16", + "sha1": "85fab35084e1cd8d69efd5b38012d97a796de0c0", + "md5": "8de1babb95621593868ab20ffabac5dd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/ssl/statem/statem_srvr.c", + "type": "file", + "name": "statem_srvr.c", + "base_name": "statem_srvr", + "extension": ".c", + "size": 107181, + "date": "2017-02-16", + "sha1": "d24e70064f7e9d22c2e4996f5bb317c8b0c7aa08", + "md5": "16e647fa10d777d47f9c934701aa6c3c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 24, + "end_line": 24 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 26, + "end_line": 28 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test", + "type": "directory", + "name": "test", + "base_name": "test", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 507, + "dirs_count": 10, + "size_count": 2700715, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/aborttest.c", + "type": "file", + "name": "aborttest.c", + "base_name": "aborttest", + "extension": ".c", + "size": 464, + "date": "2017-02-16", + "sha1": "b62bae98a90445d2e43003b3988b42e8a8a10e9a", + "md5": "32e42d9911530e546bc269132bd37663", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/afalgtest.c", + "type": "file", + "name": "afalgtest.c", + "base_name": "afalgtest", + "extension": ".c", + "size": 3691, + "date": "2017-02-16", + "sha1": "e22f5fbd6f0a64fa0b2f5c834a0a01f210b29e52", + "md5": "50e64cc34b37bf94add5d3ad12506d34", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/asynciotest.c", + "type": "file", + "name": "asynciotest.c", + "base_name": "asynciotest", + "extension": ".c", + "size": 10973, + "date": "2017-02-16", + "sha1": "cfafe4d6f78be0266da4a0ded75147a309573d3b", + "md5": "fef926f6d017b7c1b127bc5904c353b5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/asynctest.c", + "type": "file", + "name": "asynctest.c", + "base_name": "asynctest", + "extension": ".c", + "size": 8963, + "date": "2017-02-16", + "sha1": "6a7d48ab59495cdfbebdd13c3ada55009c72ee1c", + "md5": "6749e26e80c72c3399785e41f1dfdb6d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/bad_dtls_test.c", + "type": "file", + "name": "bad_dtls_test.c", + "base_name": "bad_dtls_test", + "extension": ".c", + "size": 20800, + "date": "2017-02-16", + "sha1": "7b30c32e55996d1498b973e6ac06970247b422eb", + "md5": "cf981f5ce71b6f253ce4386b7e53c2f2", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/bftest.c", + "type": "file", + "name": "bftest.c", + "base_name": "bftest", + "extension": ".c", + "size": 17446, + "date": "2017-02-16", + "sha1": "89fe9b6b5c425a67165e5c4662e3c30b3e904d5b", + "md5": "ab27c95cb392a5f77430ba5199e2c17a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/bio_enc_test.c", + "type": "file", + "name": "bio_enc_test.c", + "base_name": "bio_enc_test", + "extension": ".c", + "size": 4230, + "date": "2017-02-16", + "sha1": "e39dd177f88c122c1bfed079f12fc741018e9bb3", + "md5": "efbc1fa3561bc7304719ff626fe59a4e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/bioprinttest.c", + "type": "file", + "name": "bioprinttest.c", + "base_name": "bioprinttest", + "extension": ".c", + "size": 9726, + "date": "2017-02-16", + "sha1": "7966431f7592fcd59a3850b89bfba9ec8a22eefb", + "md5": "037a4f8ddbb43a413eb2b858e902dd17", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/bntest.c", + "type": "file", + "name": "bntest.c", + "base_name": "bntest", + "extension": ".c", + "size": 52207, + "date": "2017-02-16", + "sha1": "33a6f001a665aeb005c3fc4c6839be25690e042f", + "md5": "1e755d2fdd2a570a11ed478c47c3e3f3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 8910, + "date": "2017-02-16", + "sha1": "9fb241aa39f94d6dc1610dba819553a9aaead745", + "md5": "b7527642a6df9351b1ce7735212d56c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/CAss.cnf", + "type": "file", + "name": "CAss.cnf", + "base_name": "CAss", + "extension": ".cnf", + "size": 2243, + "date": "2017-02-16", + "sha1": "db88bc928305afb566adefef5015363f43ec722d", + "md5": "5c0a16264b3e9bd888a4c55ecd46540d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/CAssdh.cnf", + "type": "file", + "name": "CAssdh.cnf", + "base_name": "CAssdh", + "extension": ".cnf", + "size": 728, + "date": "2017-02-16", + "sha1": "7478674d2fcbc105013fd891641d24629d590603", + "md5": "8e5b0b18bf6e7b8fc3c36fa10f05af97", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/CAssdsa.cnf", + "type": "file", + "name": "CAssdsa.cnf", + "base_name": "CAssdsa", + "extension": ".cnf", + "size": 729, + "date": "2017-02-16", + "sha1": "cb76c023a226281c5f3524c819261fbac34d2aa4", + "md5": "1437aab236d980dd66457c6024038d47", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/CAssrsa.cnf", + "type": "file", + "name": "CAssrsa.cnf", + "base_name": "CAssrsa", + "extension": ".cnf", + "size": 708, + "date": "2017-02-16", + "sha1": "32edc4bdd420e2aedf901789025250206e4e1386", + "md5": "de33b2060549b17a723a31967dd26a71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/casttest.c", + "type": "file", + "name": "casttest.c", + "base_name": "casttest", + "extension": ".c", + "size": 4621, + "date": "2017-02-16", + "sha1": "a9a62338f8ba0ebd794f86b53dd5b5aad1e25aec", + "md5": "e431d3bfeaf3625f7f135e8568f14088", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/CAtsa.cnf", + "type": "file", + "name": "CAtsa.cnf", + "base_name": "CAtsa", + "extension": ".cnf", + "size": 4959, + "date": "2017-02-16", + "sha1": "3af58dc2001685d70a6e86947e12950e7ea8c54b", + "md5": "b5212fe72a10cda6e6f89cc5fea21b01", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/cipherlist_test.c", + "type": "file", + "name": "cipherlist_test.c", + "base_name": "cipherlist_test", + "extension": ".c", + "size": 5590, + "date": "2017-02-16", + "sha1": "2c0179a69deafa78ac48aabf3fd753cb84341002", + "md5": "45ce78e91efb761fd7dcd71d95ff3ad3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/clienthellotest.c", + "type": "file", + "name": "clienthellotest.c", + "base_name": "clienthellotest", + "extension": ".c", + "size": 3992, + "date": "2017-02-16", + "sha1": "2bc3e6f5b919c627f46a47944c1225dce2d46046", + "md5": "95e350931c1091423eefa3c744c3d32a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/cms-examples.pl", + "type": "file", + "name": "cms-examples.pl", + "base_name": "cms-examples", + "extension": ".pl", + "size": 8896, + "date": "2017-02-16", + "sha1": "58445783211e594f87fc8e7576181735e7fee09b", + "md5": "4cfddde1ef3e25e22087e81ef32fa792", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/constant_time_test.c", + "type": "file", + "name": "constant_time_test.c", + "base_name": "constant_time_test", + "extension": ".c", + "size": 9851, + "date": "2017-02-16", + "sha1": "b61542506ffe260026b8f9b09f20b1786980bb7b", + "md5": "548805530d879bb00b0656c5b465aa96", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/crltest.c", + "type": "file", + "name": "crltest.c", + "base_name": "crltest", + "extension": ".c", + "size": 14945, + "date": "2017-02-16", + "sha1": "0fc3c5f590a3fc954d69fe0c90dd16b990e6dee0", + "md5": "6f3e99140e44eca2c6112b92e72589de", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ct_test.c", + "type": "file", + "name": "ct_test.c", + "base_name": "ct_test", + "extension": ".c", + "size": 18168, + "date": "2017-02-16", + "sha1": "99dc4c1b16e3d50040e3ba60928745bfdfc24a70", + "md5": "f5b3833db828b5dd09a10c565107ffce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i_test.c", + "type": "file", + "name": "d2i_test.c", + "base_name": "d2i_test", + "extension": ".c", + "size": 5353, + "date": "2017-02-16", + "sha1": "7629218570bd33f3901fdbe274b7cb2b2f8b81f3", + "md5": "458bc787aab366e36a50878208155911", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/danetest.c", + "type": "file", + "name": "danetest.c", + "base_name": "danetest", + "extension": ".c", + "size": 13056, + "date": "2017-02-16", + "sha1": "2f263c13c9ea3830eb254a0d144d769506701a2d", + "md5": "322fc0e2d5d430cc0390ab16cb3c4f2a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/danetest.in", + "type": "file", + "name": "danetest.in", + "base_name": "danetest", + "extension": ".in", + "size": 89688, + "date": "2017-02-16", + "sha1": "0d1b27807114cb7e4f4895a4a37914948feb4cc6", + "md5": "a44cedb6378d0b852d53412b89db236d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/danetest.pem", + "type": "file", + "name": "danetest.pem", + "base_name": "danetest", + "extension": ".pem", + "size": 652, + "date": "2017-02-16", + "sha1": "e6eda46af336576945e89e5b8f732d4271b214be", + "md5": "9c09e39960d1985c9e354c58b759f013", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/destest.c", + "type": "file", + "name": "destest.c", + "base_name": "destest", + "extension": ".c", + "size": 29989, + "date": "2017-02-16", + "sha1": "24c1f219c651bf0aabf01e6c75a49f4b650ab73f", + "md5": "ad96bd48f5c3c68f9e197ddcfd0fe38c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/dhtest.c", + "type": "file", + "name": "dhtest.c", + "base_name": "dhtest", + "extension": ".c", + "size": 24479, + "date": "2017-02-16", + "sha1": "d80848717c90ff23f346db8aa8b6837e1a7af426", + "md5": "258db3df72c908bbca0b32b520fbe51e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/dsatest.c", + "type": "file", + "name": "dsatest.c", + "base_name": "dsatest", + "extension": ".c", + "size": 5282, + "date": "2017-02-16", + "sha1": "96a83ea56a0f47d37864716075a2c744a3650100", + "md5": "2661f69f4d74603a966c5fd6aca57c9a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/dtlstest.c", + "type": "file", + "name": "dtlstest.c", + "base_name": "dtlstest", + "extension": ".c", + "size": 3942, + "date": "2017-02-16", + "sha1": "d9d24d31f258bb848d11c7b0ff18036eeffc4846", + "md5": "6f04de55ec977aa4fc9097ff0b5616bc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/dtlsv1listentest.c", + "type": "file", + "name": "dtlsv1listentest.c", + "base_name": "dtlsv1listentest", + "extension": ".c", + "size": 13871, + "date": "2017-02-16", + "sha1": "29eaa73d4e1cdefefae43cbb3792d0b6a74000e9", + "md5": "9fe9eb9b2fe1bcbadd3789e89b39de69", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ecdhtest.c", + "type": "file", + "name": "ecdhtest.c", + "base_name": "ecdhtest", + "extension": ".c", + "size": 18074, + "date": "2017-02-16", + "sha1": "93b8025e75b06d2729ed80aa6693d95a8ef17222", + "md5": "8de3884a15edf2f0bb1982ef3fc4fbd4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ecdhtest_cavs.h", + "type": "file", + "name": "ecdhtest_cavs.h", + "base_name": "ecdhtest_cavs", + "extension": ".h", + "size": 228466, + "date": "2017-02-16", + "sha1": "e614c5f387d6b7bd9f87baf12c8b6e1b94017432", + "md5": "755219f5e61869058b176cd0c3295a9a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ecdsatest.c", + "type": "file", + "name": "ecdsatest.c", + "base_name": "ecdsatest", + "extension": ".c", + "size": 16119, + "date": "2017-02-16", + "sha1": "a6cce7a1975f3c115d02c1296b0d9a528df76312", + "md5": "f26cc5ca31acf7ad024a9852ce335d3d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ectest.c", + "type": "file", + "name": "ectest.c", + "base_name": "ectest", + "extension": ".c", + "size": 57229, + "date": "2017-02-16", + "sha1": "363a6ae923a383da9d2c71fadcda8df101b97fe9", + "md5": "c3a7ce5507d12985dfbce480a2bb6ac4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/enginetest.c", + "type": "file", + "name": "enginetest.c", + "base_name": "enginetest", + "extension": ".c", + "size": 5998, + "date": "2017-02-16", + "sha1": "83659c86c04bfd221c73d504b76fd7cef56e273a", + "md5": "e9dedeeb9264cadf5b55521586833a14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/evp_extra_test.c", + "type": "file", + "name": "evp_extra_test.c", + "base_name": "evp_extra_test", + "extension": ".c", + "size": 16667, + "date": "2017-02-16", + "sha1": "492129a0f212434eb2a0017c8a3c595bf7347a93", + "md5": "d9c57d4c404f1516c04315cb24bbb9b2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/evp_test.c", + "type": "file", + "name": "evp_test.c", + "base_name": "evp_test", + "extension": ".c", + "size": 56344, + "date": "2017-02-16", + "sha1": "4a7b8837171b40d248e92a3225bbdfa49b045472", + "md5": "9849b593f00227306bb68d695017aba7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/evptests.txt", + "type": "file", + "name": "evptests.txt", + "base_name": "evptests", + "extension": ".txt", + "size": 221229, + "date": "2017-02-16", + "sha1": "4ee169da2eeab1b71af03bd3bb306632ce0c05f7", + "md5": "30837152ae5e765764bc604b6c9719cf", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/exdatatest.c", + "type": "file", + "name": "exdatatest.c", + "base_name": "exdatatest", + "extension": ".c", + "size": 2309, + "date": "2017-02-16", + "sha1": "1e42702f4c29d981bdd4da86e82eeb6e9869354a", + "md5": "a63434ba5a1209fe3ec052b00c2c50a7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/exptest.c", + "type": "file", + "name": "exptest.c", + "base_name": "exptest", + "extension": ".c", + "size": 6900, + "date": "2017-02-16", + "sha1": "ea0cb1a712ee15089abe70a3d93912a65ae63937", + "md5": "76852001dedb72f31da6502e4486620a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/generate_buildtest.pl", + "type": "file", + "name": "generate_buildtest.pl", + "base_name": "generate_buildtest", + "extension": ".pl", + "size": 784, + "date": "2017-02-16", + "sha1": "12f3e2efaeaf7fe8cbb11820d6d2dac891bdf8ed", + "md5": "6530addb59cc1654698a95f961d7b29e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/generate_ssl_tests.pl", + "type": "file", + "name": "generate_ssl_tests.pl", + "base_name": "generate_ssl_tests", + "extension": ".pl", + "size": 4447, + "date": "2017-02-16", + "sha1": "9e8e1f6e9e9f19a81954b33acb8db0eddf9ab920", + "md5": "9bf74dfe66b57759686fe37b8ff02a3b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/gmdifftest.c", + "type": "file", + "name": "gmdifftest.c", + "base_name": "gmdifftest", + "extension": ".c", + "size": 2433, + "date": "2017-02-16", + "sha1": "1dacb3f6359dac48efaa96878eff552f621fdcee", + "md5": "fd2a074c1194d30037b8e68c992484f8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/handshake_helper.c", + "type": "file", + "name": "handshake_helper.c", + "base_name": "handshake_helper", + "extension": ".c", + "size": 38045, + "date": "2017-02-16", + "sha1": "cdc660e38ee23c6bdf2aeab4870606873d80bc58", + "md5": "b219c5f4eb4f6238c6869b89621890be", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/handshake_helper.h", + "type": "file", + "name": "handshake_helper.h", + "base_name": "handshake_helper", + "extension": ".h", + "size": 2232, + "date": "2017-02-16", + "sha1": "9a1c350ed6b79058138463d128248fc8d05e2368", + "md5": "42fb3b1740c46e89f51597eee15f52a8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/heartbeat_test.c", + "type": "file", + "name": "heartbeat_test.c", + "base_name": "heartbeat_test", + "extension": ".c", + "size": 11784, + "date": "2017-02-16", + "sha1": "1a9c727b60a0075fc8fc1728bc9f57d9a666e05a", + "md5": "1ce6b22be1dbc40dd7d072d0651bc0c1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mike Bland (mbland@acm.org, http://mike-bland.com/)" + ], + "start_line": 15, + "end_line": 18 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/hmactest.c", + "type": "file", + "name": "hmactest.c", + "base_name": "hmactest", + "extension": ".c", + "size": 9530, + "date": "2017-02-16", + "sha1": "304be6e160b95d45a72b8c23833a61841e34e83c", + "md5": "e5cdd335fb505476865d381355f64a36", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ideatest.c", + "type": "file", + "name": "ideatest.c", + "base_name": "ideatest", + "extension": ".c", + "size": 5226, + "date": "2017-02-16", + "sha1": "a062e769663150b3ba6c1c038b70fedbb63a6938", + "md5": "1efef7edc77e04937b3a7e6e3b4eb7e5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/igetest.c", + "type": "file", + "name": "igetest.c", + "base_name": "igetest", + "extension": ".c", + "size": 16483, + "date": "2017-02-16", + "sha1": "9af902636d8a18998ebb996ccaa3663b41dfd056", + "md5": "d6bc15b0444adbb31ad5034de393be81", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/md2test.c", + "type": "file", + "name": "md2test.c", + "base_name": "md2test", + "extension": ".c", + "size": 2154, + "date": "2017-02-16", + "sha1": "6fced0ec6fbd1ae0b0d43b688d9abf843fc35713", + "md5": "cccdc3560410e9cac18ad1b8fc625b65", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/md4test.c", + "type": "file", + "name": "md4test.c", + "base_name": "md4test", + "extension": ".c", + "size": 2071, + "date": "2017-02-16", + "sha1": "ce29cc0974d5a18e193a2080046a97129c836b94", + "md5": "67238553826f798593c3791c1197eb62", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/md5test.c", + "type": "file", + "name": "md5test.c", + "base_name": "md5test", + "extension": ".c", + "size": 2072, + "date": "2017-02-16", + "sha1": "6970edf44ad99c4211c7bb66704500280c04547d", + "md5": "a42faeea421972ba87bbcd8fa3ccba83", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/mdc2test.c", + "type": "file", + "name": "mdc2test.c", + "base_name": "mdc2test", + "extension": ".c", + "size": 2575, + "date": "2017-02-16", + "sha1": "c9af6836828cb407ce8d8c1bf9bc1442a9493593", + "md5": "d9fe14303c306bbcb4855244c2d0f988", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/memleaktest.c", + "type": "file", + "name": "memleaktest.c", + "base_name": "memleaktest", + "extension": ".c", + "size": 1142, + "date": "2017-02-16", + "sha1": "0ba7405194aa91e014d370d1821a9468876152a3", + "md5": "a46fe4d681703a8029da581d8856990d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/methtest.c", + "type": "file", + "name": "methtest.c", + "base_name": "methtest", + "extension": ".c", + "size": 1642, + "date": "2017-02-16", + "sha1": "f7be3f7fe0a692b1d17095bf92668446f02120a5", + "md5": "fd4aa08d299af988e906e6ff148004e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/P1ss.cnf", + "type": "file", + "name": "P1ss.cnf", + "base_name": "P1ss", + "extension": ".cnf", + "size": 1000, + "date": "2017-02-16", + "sha1": "59a8acfc2d50d5d2bcd638f2e82e168d1c3d419b", + "md5": "d30712b36fc0c19d417c8b01d7eca8cb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/P2ss.cnf", + "type": "file", + "name": "P2ss.cnf", + "base_name": "P2ss", + "extension": ".cnf", + "size": 1102, + "date": "2017-02-16", + "sha1": "ec90d9f753ca4d55f66f65839a9860c94497db24", + "md5": "753be1fbc2a642f28b5f1b11df96dc22", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/p5_crpt2_test.c", + "type": "file", + "name": "p5_crpt2_test.c", + "base_name": "p5_crpt2_test", + "extension": ".c", + "size": 4830, + "date": "2017-02-16", + "sha1": "6839d51c046494aafa24c5a083aa001dceafe4e4", + "md5": "8f49db6f9fb3a2cf9eae4bd108fb7ee0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/packettest.c", + "type": "file", + "name": "packettest.c", + "base_name": "packettest", + "extension": ".c", + "size": 15272, + "date": "2017-02-16", + "sha1": "ee0bfaec47ca2612c9d13b9f68f08446559a65d9", + "md5": "b521641299613f90f457ef78a4ef8499", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/pbelutest.c", + "type": "file", + "name": "pbelutest.c", + "base_name": "pbelutest", + "extension": ".c", + "size": 1346, + "date": "2017-02-16", + "sha1": "28c17124606136e078a9a7829d30df5a409a01cf", + "md5": "cd728e6e267acc3407c7cb7c87d3c899", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/pkcs7-1.pem", + "type": "file", + "name": "pkcs7-1.pem", + "base_name": "pkcs7-1", + "extension": ".pem", + "size": 851, + "date": "2017-02-16", + "sha1": "1f4eb62e8fe83b89bfbbb0faa51f146a726e0920", + "md5": "5636a9df1d9fae3480e231045f493f3b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/pkcs7.pem", + "type": "file", + "name": "pkcs7.pem", + "base_name": "pkcs7", + "extension": ".pem", + "size": 3744, + "date": "2017-02-16", + "sha1": "ebe39e1f0469db03364890861114731343b3309d", + "md5": "164c1b63301b452b9fb4211c430eb592", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/pkits-test.pl", + "type": "file", + "name": "pkits-test.pl", + "base_name": "pkits-test", + "extension": ".pl", + "size": 31914, + "date": "2017-02-16", + "sha1": "8622a1a63a5e00cad90fed31678b1bb8ec3fbdb3", + "md5": "1f28617a6de04033b751592ef53d62bd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/r160test.c", + "type": "file", + "name": "r160test.c", + "base_name": "r160test", + "extension": ".c", + "size": 334, + "date": "2017-02-16", + "sha1": "cc871307e010e415b71fcfaa240bc613726aba96", + "md5": "02b4566ff9853ba1663fd7c5818a8d66", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/randtest.c", + "type": "file", + "name": "randtest.c", + "base_name": "randtest", + "extension": ".c", + "size": 3767, + "date": "2017-02-16", + "sha1": "b32e37b0160aadaf3ccb8a3b81b997f17f61aedb", + "md5": "b12db049cc54912e82c13ed3abba701c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/rc2test.c", + "type": "file", + "name": "rc2test.c", + "base_name": "rc2test", + "extension": ".c", + "size": 2933, + "date": "2017-02-16", + "sha1": "26b0f236658cabb6d3ff73287bfa52d5ebc23d01", + "md5": "a33848c594de8b0ffe967e7e7af4a44f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/rc4test.c", + "type": "file", + "name": "rc4test.c", + "base_name": "rc4test", + "extension": ".c", + "size": 5778, + "date": "2017-02-16", + "sha1": "867ce0bcdd7621d5115b12af319153bf18981c1f", + "md5": "d1239ca76b1f850003b754524e9fb093", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/rc5test.c", + "type": "file", + "name": "rc5test.c", + "base_name": "rc5test", + "extension": ".c", + "size": 10439, + "date": "2017-02-16", + "sha1": "c5b0604940b2ef598e670786368b1c56bf2b1d36", + "md5": "0e0551e485bef904c77a081497df4c00", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 2811, + "date": "2017-02-16", + "sha1": "e7f2562bbe58dcfa066eb635309f814528adf139", + "md5": "95694da004a36c0f507347d484f2209d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/README.ssltest.md", + "type": "file", + "name": "README.ssltest.md", + "base_name": "README.ssltest", + "extension": ".md", + "size": 9182, + "date": "2017-02-16", + "sha1": "a5b5739824a478024e66cb404eda4ae1ff77e8ab", + "md5": "3c0e335465e0a5143e5a4bf2ff3f4500", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/rmdtest.c", + "type": "file", + "name": "rmdtest.c", + "base_name": "rmdtest", + "extension": ".c", + "size": 2443, + "date": "2017-02-16", + "sha1": "1c17a2060a336b605bc28dfb185938fc6320e5ea", + "md5": "74a0192acf3f6b7750869e6200ffe33b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/rsa_test.c", + "type": "file", + "name": "rsa_test.c", + "base_name": "rsa_test", + "extension": ".c", + "size": 12975, + "date": "2017-02-16", + "sha1": "03b11069bbe0830de386e2266c13db5a79873cb3", + "md5": "126b1b0efca4bd0f5c7405fda59fe578", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/run_tests.pl", + "type": "file", + "name": "run_tests.pl", + "base_name": "run_tests", + "extension": ".pl", + "size": 2024, + "date": "2017-02-16", + "sha1": "058b7addd2b458f69ab8f0ffc036cbcabd77ff4a", + "md5": "39db2294aa84e176a69af30cc56384f3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/sanitytest.c", + "type": "file", + "name": "sanitytest.c", + "base_name": "sanitytest", + "extension": ".c", + "size": 2082, + "date": "2017-02-16", + "sha1": "ef1c6f27698487f6b90df4bb33dc0894b4ba249f", + "md5": "ffd326fdb0e0a5fdd8357de2c9dfe327", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/secmemtest.c", + "type": "file", + "name": "secmemtest.c", + "base_name": "secmemtest", + "extension": ".c", + "size": 2774, + "date": "2017-02-16", + "sha1": "2b6d0e25d7e00fb962ef52e25fc95fb3365cab64", + "md5": "4905926dc6345d0bd79c5175594b803c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/serverinfo.pem", + "type": "file", + "name": "serverinfo.pem", + "base_name": "serverinfo", + "extension": ".pem", + "size": 740, + "date": "2017-02-16", + "sha1": "6a1f596630b47cc0e58d79ea8d3c1978574e9c4f", + "md5": "126dd7db1bc368bea9b3d4eb54fff6a7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/sha1test.c", + "type": "file", + "name": "sha1test.c", + "base_name": "sha1test", + "extension": ".c", + "size": 2775, + "date": "2017-02-16", + "sha1": "967a3409cd5a8a6b6741ae01ad3af0dd8e9c3047", + "md5": "5cd35326dff8a8934551172dea8cbf5c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/sha256t.c", + "type": "file", + "name": "sha256t.c", + "base_name": "sha256t", + "extension": ".c", + "size": 5768, + "date": "2017-02-16", + "sha1": "7e0651efb0796a7067e6a84bdd1b9721322a44af", + "md5": "3cc168cba9cc9db573bd3d87cfa5b601", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/sha512t.c", + "type": "file", + "name": "sha512t.c", + "base_name": "sha512t", + "extension": ".c", + "size": 6990, + "date": "2017-02-16", + "sha1": "750b268b0840b4a97e926fd1274346f16905dbe1", + "md5": "abaf1804e59ff10b122b30c887c436f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/shibboleth.pfx", + "type": "file", + "name": "shibboleth.pfx", + "base_name": "shibboleth", + "extension": ".pfx", + "size": 2519, + "date": "2017-02-16", + "sha1": "1aa3da3f3fbe783efeedbf23ff0d6cb70ec350ad", + "md5": "66b1d3c11fbf8020c7bd863aee9d34b2", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/shlibloadtest.c", + "type": "file", + "name": "shlibloadtest.c", + "base_name": "shlibloadtest", + "extension": ".c", + "size": 5985, + "date": "2017-02-16", + "sha1": "f8074edfdd747fc855d748ff2b04d7e942bc531d", + "md5": "0ea24d9ff98e34d46d383b8f128cddcc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smcont.txt", + "type": "file", + "name": "smcont.txt", + "base_name": "smcont", + "extension": ".txt", + "size": 83, + "date": "2017-02-16", + "sha1": "50aa7be7747fbc7c5d2872b21ea87b7fd7265fac", + "md5": "7a2b5241b1769e94f13687fa40e6c985", + "mime_type": "text/plain", + "file_type": "ASCII text, with no line terminators", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/srptest.c", + "type": "file", + "name": "srptest.c", + "base_name": "srptest", + "extension": ".c", + "size": 8749, + "date": "2017-02-16", + "sha1": "c38510657ae026d67b1de29e4046b2a5b5c4f4fa", + "md5": "6e35b7a7d37c6dbb0e6bf7ce743efb14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl_test.c", + "type": "file", + "name": "ssl_test.c", + "base_name": "ssl_test", + "extension": ".c", + "size": 12321, + "date": "2017-02-16", + "sha1": "a7486c5df6b74d3b24f11e261ad02d67e7de7e08", + "md5": "01df948a36aacc36e59a5574fcea2748", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl_test.tmpl", + "type": "file", + "name": "ssl_test.tmpl", + "base_name": "ssl_test", + "extension": ".tmpl", + "size": 4424, + "date": "2017-02-16", + "sha1": "53d419024d05a201dcdd6e0f9b796dbf9db2d1c9", + "md5": "6548dc52339694de89bba22902d2d07d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl_test_ctx.c", + "type": "file", + "name": "ssl_test_ctx.c", + "base_name": "ssl_test_ctx", + "extension": ".c", + "size": 20504, + "date": "2017-02-16", + "sha1": "9067d09edd63642e7882bf8dde1f660c6383b9f1", + "md5": "dda57693b281ea65819653ef66ab93a4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl_test_ctx.h", + "type": "file", + "name": "ssl_test_ctx.h", + "base_name": "ssl_test_ctx", + "extension": ".h", + "size": 6440, + "date": "2017-02-16", + "sha1": "652d612a5838cab63f6ed80a081010259ac38522", + "md5": "06cbd385230960431a9c01ee9166e677", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl_test_ctx_test.c", + "type": "file", + "name": "ssl_test_ctx_test.c", + "base_name": "ssl_test_ctx_test", + "extension": ".c", + "size": 11985, + "date": "2017-02-16", + "sha1": "a6cddbd2c0c1337c05f9d2d665fa6315a3b855e2", + "md5": "aba47943cb986b46291a22c153810902", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl_test_ctx_test.conf", + "type": "file", + "name": "ssl_test_ctx_test.conf", + "base_name": "ssl_test_ctx_test", + "extension": ".conf", + "size": 1864, + "date": "2017-02-16", + "sha1": "34579b236b989e5a7482aa89b505b105e7cf4bc2", + "md5": "b5facaa00d4ca8e91b95e2fbdc10ee60", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "INI", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/sslapitest.c", + "type": "file", + "name": "sslapitest.c", + "base_name": "sslapitest", + "extension": ".c", + "size": 28885, + "date": "2017-02-16", + "sha1": "e4ca208192e46506137f523842163c2bb409e7d6", + "md5": "d5164027fde6d7812807f7e60653605c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/sslcorrupttest.c", + "type": "file", + "name": "sslcorrupttest.c", + "base_name": "sslcorrupttest", + "extension": ".c", + "size": 7245, + "date": "2017-02-16", + "sha1": "16cb91403223b7042dbc3f52379d8c9c03db70c0", + "md5": "d0b79a733e381e88a25dcf9c33a2de1a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssltest_old.c", + "type": "file", + "name": "ssltest_old.c", + "base_name": "ssltest_old", + "extension": ".c", + "size": 105709, + "date": "2017-02-16", + "sha1": "b8dd4691d66aed337c988207f22c8e5d811fccbf", + "md5": "28dbeb7911fed2be981d2732dd0b90da", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssltestlib.c", + "type": "file", + "name": "ssltestlib.c", + "base_name": "ssltestlib", + "extension": ".c", + "size": 19731, + "date": "2017-02-16", + "sha1": "82d36187240b2450551b632d6afcd5efa668432f", + "md5": "d10d5a5859652e52b252e1ce6b084500", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssltestlib.h", + "type": "file", + "name": "ssltestlib.h", + "base_name": "ssltestlib", + "extension": ".h", + "size": 1344, + "date": "2017-02-16", + "sha1": "163c27bb47aa33afbe2fc9193e72267d17ea7b28", + "md5": "ec9832edac2587103fb1f9a856c8972b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/Sssdsa.cnf", + "type": "file", + "name": "Sssdsa.cnf", + "base_name": "Sssdsa", + "extension": ".cnf", + "size": 821, + "date": "2017-02-16", + "sha1": "8e9fea7306e8a666eb4bb77d43f87d2a3c3c4bbc", + "md5": "011da1f1c1b323bde480a563e06f299b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/Sssrsa.cnf", + "type": "file", + "name": "Sssrsa.cnf", + "base_name": "Sssrsa", + "extension": ".cnf", + "size": 798, + "date": "2017-02-16", + "sha1": "11611544133c6e985e73e28bdcabd2822ed040d8", + "md5": "4dfc1b9b87ce2236eafe1ca39aea13a2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/test.cnf", + "type": "file", + "name": "test.cnf", + "base_name": "test", + "extension": ".cnf", + "size": 2637, + "date": "2017-02-16", + "sha1": "17440d2cc4229139423b50bfae03c5b74cbb801c", + "md5": "f5f00cf668eb83cd19e07336725462c2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testcrl.pem", + "type": "file", + "name": "testcrl.pem", + "base_name": "testcrl", + "extension": ".pem", + "size": 938, + "date": "2017-02-16", + "sha1": "bfe23d4bec1c31a1b25627a31138d1ce82718a24", + "md5": "3d6d3b3c0c0024d8410d0a9256e9a870", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testdsa.pem", + "type": "file", + "name": "testdsa.pem", + "base_name": "testdsa", + "extension": ".pem", + "size": 672, + "date": "2017-02-16", + "sha1": "9e9d2f01211b973341f4735a5092e8a813b89e67", + "md5": "f48309791386ce8c5e3fefe614216df7", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testdsapub.pem", + "type": "file", + "name": "testdsapub.pem", + "base_name": "testdsapub", + "extension": ".pem", + "size": 654, + "date": "2017-02-16", + "sha1": "68e06a1f7609cb21ca7d16afac2905763ae28ffe", + "md5": "96191129860f79d8a35e5eb849d34ec0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testec-p256.pem", + "type": "file", + "name": "testec-p256.pem", + "base_name": "testec-p256", + "extension": ".pem", + "size": 227, + "date": "2017-02-16", + "sha1": "bfe1e1608429aee0a97f646eb6e808ea8a4bf0f9", + "md5": "d68a856691d95d530d5c10d638592f1a", + "mime_type": "text/plain", + "file_type": "PEM EC private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testecpub-p256.pem", + "type": "file", + "name": "testecpub-p256.pem", + "base_name": "testecpub-p256", + "extension": ".pem", + "size": 178, + "date": "2017-02-16", + "sha1": "8df43a324d2763a889bfdfc278dad5e2168432fc", + "md5": "c4f930dffbce990021cbaeb8cb085f7d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testp7.pem", + "type": "file", + "name": "testp7.pem", + "base_name": "testp7", + "extension": ".pem", + "size": 2854, + "date": "2017-02-16", + "sha1": "01973d933b2ccf794ba411803bfcb6808e688609", + "md5": "774028abd40a175221ed5498b69bc388", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testreq2.pem", + "type": "file", + "name": "testreq2.pem", + "base_name": "testreq2", + "extension": ".pem", + "size": 371, + "date": "2017-02-16", + "sha1": "1c21cfdc959a9b1a51011a1df50e71fc0c306bcb", + "md5": "2ef02b7b366b24d73765bab6c46b0e9a", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testrsa.pem", + "type": "file", + "name": "testrsa.pem", + "base_name": "testrsa", + "extension": ".pem", + "size": 497, + "date": "2017-02-16", + "sha1": "72472944db5057267a659bd695098f342de7af14", + "md5": "68f931406c1b3832776fbe954bd5dc12", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testrsapub.pem", + "type": "file", + "name": "testrsapub.pem", + "base_name": "testrsapub", + "extension": ".pem", + "size": 182, + "date": "2017-02-16", + "sha1": "5c0cc2af58eac72b41a8a8cc51fc05ee21756a0e", + "md5": "caff536b2095d7990b6c23400df3d8e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testsid.pem", + "type": "file", + "name": "testsid.pem", + "base_name": "testsid", + "extension": ".pem", + "size": 2384, + "date": "2017-02-16", + "sha1": "dd3bfd2021d0fbe3981424396c19faec23401d7a", + "md5": "fcb37e76c089645a9911a6576efb8a4c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testutil.c", + "type": "file", + "name": "testutil.c", + "base_name": "testutil", + "extension": ".c", + "size": 3053, + "date": "2017-02-16", + "sha1": "2ce590bb27d3b5ae35c745f5a26a73d595c260fc", + "md5": "a29fcdeed2408c114c2935d80605ade5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testutil.h", + "type": "file", + "name": "testutil.h", + "base_name": "testutil", + "extension": ".h", + "size": 3876, + "date": "2017-02-16", + "sha1": "315a26526146316dd47c7f9cf5e3fc8cba91c6f6", + "md5": "a9dd0b498a9a12eb6aecc88ba91b014e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testx509.pem", + "type": "file", + "name": "testx509.pem", + "base_name": "testx509", + "extension": ".pem", + "size": 530, + "date": "2017-02-16", + "sha1": "a392087de04a7c8173b2646acdb04a86285c2c84", + "md5": "d8520328643dfc6e1721630a5bc4ff9e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/threadstest.c", + "type": "file", + "name": "threadstest.c", + "base_name": "threadstest", + "extension": ".c", + "size": 4929, + "date": "2017-02-16", + "sha1": "2146b81c3a28f770a1a32eef6f9bd625eb6c6899", + "md5": "63898cba0ffbe568f1c34e00df1dcfc9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/Uss.cnf", + "type": "file", + "name": "Uss.cnf", + "base_name": "Uss", + "extension": ".cnf", + "size": 1018, + "date": "2017-02-16", + "sha1": "d61f5a98c3aaf7e8e428815fd44d166bfa4d6467", + "md5": "57e0ddc455face3a6239d93a8e42d1c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/v3-cert1.pem", + "type": "file", + "name": "v3-cert1.pem", + "base_name": "v3-cert1", + "extension": ".pem", + "size": 944, + "date": "2017-02-16", + "sha1": "045b99cb97fa3f561e773f7af34e8848a529535a", + "md5": "ef95828b48559af8f295f08b7a314d05", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/v3-cert2.pem", + "type": "file", + "name": "v3-cert2.pem", + "base_name": "v3-cert2", + "extension": ".pem", + "size": 940, + "date": "2017-02-16", + "sha1": "d1331c48b9b0e957152c603883f63d21d47fcd13", + "md5": "981e370c298e3bdd08d958e99b23ce30", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/v3ext.c", + "type": "file", + "name": "v3ext.c", + "base_name": "v3ext", + "extension": ".c", + "size": 965, + "date": "2017-02-16", + "sha1": "3053ddb38effbf9ae4a7ead9a2f72c2fe3df872b", + "md5": "30834fd192c98c0bd28e32dc2d808017", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/v3nametest.c", + "type": "file", + "name": "v3nametest.c", + "base_name": "v3nametest", + "extension": ".c", + "size": 11493, + "date": "2017-02-16", + "sha1": "8d017ee94cc9655af10163a666b8d5141275332b", + "md5": "14fc84b3adc674be3563375efc9c5125", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/verify_extra_test.c", + "type": "file", + "name": "verify_extra_test.c", + "base_name": "verify_extra_test", + "extension": ".c", + "size": 4038, + "date": "2017-02-16", + "sha1": "c25add1d33e72df4278fcd556c5235af4afe5ef7", + "md5": "19b2db6d918d5d489bde145c668155ee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/wp_test.c", + "type": "file", + "name": "wp_test.c", + "base_name": "wp_test", + "extension": ".c", + "size": 8404, + "date": "2017-02-16", + "sha1": "2b7353c9e1262fdb8eceff3630b400665fea8336", + "md5": "eedfda8c4bb87946ba103b00854150fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/x509aux.c", + "type": "file", + "name": "x509aux.c", + "base_name": "x509aux", + "extension": ".c", + "size": 6141, + "date": "2017-02-16", + "sha1": "8436d19d976bc9bcff008b7a62185a3b105fd3bc", + "md5": "28493cf5249fc82ea0cfc8a92399d69b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs", + "type": "directory", + "name": "certs", + "base_name": "certs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 161, + "dirs_count": 0, + "size_count": 229695, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/alt1-cert.pem", + "type": "file", + "name": "alt1-cert.pem", + "base_name": "alt1-cert", + "extension": ".pem", + "size": 1302, + "date": "2017-02-16", + "sha1": "0debc74ef66a7d304919dc2bcc93ce3517639ed4", + "md5": "0a63a2ae9da7ad0634ffe14010fff93f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/alt1-key.pem", + "type": "file", + "name": "alt1-key.pem", + "base_name": "alt1-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "66f7fce5a4792b0cd117467fe74e247822e75b2f", + "md5": "0a0c89e18c113fcdd9a0f1acd3b8ae37", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/alt2-cert.pem", + "type": "file", + "name": "alt2-cert.pem", + "base_name": "alt2-cert", + "extension": ".pem", + "size": 1216, + "date": "2017-02-16", + "sha1": "bc4ed92dca86bb7d1738c36689c18670708af19d", + "md5": "11f6d012a487d02d58e76dec7b09fe2a", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/alt2-key.pem", + "type": "file", + "name": "alt2-key.pem", + "base_name": "alt2-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "48b9cbd49860b5f8bfb34c773ec2afe1f016a124", + "md5": "58b279c2dfb63991ae5a23c6db4817c2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/alt3-cert.pem", + "type": "file", + "name": "alt3-cert.pem", + "base_name": "alt3-cert", + "extension": ".pem", + "size": 1265, + "date": "2017-02-16", + "sha1": "00bd9eb8ad00cfb81f7633658212d834a62a2c35", + "md5": "66e116257fef0bdc7f20e0251fd72ed3", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/alt3-key.pem", + "type": "file", + "name": "alt3-key.pem", + "base_name": "alt3-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "15bd4e7dcd307d440c2de6a7de2468421e886fbd", + "md5": "d9b028fc62ee7229ba277ec802d08256", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/bad-pc3-cert.pem", + "type": "file", + "name": "bad-pc3-cert.pem", + "base_name": "bad-pc3-cert", + "extension": ".pem", + "size": 1245, + "date": "2017-02-16", + "sha1": "8d2404d88570d11397108cf1fdab1cc4497ea557", + "md5": "9901378c2c849b94c40cd69b26ced7a1", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/bad-pc3-key.pem", + "type": "file", + "name": "bad-pc3-key.pem", + "base_name": "bad-pc3-key", + "extension": ".pem", + "size": 1708, + "date": "2017-02-16", + "sha1": "8eac02d64be7d3fd004357d08a5f072e1253e63f", + "md5": "2e1ce2571a807ad1db644358bc231260", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/bad-pc4-cert.pem", + "type": "file", + "name": "bad-pc4-cert.pem", + "base_name": "bad-pc4-cert", + "extension": ".pem", + "size": 1269, + "date": "2017-02-16", + "sha1": "69a8002195e1dcc5225cece2e7300b2cb7d65fa7", + "md5": "4e47b1b3006bbf0337a4493e753b10fd", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/bad-pc4-key.pem", + "type": "file", + "name": "bad-pc4-key.pem", + "base_name": "bad-pc4-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "7c50cddfd7eb782143a721a60414107409649c56", + "md5": "77a3e6b5eba001c31bf423abc96047bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/bad-pc6-cert.pem", + "type": "file", + "name": "bad-pc6-cert.pem", + "base_name": "bad-pc6-cert", + "extension": ".pem", + "size": 1265, + "date": "2017-02-16", + "sha1": "c85c3e40900f76db6c69e1b7e72c3f316ba5ae2e", + "md5": "ec2dddd04af25a7c0348e3190f11dbca", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/bad-pc6-key.pem", + "type": "file", + "name": "bad-pc6-key.pem", + "base_name": "bad-pc6-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "4d139deff929f766bb366e595a421dc2fe5ade10", + "md5": "1ebb0c3ec04c813705c84eac89cff810", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/bad.key", + "type": "file", + "name": "bad.key", + "base_name": "bad", + "extension": ".key", + "size": 1675, + "date": "2017-02-16", + "sha1": "bf2c0f7b531e1df7896b32a2794f616c040772e3", + "md5": "20e1bc94e73a9d9a87e786082d0f2f8b", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/bad.pem", + "type": "file", + "name": "bad.pem", + "base_name": "bad", + "extension": ".pem", + "size": 1261, + "date": "2017-02-16", + "sha1": "1df488220fac0582685b9a7022f7a75897542aab", + "md5": "6919cfc779720990ab20df9041fd2309", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt1-cert.pem", + "type": "file", + "name": "badalt1-cert.pem", + "base_name": "badalt1-cert", + "extension": ".pem", + "size": 1204, + "date": "2017-02-16", + "sha1": "0a5feb3d37f3c2bcfdbcf4b933403e4aa01f6882", + "md5": "fdd7e5ed47468bd4d26ea09047aab75f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt1-key.pem", + "type": "file", + "name": "badalt1-key.pem", + "base_name": "badalt1-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "1d98e51a8298d4162721a0177a4577b541768781", + "md5": "9139a24aacb26938888734ef98db75b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt10-cert.pem", + "type": "file", + "name": "badalt10-cert.pem", + "base_name": "badalt10-cert", + "extension": ".pem", + "size": 1285, + "date": "2017-02-16", + "sha1": "2bac6025a7248c30fe23f4a73c27e4c2b833372a", + "md5": "abe52bd538ddad04ce1e7963411c32c6", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt10-key.pem", + "type": "file", + "name": "badalt10-key.pem", + "base_name": "badalt10-key", + "extension": ".pem", + "size": 1708, + "date": "2017-02-16", + "sha1": "338b424f50d06d9c40b8be71d0995cfabf702288", + "md5": "324ecca639f0a1dc16753ab2f3077476", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt2-cert.pem", + "type": "file", + "name": "badalt2-cert.pem", + "base_name": "badalt2-cert", + "extension": ".pem", + "size": 1200, + "date": "2017-02-16", + "sha1": "76eb0014c0e1895de20153aee0bb4ce9eec490c2", + "md5": "a9c2c38fc5818efcf4a9f06416865b7e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt2-key.pem", + "type": "file", + "name": "badalt2-key.pem", + "base_name": "badalt2-key", + "extension": ".pem", + "size": 1708, + "date": "2017-02-16", + "sha1": "147eeac73b571a2fd720b9f91d414a6ac4e91493", + "md5": "dddfbd0a211b1160a9d612fccf5b3c7d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt3-cert.pem", + "type": "file", + "name": "badalt3-cert.pem", + "base_name": "badalt3-cert", + "extension": ".pem", + "size": 1245, + "date": "2017-02-16", + "sha1": "88d462298a7f1096a447300a7bce6f43e8ba74ff", + "md5": "58f707334d93e86322ec9143aabce5d6", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt3-key.pem", + "type": "file", + "name": "badalt3-key.pem", + "base_name": "badalt3-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "c5b0ab139211aa5ea4fffc4187e69644290997d5", + "md5": "e9a011642b4be48337f9b8ffca226894", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt4-cert.pem", + "type": "file", + "name": "badalt4-cert.pem", + "base_name": "badalt4-cert", + "extension": ".pem", + "size": 1245, + "date": "2017-02-16", + "sha1": "b9e0c566fcb9e9be27db4f8fc25d39e55655f016", + "md5": "63356639acc84edae260362c358acbff", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt4-key.pem", + "type": "file", + "name": "badalt4-key.pem", + "base_name": "badalt4-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "776332d68d252f0224c423b2967193527eebcd8b", + "md5": "1dfb494aff064f10aef0e2d7c1b69190", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt5-cert.pem", + "type": "file", + "name": "badalt5-cert.pem", + "base_name": "badalt5-cert", + "extension": ".pem", + "size": 1212, + "date": "2017-02-16", + "sha1": "7d4dae88e4aa32a301566c999b50fe0f946f6cba", + "md5": "02aa602fd74720384fae6067b565578b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt5-key.pem", + "type": "file", + "name": "badalt5-key.pem", + "base_name": "badalt5-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "39724d96d76c2fa50ef2fee8851f5dbfbeb08b6c", + "md5": "61fd24537675c9340ff30249fad7ad15", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt6-cert.pem", + "type": "file", + "name": "badalt6-cert.pem", + "base_name": "badalt6-cert", + "extension": ".pem", + "size": 1306, + "date": "2017-02-16", + "sha1": "3716bea4d44f040f776f2e2104c31e15bb8b6368", + "md5": "533378a09bed3ddba99fed4ac9c5d8e8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt6-key.pem", + "type": "file", + "name": "badalt6-key.pem", + "base_name": "badalt6-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "97f2a7ae84b589b73d2b7417f832e1ec161b1b11", + "md5": "9528ac196c0b6bbdd7d758f93f51ffa6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt7-cert.pem", + "type": "file", + "name": "badalt7-cert.pem", + "base_name": "badalt7-cert", + "extension": ".pem", + "size": 1387, + "date": "2017-02-16", + "sha1": "7765ca78b628f70cfbb947e258c96cc28b5d45fc", + "md5": "c665b74cd74a6668ee0f786735e7ed71", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt7-key.pem", + "type": "file", + "name": "badalt7-key.pem", + "base_name": "badalt7-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "e5a75f6ecbc5fbcb2a94af22540fbb8392779085", + "md5": "45ed0aa76afb3187745cfefa66cb5ff9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt8-cert.pem", + "type": "file", + "name": "badalt8-cert.pem", + "base_name": "badalt8-cert", + "extension": ".pem", + "size": 1277, + "date": "2017-02-16", + "sha1": "c0b1360b22ef8dca80db3527028b00ae4d047853", + "md5": "0819ec5b3ad63ba0085921725fcc9dd7", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt8-key.pem", + "type": "file", + "name": "badalt8-key.pem", + "base_name": "badalt8-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "6b023beecfc87bd3f46283c1b237a24221b5ab38", + "md5": "95886869c2d93dfff31ace63e2f41de0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt9-cert.pem", + "type": "file", + "name": "badalt9-cert.pem", + "base_name": "badalt9-cert", + "extension": ".pem", + "size": 1277, + "date": "2017-02-16", + "sha1": "366d56a8725b8ad6c4447e3e8c735cc05357eabb", + "md5": "12f97f909565be4099bbabcc0cea4df5", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/badalt9-key.pem", + "type": "file", + "name": "badalt9-key.pem", + "base_name": "badalt9-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "54eafc30feabcb000d331b20fe178b075da8566f", + "md5": "87df8477a877221e6806def72709ae89", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca+anyEKU.pem", + "type": "file", + "name": "ca+anyEKU.pem", + "base_name": "ca+anyEKU", + "extension": ".pem", + "size": 1102, + "date": "2017-02-16", + "sha1": "5cd68450a9e7e9b38cf832d543f179ba42b7f8f0", + "md5": "b3627ac8ed2e9da2f16b0b3e39a9ef8a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca+clientAuth.pem", + "type": "file", + "name": "ca+clientAuth.pem", + "base_name": "ca+clientAuth", + "extension": ".pem", + "size": 1110, + "date": "2017-02-16", + "sha1": "c4cb9bb83efad77d8ef790a30e54e293a5ac9fa9", + "md5": "78d093e9178d1b514a6b4cb3300fd048", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca+serverAuth.pem", + "type": "file", + "name": "ca+serverAuth.pem", + "base_name": "ca+serverAuth", + "extension": ".pem", + "size": 1110, + "date": "2017-02-16", + "sha1": "00e974e3ff64de1aedaaa6f5dd08c1cfca287d35", + "md5": "ee1cebb12e1fe853874dcfdb3f1ffef2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-anyEKU.pem", + "type": "file", + "name": "ca-anyEKU.pem", + "base_name": "ca-anyEKU", + "extension": ".pem", + "size": 1102, + "date": "2017-02-16", + "sha1": "87c132f20643c6617949ace9d17f3ddd7b103bde", + "md5": "a2e6ae375b533179e30948dfe41a8c8c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-cert-768.pem", + "type": "file", + "name": "ca-cert-768.pem", + "base_name": "ca-cert-768", + "extension": ".pem", + "size": 847, + "date": "2017-02-16", + "sha1": "1dd0dc5cb6a980a26cc2276d107a3a03ddc70c42", + "md5": "b5a13bac383d3a09ab74fc5aa3d0d85b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-cert-768i.pem", + "type": "file", + "name": "ca-cert-768i.pem", + "base_name": "ca-cert-768i", + "extension": ".pem", + "size": 855, + "date": "2017-02-16", + "sha1": "1bebc6142c6f80fedf769a6fad086e0fc63f8d83", + "md5": "51442eea395f19ce8de37769bce74336", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-cert-md5-any.pem", + "type": "file", + "name": "ca-cert-md5-any.pem", + "base_name": "ca-cert-md5-any", + "extension": ".pem", + "size": 1102, + "date": "2017-02-16", + "sha1": "0b0046dad48d311bbd03db9e5149544d86b88ddf", + "md5": "517e31eaaad4ae874b390ee63c81383a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-cert-md5.pem", + "type": "file", + "name": "ca-cert-md5.pem", + "base_name": "ca-cert-md5", + "extension": ".pem", + "size": 1074, + "date": "2017-02-16", + "sha1": "e2e8dbda33d1f69f42ae9ac837e5306dbfad51c6", + "md5": "0ab118a67c01c2adae98ab8fe3e4d59b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-cert.pem", + "type": "file", + "name": "ca-cert.pem", + "base_name": "ca-cert", + "extension": ".pem", + "size": 1074, + "date": "2017-02-16", + "sha1": "4d2d964a15d95c832ab436e87925b9c0081453d1", + "md5": "ab9100ed0455fabfd9448d3128d7c568", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-cert2.pem", + "type": "file", + "name": "ca-cert2.pem", + "base_name": "ca-cert2", + "extension": ".pem", + "size": 1074, + "date": "2017-02-16", + "sha1": "dd7ebe794f7c32d304beef9952a357086a74ceec", + "md5": "88c40616fa73dc811e354f247ebd9c07", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-clientAuth.pem", + "type": "file", + "name": "ca-clientAuth.pem", + "base_name": "ca-clientAuth", + "extension": ".pem", + "size": 1110, + "date": "2017-02-16", + "sha1": "eed37027d493f2d26da1a3f532daa2a4da864843", + "md5": "5514924e9edfa65d1fcada270387b40c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-expired.pem", + "type": "file", + "name": "ca-expired.pem", + "base_name": "ca-expired", + "extension": ".pem", + "size": 1070, + "date": "2017-02-16", + "sha1": "5eb73a8c5b34bb63e46451800c4761f19fe248ac", + "md5": "afdf55172ee2d4fcee67727024553f26", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-key-768.pem", + "type": "file", + "name": "ca-key-768.pem", + "base_name": "ca-key-768", + "extension": ".pem", + "size": 717, + "date": "2017-02-16", + "sha1": "126b890a0e86bb16b026fa1dac1fc267e9398139", + "md5": "0136de034a8484fc0afcfed7d06b6c51", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-key.pem", + "type": "file", + "name": "ca-key.pem", + "base_name": "ca-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "f6d01304ce6f7793f92704272a42aed92f2d6cfc", + "md5": "60b8acd7f611384e544085dc8f9b0252", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-key2.pem", + "type": "file", + "name": "ca-key2.pem", + "base_name": "ca-key2", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "1ff9add518b08b078244d57c08d20454a791d291", + "md5": "3d5817eacb8a41ecd5bb50beb9fba144", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-name2.pem", + "type": "file", + "name": "ca-name2.pem", + "base_name": "ca-name2", + "extension": ".pem", + "size": 1074, + "date": "2017-02-16", + "sha1": "063b6cfec5fe1b7e4e0f2f9a1fa3ce6e84061ec6", + "md5": "51ca82f0201f538ef4bf31f8176aca58", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-nonbc.pem", + "type": "file", + "name": "ca-nonbc.pem", + "base_name": "ca-nonbc", + "extension": ".pem", + "size": 1074, + "date": "2017-02-16", + "sha1": "77db879c548ed8eb8c05db62534f393b635ad6c1", + "md5": "1f3e10cb8cff3013779a8351e5fa1d49", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-nonca.pem", + "type": "file", + "name": "ca-nonca.pem", + "base_name": "ca-nonca", + "extension": ".pem", + "size": 1119, + "date": "2017-02-16", + "sha1": "b93bdc35caa07bbc6d2dc597a4314d65bd465c56", + "md5": "8e7ef70d9140b034f5f080296ef6d26a", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-root2.pem", + "type": "file", + "name": "ca-root2.pem", + "base_name": "ca-root2", + "extension": ".pem", + "size": 1074, + "date": "2017-02-16", + "sha1": "82bfd4dccc356bef0bc9607048d7027d0d7a7325", + "md5": "cc9b0bc1bfb03e4338e63b997d058c47", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ca-serverAuth.pem", + "type": "file", + "name": "ca-serverAuth.pem", + "base_name": "ca-serverAuth", + "extension": ".pem", + "size": 1110, + "date": "2017-02-16", + "sha1": "80bdf6ac7cc684ea9dc5039c1f5a3d113cdd7b2b", + "md5": "76633902bd4798daed583a8f5a47814c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/cca+anyEKU.pem", + "type": "file", + "name": "cca+anyEKU.pem", + "base_name": "cca+anyEKU", + "extension": ".pem", + "size": 1131, + "date": "2017-02-16", + "sha1": "c99f7d279ce191b853352487a449aee9d45ce0b5", + "md5": "4209b08ca7b15cff6dc39284f5e1a724", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/cca+clientAuth.pem", + "type": "file", + "name": "cca+clientAuth.pem", + "base_name": "cca+clientAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "86199e370e9dd036033e3560f8d6d54428a3e01d", + "md5": "079be4fa8a269da39f26f01e330a8c95", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/cca+serverAuth.pem", + "type": "file", + "name": "cca+serverAuth.pem", + "base_name": "cca+serverAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "ab7792bcda8a216af642d3a5dd0cb2e5e0cad642", + "md5": "12dcd2f71a92ff361b57eee5d627400d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/cca-anyEKU.pem", + "type": "file", + "name": "cca-anyEKU.pem", + "base_name": "cca-anyEKU", + "extension": ".pem", + "size": 1131, + "date": "2017-02-16", + "sha1": "9a2f86393d7eeace31548b5dee1bcb864f851bb7", + "md5": "4a8ee2a8630e95c1a7d4c4bfdbd7378b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/cca-cert.pem", + "type": "file", + "name": "cca-cert.pem", + "base_name": "cca-cert", + "extension": ".pem", + "size": 1103, + "date": "2017-02-16", + "sha1": "a5f5687cb40dbff1d052c7c7f4f3a3a703602355", + "md5": "b91fa100f0327d61e8893ec7d7a35b8c", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/cca-clientAuth.pem", + "type": "file", + "name": "cca-clientAuth.pem", + "base_name": "cca-clientAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "86199e370e9dd036033e3560f8d6d54428a3e01d", + "md5": "079be4fa8a269da39f26f01e330a8c95", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/cca-serverAuth.pem", + "type": "file", + "name": "cca-serverAuth.pem", + "base_name": "cca-serverAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "aedd60279576f6f9767939e660d9f87a984d25d8", + "md5": "69f0cd58e6e47a23162b60e58b08c383", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/croot+anyEKU.pem", + "type": "file", + "name": "croot+anyEKU.pem", + "base_name": "croot+anyEKU", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "5f1c1800b89427286e91657d3a3e681349ab2811", + "md5": "17f1c21abde4b9f9309b615db8ad63ee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/croot+clientAuth.pem", + "type": "file", + "name": "croot+clientAuth.pem", + "base_name": "croot+clientAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "66e4a8e8846ff7a8c088965f457e903be7c59ea6", + "md5": "f90af645c14b6e016e1d577e54b08862", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/croot+serverAuth.pem", + "type": "file", + "name": "croot+serverAuth.pem", + "base_name": "croot+serverAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "19fd40090111cfc47aca6a5a6b797f533df5ec86", + "md5": "f700e70f822dc4ed57e3ec255ddf8574", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/croot-anyEKU.pem", + "type": "file", + "name": "croot-anyEKU.pem", + "base_name": "croot-anyEKU", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "10ddaf03ac7a8030a2b2d554641f36bc4ae28ec1", + "md5": "ecb622e210cd5ed34bc6c613be9ccbae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/croot-cert.pem", + "type": "file", + "name": "croot-cert.pem", + "base_name": "croot-cert", + "extension": ".pem", + "size": 1111, + "date": "2017-02-16", + "sha1": "69795a21e68491fbe0b732d3b63c9b8b81ab7ece", + "md5": "1271db40db5e5e360025a37ee279f4a8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/croot-clientAuth.pem", + "type": "file", + "name": "croot-clientAuth.pem", + "base_name": "croot-clientAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "f323184872d406d9c00a78cb7d2ed1e18121886e", + "md5": "6f0bed74d9efa7f7a407e1ba780a4bf3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/croot-serverAuth.pem", + "type": "file", + "name": "croot-serverAuth.pem", + "base_name": "croot-serverAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "930cbe4432847a38d9938d6f44b9cfbe8220d9aa", + "md5": "8c36b1f1efb66b3b0bbc6c203ac90b63", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee+clientAuth.pem", + "type": "file", + "name": "ee+clientAuth.pem", + "base_name": "ee+clientAuth", + "extension": ".pem", + "size": 1180, + "date": "2017-02-16", + "sha1": "3740d73ff1d8b47c6f68663868263057638b31da", + "md5": "237bb9c991fd7f260c4d7b1f2047b5a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee+serverAuth.pem", + "type": "file", + "name": "ee+serverAuth.pem", + "base_name": "ee+serverAuth", + "extension": ".pem", + "size": 1180, + "date": "2017-02-16", + "sha1": "f8f4c16fd8f7a18a5fd4fca33942ab8850cd97b2", + "md5": "d3304a32056e4089a59987179eae53cb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-cert-768.pem", + "type": "file", + "name": "ee-cert-768.pem", + "base_name": "ee-cert-768", + "extension": ".pem", + "size": 916, + "date": "2017-02-16", + "sha1": "22044b3f4ed68f272b74365715c50268955dcbf5", + "md5": "01a6af00a3fe6cfcb754c06ea279ba42", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-cert-768i.pem", + "type": "file", + "name": "ee-cert-768i.pem", + "base_name": "ee-cert-768i", + "extension": ".pem", + "size": 924, + "date": "2017-02-16", + "sha1": "d8d6a543626689a4299169b8d1e345d70579094b", + "md5": "8990584ad109eb8b2691387a8901a7cc", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-cert-md5.pem", + "type": "file", + "name": "ee-cert-md5.pem", + "base_name": "ee-cert-md5", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "899f6cd67b0ad7ff4bc40f9d695d4cee128e6823", + "md5": "e886135943022d315f42260328bd8498", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-cert.pem", + "type": "file", + "name": "ee-cert.pem", + "base_name": "ee-cert", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "ed2a0fcc18aa6d0d5dc4d139327532c8f89fa840", + "md5": "efcc5f61bdfb95dc2740d875f944d975", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-cert2.pem", + "type": "file", + "name": "ee-cert2.pem", + "base_name": "ee-cert2", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "2d9dc974d77bc071c53a2edfdbb394dbd948193e", + "md5": "a25e7f1c02587d42535b16ff8bf0c09f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-client-chain.pem", + "type": "file", + "name": "ee-client-chain.pem", + "base_name": "ee-client-chain", + "extension": ".pem", + "size": 2217, + "date": "2017-02-16", + "sha1": "6e929b7846626d33f6991fce5b62367fa0b46f67", + "md5": "ac8965ffdf8599f2cd631ce40b3d5deb", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-client.pem", + "type": "file", + "name": "ee-client.pem", + "base_name": "ee-client", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "a4d75010bc9338682486856fdba16cd1e3a75281", + "md5": "7ff7cdeebfee7f712f01f1a0f8712dcf", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-clientAuth.pem", + "type": "file", + "name": "ee-clientAuth.pem", + "base_name": "ee-clientAuth", + "extension": ".pem", + "size": 1180, + "date": "2017-02-16", + "sha1": "50dfa71dc430f1176520c23b726b352129fea45c", + "md5": "bd5e2e6c0c55f6ad7c4582e6531c674a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-expired.pem", + "type": "file", + "name": "ee-expired.pem", + "base_name": "ee-expired", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "4b3b5d3d0a7126cebf2b1136e9433002a764a2c5", + "md5": "7b89b7a88eaa2899d569e157c875a8a4", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-key-768.pem", + "type": "file", + "name": "ee-key-768.pem", + "base_name": "ee-key-768", + "extension": ".pem", + "size": 717, + "date": "2017-02-16", + "sha1": "3e07c2290034dc9097462ffbf4b64ed942d99f20", + "md5": "167bfafeb8c0dabb012e3fa7f37eef31", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-key.pem", + "type": "file", + "name": "ee-key.pem", + "base_name": "ee-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "dde8053f2d9baaa5a2534e6bdc10711da82addca", + "md5": "33b966d58c9fb846e1bbbe792400c7bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-name2.pem", + "type": "file", + "name": "ee-name2.pem", + "base_name": "ee-name2", + "extension": ".pem", + "size": 1147, + "date": "2017-02-16", + "sha1": "fb334d2eae2971b2a7b0def89683049e5df90a26", + "md5": "83af9957115b602e3a0373d2b17dbb57", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ee-serverAuth.pem", + "type": "file", + "name": "ee-serverAuth.pem", + "base_name": "ee-serverAuth", + "extension": ".pem", + "size": 1180, + "date": "2017-02-16", + "sha1": "49d0b501490f9a3cf15066ec20516abeb5601e8e", + "md5": "240e5b7b8b6f21171db047723491aadc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/embeddedSCTs1.pem", + "type": "file", + "name": "embeddedSCTs1.pem", + "base_name": "embeddedSCTs1", + "extension": ".pem", + "size": 1220, + "date": "2017-02-16", + "sha1": "43141d9e4215ae536fd14dc0b1882d3223f63903", + "md5": "7908ee827c4f3ecc58d7173b303b5807", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/embeddedSCTs1.sct", + "type": "file", + "name": "embeddedSCTs1.sct", + "base_name": "embeddedSCTs1", + "extension": ".sct", + "size": 580, + "date": "2017-02-16", + "sha1": "78241f8c33e1c6c29bde2f32b9407c84d29c5b18", + "md5": "df963a06ab60360b8abf95de3e137f15", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 4, + "end_line": 7 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/embeddedSCTs1_issuer.pem", + "type": "file", + "name": "embeddedSCTs1_issuer.pem", + "base_name": "embeddedSCTs1_issuer", + "extension": ".pem", + "size": 1038, + "date": "2017-02-16", + "sha1": "253f5baec5497146de307e28a652c33d0a1b2a4d", + "md5": "36e5462bfa22ada28ecb27f8dd305e71", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/embeddedSCTs3.pem", + "type": "file", + "name": "embeddedSCTs3.pem", + "base_name": "embeddedSCTs3", + "extension": ".pem", + "size": 2748, + "date": "2017-02-16", + "sha1": "c641357dbde001025507c95728c31327de6e10c1", + "md5": "dbc57b975ae584dbe36a7ed4ebf8de49", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/embeddedSCTs3.sct", + "type": "file", + "name": "embeddedSCTs3.sct", + "base_name": "embeddedSCTs3", + "extension": ".sct", + "size": 1739, + "date": "2017-02-16", + "sha1": "f8d2f54dd6a1340919ffbf26744d2dd5c3b06b59", + "md5": "0c698f14c6e131215ea61fcca104d52a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 4, + "end_line": 7 + }, + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 16, + "end_line": 19 + }, + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 28, + "end_line": 31 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/embeddedSCTs3_issuer.pem", + "type": "file", + "name": "embeddedSCTs3_issuer.pem", + "base_name": "embeddedSCTs3_issuer", + "extension": ".pem", + "size": 2159, + "date": "2017-02-16", + "sha1": "c1e7f33df6a1db0c7c3df44b75b3074f31e5d62c", + "md5": "c08b7de61dca895158bf3a416055e4b3", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/interCA.key", + "type": "file", + "name": "interCA.key", + "base_name": "interCA", + "extension": ".key", + "size": 1675, + "date": "2017-02-16", + "sha1": "df0429e2b88b357bd81efe6a5a0240477ff320cd", + "md5": "ce53b09318de337b067bd07f718af4cb", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/interCA.pem", + "type": "file", + "name": "interCA.pem", + "base_name": "interCA", + "extension": ".pem", + "size": 1273, + "date": "2017-02-16", + "sha1": "282b2c7a1e13e283aa6b5d9869db5f5fc1657ab4", + "md5": "4a0a727959598ba5dd61adbb0f514fa1", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/leaf.key", + "type": "file", + "name": "leaf.key", + "base_name": "leaf", + "extension": ".key", + "size": 1679, + "date": "2017-02-16", + "sha1": "0503f3377d72dbf55d1123a91628e9b2c9472612", + "md5": "409403bd9f4ba18a707792a2e81be0ad", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/leaf.pem", + "type": "file", + "name": "leaf.pem", + "base_name": "leaf", + "extension": ".pem", + "size": 1273, + "date": "2017-02-16", + "sha1": "c84448237b7be0ad533e7e19b9c18d2f56b03cc0", + "md5": "0a2b3aca09b7e0dc76bf77e2a8f64cb0", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/mkcert.sh", + "type": "file", + "name": "mkcert.sh", + "base_name": "mkcert", + "extension": ".sh", + "size": 6934, + "date": "2017-02-16", + "sha1": "4c3a321ea081d268334e74eb3dcefb08f5c2228e", + "md5": "10240539feeb9884547970773be66f8c", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 6, + "end_line": 6, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016 Viktor Dukhovni " + ], + "holders": [ + "Viktor Dukhovni" + ], + "authors": [], + "start_line": 3, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/nca+anyEKU.pem", + "type": "file", + "name": "nca+anyEKU.pem", + "base_name": "nca+anyEKU", + "extension": ".pem", + "size": 1155, + "date": "2017-02-16", + "sha1": "b0a793f6e8e4818aa5bdc55caa8b6e9c45e2d120", + "md5": "780e401a62e4d3060ee32e675c00fba0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/nca+serverAuth.pem", + "type": "file", + "name": "nca+serverAuth.pem", + "base_name": "nca+serverAuth", + "extension": ".pem", + "size": 1155, + "date": "2017-02-16", + "sha1": "b0a793f6e8e4818aa5bdc55caa8b6e9c45e2d120", + "md5": "780e401a62e4d3060ee32e675c00fba0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ncca-cert.pem", + "type": "file", + "name": "ncca-cert.pem", + "base_name": "ncca-cert", + "extension": ".pem", + "size": 1265, + "date": "2017-02-16", + "sha1": "ed84f55f0505f202ea58ab18f274a1ead59a315c", + "md5": "a34616f3ab116d45e8fe95a9205ceff7", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ncca-key.pem", + "type": "file", + "name": "ncca-key.pem", + "base_name": "ncca-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "b089fe6b18ba4e4e380376352838853f76603f54", + "md5": "f7b841e9bd1a25efc25a5d7d56d6b06b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ncca1-cert.pem", + "type": "file", + "name": "ncca1-cert.pem", + "base_name": "ncca1-cert", + "extension": ".pem", + "size": 1220, + "date": "2017-02-16", + "sha1": "dd2e01da91c5fe141cb1a29ee9e44cb7a4678823", + "md5": "8aa336740ba52816d03b99b8eb5aaa56", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ncca1-key.pem", + "type": "file", + "name": "ncca1-key.pem", + "base_name": "ncca1-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "f80d505fc30fec7b9d80960565277dc76c1241e7", + "md5": "b8b1c2e1c47b098bbed1ecb4871e7e36", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ncca2-cert.pem", + "type": "file", + "name": "ncca2-cert.pem", + "base_name": "ncca2-cert", + "extension": ".pem", + "size": 1200, + "date": "2017-02-16", + "sha1": "8c550781bef0cfdb51118f4c31182d484499a80e", + "md5": "50f7b62fbc84dc076ac3ec709dc82d23", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ncca2-key.pem", + "type": "file", + "name": "ncca2-key.pem", + "base_name": "ncca2-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "5cf9a1a2c0d15e07e2bc2e2611bce554bcf55541", + "md5": "4b3123100a6b604a02633ed17cebed10", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ncca3-cert.pem", + "type": "file", + "name": "ncca3-cert.pem", + "base_name": "ncca3-cert", + "extension": ".pem", + "size": 1192, + "date": "2017-02-16", + "sha1": "8702767d825d28db60435cf74c35e9788e3bf974", + "md5": "185dd9733ec2db181bef0de1c05843a1", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/ncca3-key.pem", + "type": "file", + "name": "ncca3-key.pem", + "base_name": "ncca3-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "6463838d1b388bba9953572b715bbc61ad17a402", + "md5": "1117e2b055c470110391fa3e20a77d30", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/nroot+anyEKU.pem", + "type": "file", + "name": "nroot+anyEKU.pem", + "base_name": "nroot+anyEKU", + "extension": ".pem", + "size": 1163, + "date": "2017-02-16", + "sha1": "f9ec6d9481d90a20a2edb8caecbef128b95b7b44", + "md5": "819eeeb24d2c2bb3441e921ab9ac2738", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/nroot+serverAuth.pem", + "type": "file", + "name": "nroot+serverAuth.pem", + "base_name": "nroot+serverAuth", + "extension": ".pem", + "size": 1167, + "date": "2017-02-16", + "sha1": "374f231acec2422710cda3ad9b678019ac1b5d0b", + "md5": "7459494e6c74cb3751d9eff9308f6d04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/pathlen.pem", + "type": "file", + "name": "pathlen.pem", + "base_name": "pathlen", + "extension": ".pem", + "size": 1294, + "date": "2017-02-16", + "sha1": "e5e3a038c11d47cdb75a6744b3012b816c9feb8f", + "md5": "d4dd9e3a7470d36ff5038c59910dceae", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/pc1-cert.pem", + "type": "file", + "name": "pc1-cert.pem", + "base_name": "pc1-cert", + "extension": ".pem", + "size": 1204, + "date": "2017-02-16", + "sha1": "4884b78f498b86d22782bb2e205424be9a8a2d0b", + "md5": "90541a546205b9556b15b4052210655d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/pc1-key.pem", + "type": "file", + "name": "pc1-key.pem", + "base_name": "pc1-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "0d92fc08edcc497cda1c6c2f1aac0192c3100bcd", + "md5": "556214e762ff0acd89855eb6ed342fa5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/pc2-cert.pem", + "type": "file", + "name": "pc2-cert.pem", + "base_name": "pc2-cert", + "extension": ".pem", + "size": 1269, + "date": "2017-02-16", + "sha1": "891d80a018e098d58bb63d85248bad31865bf979", + "md5": "7974ebeadd6b1ce3a78bd80b3b3932ab", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/pc2-key.pem", + "type": "file", + "name": "pc2-key.pem", + "base_name": "pc2-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "16979a895e9657aa188f8ccd88b18d4d0cbba282", + "md5": "50296d3f712cf80d6b88365c52967232", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/pc5-cert.pem", + "type": "file", + "name": "pc5-cert.pem", + "base_name": "pc5-cert", + "extension": ".pem", + "size": 1265, + "date": "2017-02-16", + "sha1": "b9e874291caf949e51fe53ccb6cbbbad05ae2a43", + "md5": "b7849bec0e35c9077edef90abd360586", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/pc5-key.pem", + "type": "file", + "name": "pc5-key.pem", + "base_name": "pc5-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "e04d059fb82efd969cd99f6a8f0042f09b883510", + "md5": "1d609537d05d447d8e79185b7bc880e7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root+anyEKU.pem", + "type": "file", + "name": "root+anyEKU.pem", + "base_name": "root+anyEKU", + "extension": ".pem", + "size": 1110, + "date": "2017-02-16", + "sha1": "3a35f9e0835aa54119e80f46f8708d92fe963f7b", + "md5": "af4d6cb8d79ee7d01dfce9bfe8afc07d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root+clientAuth.pem", + "type": "file", + "name": "root+clientAuth.pem", + "base_name": "root+clientAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-02-16", + "sha1": "4f2ee859cc2f9844feb9b2f0d2f2935951f63496", + "md5": "efaa8f2601686e985cdcd34ffe9e4bbd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root+serverAuth.pem", + "type": "file", + "name": "root+serverAuth.pem", + "base_name": "root+serverAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-02-16", + "sha1": "6903bbd1d92d2daf8b25151c13dc46db4e38c544", + "md5": "b31399f01ff388014d580de6c04f71a9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-anyEKU.pem", + "type": "file", + "name": "root-anyEKU.pem", + "base_name": "root-anyEKU", + "extension": ".pem", + "size": 1110, + "date": "2017-02-16", + "sha1": "4d233e6ef1cab7d6d8c917c6e678913f2449c2d3", + "md5": "5378312c906665ed5a1f1f730f031c9e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-cert-768.pem", + "type": "file", + "name": "root-cert-768.pem", + "base_name": "root-cert-768", + "extension": ".pem", + "size": 635, + "date": "2017-02-16", + "sha1": "a5b5fb8b5692703abbcf392ed0b532fb5b98391d", + "md5": "09e69e1e591530f8abff446282ce659e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-cert-md5.pem", + "type": "file", + "name": "root-cert-md5.pem", + "base_name": "root-cert-md5", + "extension": ".pem", + "size": 1082, + "date": "2017-02-16", + "sha1": "29a1c88967d892d5016e151aeab17deb21cc2090", + "md5": "fb704dad6db7f9af52da360397e4728d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-cert.pem", + "type": "file", + "name": "root-cert.pem", + "base_name": "root-cert", + "extension": ".pem", + "size": 1082, + "date": "2017-02-16", + "sha1": "3ce6df52ab9e42657d8b8b181cc046dfd6f20b4e", + "md5": "4e256e3b22d3d72b970679d4e9a5247e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-cert2.pem", + "type": "file", + "name": "root-cert2.pem", + "base_name": "root-cert2", + "extension": ".pem", + "size": 1082, + "date": "2017-02-16", + "sha1": "6c5ea25b474ede5a7b6693f80dfe8e2d86e9fca3", + "md5": "284a06750d3d9cfccd1c6cba85ee44a9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-clientAuth.pem", + "type": "file", + "name": "root-clientAuth.pem", + "base_name": "root-clientAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-02-16", + "sha1": "0b2dc70389e06cc3bc37840957bf89274a491527", + "md5": "72700b0a5c41c4fbcd3b7e093e919b66", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-key-768.pem", + "type": "file", + "name": "root-key-768.pem", + "base_name": "root-key-768", + "extension": ".pem", + "size": 717, + "date": "2017-02-16", + "sha1": "be4a795b5c89c926d355cad134e32088263d6540", + "md5": "aa2f854b9080facae0a698ae1379531a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-key.pem", + "type": "file", + "name": "root-key.pem", + "base_name": "root-key", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "789d397ba8cb72ef2f6559fcc3cbe4c6307d785a", + "md5": "196f424fe77707349603663535c9b374", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-key2.pem", + "type": "file", + "name": "root-key2.pem", + "base_name": "root-key2", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "28f3143500b756fcb0178ae224834f07c2baeab0", + "md5": "a3248735ac9c806ab07024471fa93e4f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-name2.pem", + "type": "file", + "name": "root-name2.pem", + "base_name": "root-name2", + "extension": ".pem", + "size": 1090, + "date": "2017-02-16", + "sha1": "796d5bc44200e6b0398677633082a51905b42281", + "md5": "e6939c7a78716f14ff24591f133074bc", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-nonca.pem", + "type": "file", + "name": "root-nonca.pem", + "base_name": "root-nonca", + "extension": ".pem", + "size": 1131, + "date": "2017-02-16", + "sha1": "bb3ee1c9da63f89d6f8aa91366599c92babef08e", + "md5": "a4da4ddc62e1b133799bc952cd791a8e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-noserver.pem", + "type": "file", + "name": "root-noserver.pem", + "base_name": "root-noserver", + "extension": ".pem", + "size": 1115, + "date": "2017-02-16", + "sha1": "2f6078e5700a354275d7efc12c8c4aab55e22c55", + "md5": "1b92c31c216c99b192809c69c3c38b40", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root-serverAuth.pem", + "type": "file", + "name": "root-serverAuth.pem", + "base_name": "root-serverAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-02-16", + "sha1": "df2a08205c2faea012d35cbd61f29d2a8d1e43a9", + "md5": "3862c4bf0e4c11268227708ed7753937", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root2+clientAuth.pem", + "type": "file", + "name": "root2+clientAuth.pem", + "base_name": "root2+clientAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-02-16", + "sha1": "929f897ecd9d1ff022eeae84ca3b2c372a06d9df", + "md5": "1c922ddeef7c95de97d7377f16d643d5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root2+serverAuth.pem", + "type": "file", + "name": "root2+serverAuth.pem", + "base_name": "root2+serverAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-02-16", + "sha1": "a82b40b9a5a9084ddf46ff3c93ef6d9457ef0fc3", + "md5": "2b7382213dfa1d11f7abae7992fe3e93", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/root2-serverAuth.pem", + "type": "file", + "name": "root2-serverAuth.pem", + "base_name": "root2-serverAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-02-16", + "sha1": "3d8625527e94fcdd6417daccf41e28b7c5a43fba", + "md5": "49dc8ae5ac4e11ea9fa6f6e9ccf4f46a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/rootCA.key", + "type": "file", + "name": "rootCA.key", + "base_name": "rootCA", + "extension": ".key", + "size": 1679, + "date": "2017-02-16", + "sha1": "ef86f75278e81b8236744166d0aca1266563a3ff", + "md5": "6b4bbde6a624a2090c0f0d21e7897251", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/rootCA.pem", + "type": "file", + "name": "rootCA.pem", + "base_name": "rootCA", + "extension": ".pem", + "size": 1273, + "date": "2017-02-16", + "sha1": "a444da49deafb5fc5367b4fbe0a41729ccc910a8", + "md5": "7016badc654eb29f4e870c423c9c2da8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/rootcert.pem", + "type": "file", + "name": "rootcert.pem", + "base_name": "rootcert", + "extension": ".pem", + "size": 1082, + "date": "2017-02-16", + "sha1": "d8e86ebab29cc11c73f4e32d654883545b6a427c", + "md5": "90d0992fe812ac82742c753532522b54", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/rootkey.pem", + "type": "file", + "name": "rootkey.pem", + "base_name": "rootkey", + "extension": ".pem", + "size": 1708, + "date": "2017-02-16", + "sha1": "4dba78b51069f0b9c26a5b8065f54bffc8ecba17", + "md5": "ba3d5907d5be4ff786333d35dc39970a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/roots.pem", + "type": "file", + "name": "roots.pem", + "base_name": "roots", + "extension": ".pem", + "size": 2558, + "date": "2017-02-16", + "sha1": "572bebf2b2beedb4d260200bc70066f4b25cb5b1", + "md5": "e71212dfb578ed4e58b57481f4be4064", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sca+anyEKU.pem", + "type": "file", + "name": "sca+anyEKU.pem", + "base_name": "sca+anyEKU", + "extension": ".pem", + "size": 1131, + "date": "2017-02-16", + "sha1": "be6747e97116fd17e98881cc73837da0481f7144", + "md5": "89e845be2f7f10b08155ce18d816921f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sca+clientAuth.pem", + "type": "file", + "name": "sca+clientAuth.pem", + "base_name": "sca+clientAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "82ee15149155bc48191658e8f5d1238da7f1fd2d", + "md5": "9e7799a2427e8744ea64919ddc5e899e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sca+serverAuth.pem", + "type": "file", + "name": "sca+serverAuth.pem", + "base_name": "sca+serverAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "35ade7c1f27a30fbc12f2d0c2314fedb9e1125a1", + "md5": "cdb2c0c23b8ec0c8c2c8b041f8a0e931", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sca-anyEKU.pem", + "type": "file", + "name": "sca-anyEKU.pem", + "base_name": "sca-anyEKU", + "extension": ".pem", + "size": 1131, + "date": "2017-02-16", + "sha1": "2d888dce969eb9c0dc1004d0258f705a27ea54c5", + "md5": "f5c73cc2098ed809c5b813401bfdd082", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sca-cert.pem", + "type": "file", + "name": "sca-cert.pem", + "base_name": "sca-cert", + "extension": ".pem", + "size": 1103, + "date": "2017-02-16", + "sha1": "4c7b88926de021b449091cafe65bd174252ceade", + "md5": "be12a3060dceee6b42618925f457d22b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sca-clientAuth.pem", + "type": "file", + "name": "sca-clientAuth.pem", + "base_name": "sca-clientAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "3f6e14d6eded4de39bf2157b524dd8adc053b7f6", + "md5": "7d169dc384f17252d75a04bba6157bb7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sca-serverAuth.pem", + "type": "file", + "name": "sca-serverAuth.pem", + "base_name": "sca-serverAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "ea5c1e3ed19bd91c4b6503ebbca44fe544f535ca", + "md5": "973d68ee44bd656ea8119606707c1d02", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/server-trusted.pem", + "type": "file", + "name": "server-trusted.pem", + "base_name": "server-trusted", + "extension": ".pem", + "size": 1188, + "date": "2017-02-16", + "sha1": "68e336d9ed3dfcd1cf3884cd7a6eff05fbc2f6fa", + "md5": "8c4c88b3fc7acfd83f9363c4e810b500", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/servercert.pem", + "type": "file", + "name": "servercert.pem", + "base_name": "servercert", + "extension": ".pem", + "size": 1151, + "date": "2017-02-16", + "sha1": "fbe2d71732a2cc231ba7ff5e673521dcd7522213", + "md5": "7a212cb88421ef95568acebdf6568292", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/serverkey.pem", + "type": "file", + "name": "serverkey.pem", + "base_name": "serverkey", + "extension": ".pem", + "size": 1704, + "date": "2017-02-16", + "sha1": "3f5e0ab72378127fef49736d3215c316bda38b67", + "md5": "6c38a6fb4413cd371379abbe06328663", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/setup.sh", + "type": "file", + "name": "setup.sh", + "base_name": "setup", + "extension": ".sh", + "size": 15142, + "date": "2017-02-16", + "sha1": "79a2353c36c35a2ae56a77c0135b19d11f753408", + "md5": "4b8cc6a5d5e3d18b75a893a61cc8d877", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sroot+anyEKU.pem", + "type": "file", + "name": "sroot+anyEKU.pem", + "base_name": "sroot+anyEKU", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "7a3a35ea9eb57e7e61284b3d6721642684fc57b4", + "md5": "1b86519b33fc9ec637b813732e963d7c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sroot+clientAuth.pem", + "type": "file", + "name": "sroot+clientAuth.pem", + "base_name": "sroot+clientAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "11dba485b381871cc91659b9ed3b857c18da8d36", + "md5": "ea0ef56b6caf8343cd64f1b2c042c2b8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sroot+serverAuth.pem", + "type": "file", + "name": "sroot+serverAuth.pem", + "base_name": "sroot+serverAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "04d2f0a5a6ce43b5edfc39d85ba1501bb961c993", + "md5": "cb53322f4789a777720ce33579f8a606", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sroot-anyEKU.pem", + "type": "file", + "name": "sroot-anyEKU.pem", + "base_name": "sroot-anyEKU", + "extension": ".pem", + "size": 1139, + "date": "2017-02-16", + "sha1": "55572d64e9a1f2907d1d081cd4fc7b6593284a82", + "md5": "dc962785869121be174a356f01008a8d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sroot-cert.pem", + "type": "file", + "name": "sroot-cert.pem", + "base_name": "sroot-cert", + "extension": ".pem", + "size": 1111, + "date": "2017-02-16", + "sha1": "4ef3ca4b50763445d63f80d6756942a2e84f90b1", + "md5": "3139c5bb883fb5f987aadba52a26191b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sroot-clientAuth.pem", + "type": "file", + "name": "sroot-clientAuth.pem", + "base_name": "sroot-clientAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "76fe13a3e2142f361d670d33fe50c7ddbf0d138c", + "md5": "1e0c0532254044ea463f276e73f31bd9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/sroot-serverAuth.pem", + "type": "file", + "name": "sroot-serverAuth.pem", + "base_name": "sroot-serverAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-02-16", + "sha1": "a1739e6dbb056756e3d227eb067aaa63aab7a04b", + "md5": "4fe03a820e0890348add71786a219979", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/subinterCA-ss.pem", + "type": "file", + "name": "subinterCA-ss.pem", + "base_name": "subinterCA-ss", + "extension": ".pem", + "size": 1285, + "date": "2017-02-16", + "sha1": "a0c3550f21b805fca1b4fdc1ca641287a7ec7530", + "md5": "137c3283b90c12c91ee2da83def7f943", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/subinterCA.key", + "type": "file", + "name": "subinterCA.key", + "base_name": "subinterCA", + "extension": ".key", + "size": 1679, + "date": "2017-02-16", + "sha1": "70d16585c4483e47ae5cfb137a5509a5cd25c4d0", + "md5": "eaab26ea4d7a6b8a7b19373f502aab2f", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/subinterCA.pem", + "type": "file", + "name": "subinterCA.pem", + "base_name": "subinterCA", + "extension": ".pem", + "size": 1281, + "date": "2017-02-16", + "sha1": "4a2a97892ce72d8c1b701a79925374aa0906214d", + "md5": "54622d7d5103d651abd473f142bf3cae", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/untrusted.pem", + "type": "file", + "name": "untrusted.pem", + "base_name": "untrusted", + "extension": ".pem", + "size": 2554, + "date": "2017-02-16", + "sha1": "265fdb92960be006d9572c7d8484b806e245f160", + "md5": "e9c7e850db19874e85547fc57752a0ce", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/wrongcert.pem", + "type": "file", + "name": "wrongcert.pem", + "base_name": "wrongcert", + "extension": ".pem", + "size": 1099, + "date": "2017-02-16", + "sha1": "7c6f751ecd7f3ddfd291b48f42213d13885adaa2", + "md5": "dd319b84a725057e8c32243882cb775d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/certs/wrongkey.pem", + "type": "file", + "name": "wrongkey.pem", + "base_name": "wrongkey", + "extension": ".pem", + "size": 1708, + "date": "2017-02-16", + "sha1": "0d3e59bffc2da21ec7d1403f2342bf260344720b", + "md5": "8d8b825adf972d132c837f2aaa312b01", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ct", + "type": "directory", + "name": "ct", + "base_name": "ct", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2567, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ct/log_list.conf", + "type": "file", + "name": "log_list.conf", + "base_name": "log_list", + "extension": ".conf", + "size": 1987, + "date": "2017-02-16", + "sha1": "3ea345c431195c1f9740b5f0d476417f36374f17", + "md5": "3dc5dea30f8a81d25b3c2ed51e31e2e3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ct/tls1.sct", + "type": "file", + "name": "tls1.sct", + "base_name": "tls1", + "extension": ".sct", + "size": 580, + "date": "2017-02-16", + "sha1": "78241f8c33e1c6c29bde2f32b9407c84d29c5b18", + "md5": "df963a06ab60360b8abf95de3e137f15", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 4, + "end_line": 7 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests", + "type": "directory", + "name": "d2i-tests", + "base_name": "d2i-tests", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 1121, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/bad-cms.der", + "type": "file", + "name": "bad-cms.der", + "base_name": "bad-cms", + "extension": ".der", + "size": 24, + "date": "2017-02-16", + "sha1": "f3c6fad094a0dff539c9a312db077faca2774317", + "md5": "3a261cdc36562931ff3077e6a063620b", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/bad-int-pad0.der", + "type": "file", + "name": "bad-int-pad0.der", + "base_name": "bad-int-pad0", + "extension": ".der", + "size": 4, + "date": "2017-02-16", + "sha1": "e8f8bb99f9c79840058c45628a7279d5e6e35091", + "md5": "ddae5a1703736724e812c007cc6101cf", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/bad-int-padminus1.der", + "type": "file", + "name": "bad-int-padminus1.der", + "base_name": "bad-int-padminus1", + "extension": ".der", + "size": 4, + "date": "2017-02-16", + "sha1": "196870f03e29e85b0d646bb81048da61facfd05f", + "md5": "385a44964cc5f3a4aaa89b83091307e3", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/bad_bio.der", + "type": "file", + "name": "bad_bio.der", + "base_name": "bad_bio", + "extension": ".der", + "size": 7, + "date": "2017-02-16", + "sha1": "a1d31eb10025646ab20e16f141885aecb846c20c", + "md5": "937ac15bafd655b459e9a21b9dd1be11", + "mime_type": "text/plain", + "file_type": "Non-ISO extended-ASCII text, with no line terminators", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/bad_cert.der", + "type": "file", + "name": "bad_cert.der", + "base_name": "bad_cert", + "extension": ".der", + "size": 1007, + "date": "2017-02-16", + "sha1": "001e5375a42d2fb353de3da38a766f11eba9c316", + "md5": "e04ecb22ddd0a056d712e216a9ddd6b9", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/bad_generalname.der", + "type": "file", + "name": "bad_generalname.der", + "base_name": "bad_generalname", + "extension": ".der", + "size": 60, + "date": "2017-02-16", + "sha1": "ffa57b107c8a295b4ebece349109d2e1a648d6ec", + "md5": "10d1346c7ff6f21f7b1f5c7b8abc780d", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/high_tag.der", + "type": "file", + "name": "high_tag.der", + "base_name": "high_tag", + "extension": ".der", + "size": 6, + "date": "2017-02-16", + "sha1": "a48875aa5ff96624d61faac1d88e4378c554bc3a", + "md5": "a83c275cb2fdaedbb0eecd59b7564096", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/int0.der", + "type": "file", + "name": "int0.der", + "base_name": "int0", + "extension": ".der", + "size": 3, + "date": "2017-02-16", + "sha1": "56e888ae9db53f2bcba04c4be287530733771bdf", + "md5": "9a4f48c371ae1d214d719be64ae9fbb0", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/int1.der", + "type": "file", + "name": "int1.der", + "base_name": "int1", + "extension": ".der", + "size": 3, + "date": "2017-02-16", + "sha1": "a24e6cdcdc67c317f9ce567a0bf3d7040066af48", + "md5": "251c1fa8a1e95434a64dce0d4826443e", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/d2i-tests/intminus1.der", + "type": "file", + "name": "intminus1.der", + "base_name": "intminus1", + "extension": ".der", + "size": 3, + "date": "2017-02-16", + "sha1": "60135fd7e7e22ea25842ade5ccafe5eec15b6dd1", + "md5": "6968f45023854c35bd5f485292578da7", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests", + "type": "directory", + "name": "ocsp-tests", + "base_name": "ocsp-tests", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 66, + "dirs_count": 0, + "size_count": 111069, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D1.ors", + "type": "file", + "name": "D1.ors", + "base_name": "D1", + "extension": ".ors", + "size": 2020, + "date": "2017-02-16", + "sha1": "5d9c6d431a6b207afafccf9eb963ece2b482dbd3", + "md5": "abf556b1e88be5027186fd63fd788731", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D1_Cert_EE.pem", + "type": "file", + "name": "D1_Cert_EE.pem", + "base_name": "D1_Cert_EE", + "extension": ".pem", + "size": 2394, + "date": "2017-02-16", + "sha1": "5b4fd3e540aff2ce347807a5d92dde016054dfce", + "md5": "e0cf32eed891ebf3a2e7c70663a792a1", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D1_Issuer_ICA.pem", + "type": "file", + "name": "D1_Issuer_ICA.pem", + "base_name": "D1_Issuer_ICA", + "extension": ".pem", + "size": 1631, + "date": "2017-02-16", + "sha1": "87c721cbc9c5d275b3b0b1695cf428528858d78c", + "md5": "d3574a8cff3e68da4e333581df4e784d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D2.ors", + "type": "file", + "name": "D2.ors", + "base_name": "D2", + "extension": ".ors", + "size": 2044, + "date": "2017-02-16", + "sha1": "a54e4060a7c480d826c7d71d8d9e8ef850490aa4", + "md5": "ffae52f5131026c04bdc9b65b60422db", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D2_Cert_ICA.pem", + "type": "file", + "name": "D2_Cert_ICA.pem", + "base_name": "D2_Cert_ICA", + "extension": ".pem", + "size": 1610, + "date": "2017-02-16", + "sha1": "ad602f6b8d154f63b7eb245feaa804f1d71e4f10", + "md5": "2352f1078bf398ac2b709df37eb54e98", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D2_Issuer_Root.pem", + "type": "file", + "name": "D2_Issuer_Root.pem", + "base_name": "D2_Issuer_Root", + "extension": ".pem", + "size": 1261, + "date": "2017-02-16", + "sha1": "e88300a45a0726158243a4ef7f2095be313e594d", + "md5": "7872bab9a5e1a71e3d7f77836a841a04", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D3.ors", + "type": "file", + "name": "D3.ors", + "base_name": "D3", + "extension": ".ors", + "size": 2414, + "date": "2017-02-16", + "sha1": "628285135bfde6e6625df43dca717a37008b45b8", + "md5": "b62c7fb329c1532940056d7a2b157c04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D3_Cert_EE.pem", + "type": "file", + "name": "D3_Cert_EE.pem", + "base_name": "D3_Cert_EE", + "extension": ".pem", + "size": 2716, + "date": "2017-02-16", + "sha1": "52ed6973f552a388882d0392cfc235a2c16efc5e", + "md5": "4b1cd9025894ef391fe65ca0072cc122", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/D3_Issuer_Root.pem", + "type": "file", + "name": "D3_Issuer_Root.pem", + "base_name": "D3_Issuer_Root", + "extension": ".pem", + "size": 5179, + "date": "2017-02-16", + "sha1": "9b40553f49865d3e455faafadbb0d20885b04f90", + "md5": "190789d16052b5495b3c05b7512a412f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISDOSC_D1.ors", + "type": "file", + "name": "ISDOSC_D1.ors", + "base_name": "ISDOSC_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-02-16", + "sha1": "d545ee9ae139b902b55ebf82649c27238714ca42", + "md5": "f430991faf1d749c1d63778bd986776f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISDOSC_D2.ors", + "type": "file", + "name": "ISDOSC_D2.ors", + "base_name": "ISDOSC_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-02-16", + "sha1": "e61625325d2117138f8d81e517180099354f8717", + "md5": "bc53926a9c1a4cf78ddbac98733f2846", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISDOSC_D3.ors", + "type": "file", + "name": "ISDOSC_D3.ors", + "base_name": "ISDOSC_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-02-16", + "sha1": "ed18ad2f05093be8d38ac2a91ccd6be915222e1c", + "md5": "58a96c4203fe7e45dc75ce64eeb0749d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISIC_D1_Issuer_ICA.pem", + "type": "file", + "name": "ISIC_D1_Issuer_ICA.pem", + "base_name": "ISIC_D1_Issuer_ICA", + "extension": ".pem", + "size": 1631, + "date": "2017-02-16", + "sha1": "0ecd906ecc8dbc28aa3d5abdece1ce6dd8569c17", + "md5": "bbc919fd48f509092fa16ca3e94d87ce", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISIC_D2_Issuer_Root.pem", + "type": "file", + "name": "ISIC_D2_Issuer_Root.pem", + "base_name": "ISIC_D2_Issuer_Root", + "extension": ".pem", + "size": 1261, + "date": "2017-02-16", + "sha1": "b0e9a2ab6ec8ff4b2b768546b16f7cc87613f3eb", + "md5": "5e7e9cd9ba20bd97011564d1bd4a3243", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISIC_D3_Issuer_Root.pem", + "type": "file", + "name": "ISIC_D3_Issuer_Root.pem", + "base_name": "ISIC_D3_Issuer_Root", + "extension": ".pem", + "size": 2569, + "date": "2017-02-16", + "sha1": "a9a673b6d150c62153b11222a5a80353a859f47e", + "md5": "2abe744b840ad7c7642f936f0a2ee127", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISIC_ND1_Issuer_ICA.pem", + "type": "file", + "name": "ISIC_ND1_Issuer_ICA.pem", + "base_name": "ISIC_ND1_Issuer_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-02-16", + "sha1": "67f8087da3d59cdc2f42b4d8ebd08805b7f88af1", + "md5": "5377004fb1a2595a5d2c7544f1201765", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISIC_ND2_Issuer_Root.pem", + "type": "file", + "name": "ISIC_ND2_Issuer_Root.pem", + "base_name": "ISIC_ND2_Issuer_Root", + "extension": ".pem", + "size": 1383, + "date": "2017-02-16", + "sha1": "94a55331d1e0ca912fc1de48ea8e1353fc0be4bf", + "md5": "318e51673793f980f64e4a03c75d8835", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISIC_ND3_Issuer_Root.pem", + "type": "file", + "name": "ISIC_ND3_Issuer_Root.pem", + "base_name": "ISIC_ND3_Issuer_Root", + "extension": ".pem", + "size": 1521, + "date": "2017-02-16", + "sha1": "3b43e27c8d952484521b2123c3b4e47c0c0cc788", + "md5": "afa309365e12160361b51f623fd884d8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISOP_D1.ors", + "type": "file", + "name": "ISOP_D1.ors", + "base_name": "ISOP_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-02-16", + "sha1": "248debb61138577511f2ea8b96387966a8df738b", + "md5": "c8a36d01f87fa14f4f8eed469e7d6d5c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISOP_D2.ors", + "type": "file", + "name": "ISOP_D2.ors", + "base_name": "ISOP_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-02-16", + "sha1": "2494a622c2c900d5a26589bf005a8e74a7cd9269", + "md5": "7da14c3f7fd3d0e496752e2f4ac8426f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISOP_D3.ors", + "type": "file", + "name": "ISOP_D3.ors", + "base_name": "ISOP_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-02-16", + "sha1": "9b8cd70802949de9cc84bc176ac7b5cda930c83d", + "md5": "843192e9d84d57121724da4047d68f45", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISOP_ND1.ors", + "type": "file", + "name": "ISOP_ND1.ors", + "base_name": "ISOP_ND1", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "3ca4ccada3c7996d8f780e6a2a6692726a27adc5", + "md5": "455ba62ee308292da57bb59c6a9ce4ac", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISOP_ND2.ors", + "type": "file", + "name": "ISOP_ND2.ors", + "base_name": "ISOP_ND2", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "e1fef2d607d5ccf2e22c4312613ff94fa826a422", + "md5": "305ca75674e7c5c033f1a2a49b4f4cb6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ISOP_ND3.ors", + "type": "file", + "name": "ISOP_ND3.ors", + "base_name": "ISOP_ND3", + "extension": ".ors", + "size": 642, + "date": "2017-02-16", + "sha1": "98f9a2ad2c099d9cd058eb9bd53c185e4f0e48f6", + "md5": "d9291b346e9365f69dab0f476c5c003b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND1.ors", + "type": "file", + "name": "ND1.ors", + "base_name": "ND1", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "e5ecbb215e1c391971893cd80e21475353a9efc0", + "md5": "9cc3c8fc297787464d5d5ac445c96d47", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND1_Cert_EE.pem", + "type": "file", + "name": "ND1_Cert_EE.pem", + "base_name": "ND1_Cert_EE", + "extension": ".pem", + "size": 2244, + "date": "2017-02-16", + "sha1": "fa82ce969b77aeb8ce183ac87ec009dce83a1995", + "md5": "350811f1a03468a5ff912fc672b38ca2", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND1_Issuer_ICA.pem", + "type": "file", + "name": "ND1_Issuer_ICA.pem", + "base_name": "ND1_Issuer_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-02-16", + "sha1": "2f1f8e32b3f1dd1f8443b81abf0520e46b4fad8b", + "md5": "f0672c43512f975851395828645f2b8d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND2.ors", + "type": "file", + "name": "ND2.ors", + "base_name": "ND2", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "3f0d9738765b0500081c688ef0f86e86988812a6", + "md5": "a0d092ea1454214723f0429d7485d5ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND2_Cert_ICA.pem", + "type": "file", + "name": "ND2_Cert_ICA.pem", + "base_name": "ND2_Cert_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-02-16", + "sha1": "2f1f8e32b3f1dd1f8443b81abf0520e46b4fad8b", + "md5": "f0672c43512f975851395828645f2b8d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND2_Issuer_Root.pem", + "type": "file", + "name": "ND2_Issuer_Root.pem", + "base_name": "ND2_Issuer_Root", + "extension": ".pem", + "size": 1383, + "date": "2017-02-16", + "sha1": "28a5ecaaf9b8141cfae7dbda57fb8f938292efb2", + "md5": "7217d737147ddd364cffb86d5918917d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND3.ors", + "type": "file", + "name": "ND3.ors", + "base_name": "ND3", + "extension": ".ors", + "size": 642, + "date": "2017-02-16", + "sha1": "8292a4574d4a8603b11a008913d11f9882ed50f2", + "md5": "44ceca01c054e9461961f561b04faffd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND3_Cert_EE.pem", + "type": "file", + "name": "ND3_Cert_EE.pem", + "base_name": "ND3_Cert_EE", + "extension": ".pem", + "size": 2094, + "date": "2017-02-16", + "sha1": "24adc726d7eefd4c92cc59c5153cf84b02df2f7d", + "md5": "44d9b4e26d7263825cf1c5720d9ea759", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/ND3_Issuer_Root.pem", + "type": "file", + "name": "ND3_Issuer_Root.pem", + "base_name": "ND3_Issuer_Root", + "extension": ".pem", + "size": 1521, + "date": "2017-02-16", + "sha1": "4513711209c4c1e1780c91df93024fecd8083160", + "md5": "51e14b4c734e450402ea2cf73f2aee0f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WIKH_D1.ors", + "type": "file", + "name": "WIKH_D1.ors", + "base_name": "WIKH_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-02-16", + "sha1": "72c4093011551eda5c2bfeb9c4c914d4d62586b6", + "md5": "4ac1f1750c68540c7508ae99a74fe883", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WIKH_D2.ors", + "type": "file", + "name": "WIKH_D2.ors", + "base_name": "WIKH_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-02-16", + "sha1": "0aa36924889a0d399100d8fccc53fe919e218fe5", + "md5": "1574af8293e37433e786efa209e2c812", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WIKH_D3.ors", + "type": "file", + "name": "WIKH_D3.ors", + "base_name": "WIKH_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-02-16", + "sha1": "043cf93599a5cef14b9a6218f1f1dc68a8cb9e08", + "md5": "9dfbe278a19fed7daebf36e854668360", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WIKH_ND1.ors", + "type": "file", + "name": "WIKH_ND1.ors", + "base_name": "WIKH_ND1", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "834e5f668ac27f9a5b407003e2945facca915142", + "md5": "9e4d392aa8364465cac80577f418f5c9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WIKH_ND2.ors", + "type": "file", + "name": "WIKH_ND2.ors", + "base_name": "WIKH_ND2", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "95e34739195c03333e5b1877a0c2074910f5b57a", + "md5": "5f995a9a9438626aad699cba7131431a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WIKH_ND3.ors", + "type": "file", + "name": "WIKH_ND3.ors", + "base_name": "WIKH_ND3", + "extension": ".ors", + "size": 642, + "date": "2017-02-16", + "sha1": "f50ad45f566ff71d7e5c25570742170be5476ec5", + "md5": "dbbe044057b118454230f9b9e2bace21", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WINH_D1.ors", + "type": "file", + "name": "WINH_D1.ors", + "base_name": "WINH_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-02-16", + "sha1": "7a8e2764b7d545a959facdf4bb0be623cf8b31d4", + "md5": "3b55aea47695426d4dfaa39c7592631b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WINH_D2.ors", + "type": "file", + "name": "WINH_D2.ors", + "base_name": "WINH_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-02-16", + "sha1": "ab831b6a8f9adf61cadcbc23cc86ae9609227f4c", + "md5": "7a9f12ce2ec215d9d48a5e6f5af23623", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WINH_D3.ors", + "type": "file", + "name": "WINH_D3.ors", + "base_name": "WINH_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-02-16", + "sha1": "ad00149ca9f9e95025f1e16f70c5635aba89e0f3", + "md5": "133ab395c0779ed6690f85c0b2c0e235", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WINH_ND1.ors", + "type": "file", + "name": "WINH_ND1.ors", + "base_name": "WINH_ND1", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "a2c024578820ee433ea7efd0e14b5dc4ef9aa50a", + "md5": "92fef76ec1720164404974fe58630ee1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WINH_ND2.ors", + "type": "file", + "name": "WINH_ND2.ors", + "base_name": "WINH_ND2", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "a48bdad343da025d9707a4c9ecf91a977bb19ba4", + "md5": "ba973d1731ede5d30337d92b8862e427", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WINH_ND3.ors", + "type": "file", + "name": "WINH_ND3.ors", + "base_name": "WINH_ND3", + "extension": ".ors", + "size": 642, + "date": "2017-02-16", + "sha1": "f092c42f3140b1f253eb1065a4510991510ea756", + "md5": "63ef8170c61382e1d2dc8c1f07289a7f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKDOSC_D1.ors", + "type": "file", + "name": "WKDOSC_D1.ors", + "base_name": "WKDOSC_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-02-16", + "sha1": "4f01d3ba70d600e295210ea560ab1fbeaf149681", + "md5": "2c55646e00e71bad5d3e20ee3d8760cd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKDOSC_D2.ors", + "type": "file", + "name": "WKDOSC_D2.ors", + "base_name": "WKDOSC_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-02-16", + "sha1": "a85f01850932bf5feb80d385e58241d977e775d6", + "md5": "6745cad5e94480a381633f948d15ebf5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKDOSC_D3.ors", + "type": "file", + "name": "WKDOSC_D3.ors", + "base_name": "WKDOSC_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-02-16", + "sha1": "d8ba97eef704c5666f5fff5227c5dd1451609ca9", + "md5": "8a342406c73a09e58f30e54dd10d2363", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKIC_D1_Issuer_ICA.pem", + "type": "file", + "name": "WKIC_D1_Issuer_ICA.pem", + "base_name": "WKIC_D1_Issuer_ICA", + "extension": ".pem", + "size": 1631, + "date": "2017-02-16", + "sha1": "87521273d5a6af208b20b4e6b0beeeedfa875a69", + "md5": "669e7467b81274408bb7eb2f24f8da75", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKIC_D2_Issuer_Root.pem", + "type": "file", + "name": "WKIC_D2_Issuer_Root.pem", + "base_name": "WKIC_D2_Issuer_Root", + "extension": ".pem", + "size": 1261, + "date": "2017-02-16", + "sha1": "1a3c9d17520b2411f1850caac6fb3958e2743677", + "md5": "deda005e33e90a4052b579daa02bf940", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKIC_D3_Issuer_Root.pem", + "type": "file", + "name": "WKIC_D3_Issuer_Root.pem", + "base_name": "WKIC_D3_Issuer_Root", + "extension": ".pem", + "size": 2569, + "date": "2017-02-16", + "sha1": "658da55f81c2104fcd1e8ea2a8428978c8cdb8fa", + "md5": "3ed0186df636aa630ba2b0df267a29f9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKIC_ND1_Issuer_ICA.pem", + "type": "file", + "name": "WKIC_ND1_Issuer_ICA.pem", + "base_name": "WKIC_ND1_Issuer_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-02-16", + "sha1": "0fa1f946963bf0b373c364d84fa06800f968e7b2", + "md5": "6cc18928cfc76b3352e0d5f934b56e78", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKIC_ND2_Issuer_Root.pem", + "type": "file", + "name": "WKIC_ND2_Issuer_Root.pem", + "base_name": "WKIC_ND2_Issuer_Root", + "extension": ".pem", + "size": 1383, + "date": "2017-02-16", + "sha1": "1b71b2e52741cacdd57e589784fc75163706a6fe", + "md5": "1ff2ce84880fd5bb0f90dec46dc675c0", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WKIC_ND3_Issuer_Root.pem", + "type": "file", + "name": "WKIC_ND3_Issuer_Root.pem", + "base_name": "WKIC_ND3_Issuer_Root", + "extension": ".pem", + "size": 1521, + "date": "2017-02-16", + "sha1": "31ea52718abd74a21155ceb0ba3df06a7859251b", + "md5": "77c509baf4eabd972bef0cc635a01585", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WRID_D1.ors", + "type": "file", + "name": "WRID_D1.ors", + "base_name": "WRID_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-02-16", + "sha1": "fe709da76b910bd0989366f0fe40941b9b2250d7", + "md5": "4cc6bc51a08a28caa695dab4cc519f24", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WRID_D2.ors", + "type": "file", + "name": "WRID_D2.ors", + "base_name": "WRID_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-02-16", + "sha1": "6c7bb0e2d21225092b1dd5897be379c004047106", + "md5": "1f19f1c38180e989a75be5246e96bfe7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WRID_D3.ors", + "type": "file", + "name": "WRID_D3.ors", + "base_name": "WRID_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-02-16", + "sha1": "8bc6c6fb99da16beb083541d8fae085c99067036", + "md5": "e2042aa74fc4a36fbe86d54e5f4e56e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WRID_ND1.ors", + "type": "file", + "name": "WRID_ND1.ors", + "base_name": "WRID_ND1", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "ed5099197e0776ec358d59af5fd4165bd55ccd6b", + "md5": "db68cee13c4e0a5f2cd7e1b996c72ebe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WRID_ND2.ors", + "type": "file", + "name": "WRID_ND2.ors", + "base_name": "WRID_ND2", + "extension": ".ors", + "size": 638, + "date": "2017-02-16", + "sha1": "0ddc56dc5c485d895c2eaf7301a0f3296a4f1d69", + "md5": "852527e758cc0231b181681d7206ad4a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WRID_ND3.ors", + "type": "file", + "name": "WRID_ND3.ors", + "base_name": "WRID_ND3", + "extension": ".ors", + "size": 642, + "date": "2017-02-16", + "sha1": "f89473b9619a710f1990a2a5f0215b2c401f75cd", + "md5": "7e882a87a0faef7f913b0d103a1e77f8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WSNIC_D1_Issuer_ICA.pem", + "type": "file", + "name": "WSNIC_D1_Issuer_ICA.pem", + "base_name": "WSNIC_D1_Issuer_ICA", + "extension": ".pem", + "size": 1631, + "date": "2017-02-16", + "sha1": "0f3afa6fca42b1eeb61dd3e5623c9ef606f14b4a", + "md5": "cc25c8914795b1d9e59453765e373fe7", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WSNIC_D2_Issuer_Root.pem", + "type": "file", + "name": "WSNIC_D2_Issuer_Root.pem", + "base_name": "WSNIC_D2_Issuer_Root", + "extension": ".pem", + "size": 1261, + "date": "2017-02-16", + "sha1": "b5e352d24eb13faf72f8e1ccb3bb3f3991acbd57", + "md5": "2781c9c0c0ab7cdac22cc44e814d55a7", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WSNIC_D3_Issuer_Root.pem", + "type": "file", + "name": "WSNIC_D3_Issuer_Root.pem", + "base_name": "WSNIC_D3_Issuer_Root", + "extension": ".pem", + "size": 2569, + "date": "2017-02-16", + "sha1": "c2063f0b76a58db5b98f5e40e3102e5803957081", + "md5": "adfc20a9e3f15a326889bab6132f6c95", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WSNIC_ND1_Issuer_ICA.pem", + "type": "file", + "name": "WSNIC_ND1_Issuer_ICA.pem", + "base_name": "WSNIC_ND1_Issuer_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-02-16", + "sha1": "1a94d9513ebc49f68befed12f93f6b77d52275f4", + "md5": "8d3986f4d1016e9987356b85384e4b71", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WSNIC_ND2_Issuer_Root.pem", + "type": "file", + "name": "WSNIC_ND2_Issuer_Root.pem", + "base_name": "WSNIC_ND2_Issuer_Root", + "extension": ".pem", + "size": 1383, + "date": "2017-02-16", + "sha1": "c55e434a828e6989d89bf1cd15553299a99996ca", + "md5": "045e64caefa78bf858ce9bcf83c03ab9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ocsp-tests/WSNIC_ND3_Issuer_Root.pem", + "type": "file", + "name": "WSNIC_ND3_Issuer_Root.pem", + "base_name": "WSNIC_ND3_Issuer_Root", + "extension": ".pem", + "size": 1521, + "date": "2017-02-16", + "sha1": "0feb4b4cd38cbbcf49f0d9f34a8a635500f246f6", + "md5": "f7e0daffdcc12fdbbe7f38c937668d18", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes", + "type": "directory", + "name": "recipes", + "base_name": "recipes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 93, + "dirs_count": 0, + "size_count": 188888, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/01-test_abort.t", + "type": "file", + "name": "01-test_abort.t", + "base_name": "01-test_abort", + "extension": ".t", + "size": 478, + "date": "2017-02-16", + "sha1": "768e0d7b2991eebf32a082a90057ad1c25172a59", + "md5": "5d9f93ba01d8ef6c3aaead797e2c9d05", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/01-test_sanity.t", + "type": "file", + "name": "01-test_sanity.t", + "base_name": "01-test_sanity", + "extension": ".t", + "size": 413, + "date": "2017-02-16", + "sha1": "fa8cd5b1aacb6fd606a3d9a5ef2f628cca5c779c", + "md5": "5996539e9a840fc156133b2cf49ad6ae", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/01-test_symbol_presence.t", + "type": "file", + "name": "01-test_symbol_presence.t", + "base_name": "01-test_symbol_presence", + "extension": ".t", + "size": 4249, + "date": "2017-02-16", + "sha1": "0622e5232583d7dff78577dd1e7efc77ba3c6a03", + "md5": "b1d32ad9b67769bd1d80e6134b94e5b8", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/02-test_ordinals.t", + "type": "file", + "name": "02-test_ordinals.t", + "base_name": "02-test_ordinals", + "extension": ".t", + "size": 1688, + "date": "2017-02-16", + "sha1": "c31719930ed6874607e334ba85a02fb4ede571b4", + "md5": "ee963d8474064b056913fbca7ae34395", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/03-test_ui.t", + "type": "file", + "name": "03-test_ui.t", + "base_name": "03-test_ui", + "extension": ".t", + "size": 926, + "date": "2017-02-16", + "sha1": "785bc5d4321206778be4929d15eb14d0804c0ed9", + "md5": "396ce13089e48fa82b68d78dc0dbd1ab", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_bf.t", + "type": "file", + "name": "05-test_bf.t", + "base_name": "05-test_bf", + "extension": ".t", + "size": 411, + "date": "2017-02-16", + "sha1": "a041b20c3ac9f8ab23f517f74157f245e3c6a358", + "md5": "a11d5611c1176f6e333aa7c897e29f01", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_cast.t", + "type": "file", + "name": "05-test_cast.t", + "base_name": "05-test_cast", + "extension": ".t", + "size": 417, + "date": "2017-02-16", + "sha1": "265a0ed029d6b53cc7c97ad7fd4a1a3b1e4ee5df", + "md5": "5dd6410b11ef865a0b949562f7e83dd7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_des.t", + "type": "file", + "name": "05-test_des.t", + "base_name": "05-test_des", + "extension": ".t", + "size": 414, + "date": "2017-02-16", + "sha1": "06c2865b34f194856a8ddd61a2bfefa620995cee", + "md5": "2a21b0254429bc37281c2af528b3443d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_hmac.t", + "type": "file", + "name": "05-test_hmac.t", + "base_name": "05-test_hmac", + "extension": ".t", + "size": 409, + "date": "2017-02-16", + "sha1": "8af82d170451bdf96def3c42222c5612936799c5", + "md5": "a3e56f0b3694d42ae1510739bbaa2a9b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_idea.t", + "type": "file", + "name": "05-test_idea.t", + "base_name": "05-test_idea", + "extension": ".t", + "size": 417, + "date": "2017-02-16", + "sha1": "c8d99c22a6d00938b81d3a97793beaf735065f64", + "md5": "a40bd53f699a2ef0707a9df053b8a2ef", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_md2.t", + "type": "file", + "name": "05-test_md2.t", + "base_name": "05-test_md2", + "extension": ".t", + "size": 414, + "date": "2017-02-16", + "sha1": "4651644aa313799f58120171f230b11260357c35", + "md5": "6c9d0253228c112c2d8ddf100aa65549", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_md4.t", + "type": "file", + "name": "05-test_md4.t", + "base_name": "05-test_md4", + "extension": ".t", + "size": 414, + "date": "2017-02-16", + "sha1": "a2ad4745bf079f23ada8cbcceabf0af8d7602adf", + "md5": "5c140187cb209550777cd1745c70c9d7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_md5.t", + "type": "file", + "name": "05-test_md5.t", + "base_name": "05-test_md5", + "extension": ".t", + "size": 414, + "date": "2017-02-16", + "sha1": "610b67e496fdd3193bad91c97db6e1a76ad344f6", + "md5": "8a4aaa537d463950b718d080c94040fe", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_mdc2.t", + "type": "file", + "name": "05-test_mdc2.t", + "base_name": "05-test_mdc2", + "extension": ".t", + "size": 417, + "date": "2017-02-16", + "sha1": "20f169bb535384022ae12881cb1b09583eedc845", + "md5": "cb51d904bea22117dbadeb09fee34e9f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_rand.t", + "type": "file", + "name": "05-test_rand.t", + "base_name": "05-test_rand", + "extension": ".t", + "size": 417, + "date": "2017-02-16", + "sha1": "d2e6f0916a1536657567020d23b63d60bc995776", + "md5": "b51cef3cda043d44088bc060da33615e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_rc2.t", + "type": "file", + "name": "05-test_rc2.t", + "base_name": "05-test_rc2", + "extension": ".t", + "size": 413, + "date": "2017-02-16", + "sha1": "da530ca9f3e589127a3d2720f1eb6a2aca1a5487", + "md5": "6ca811dfe32a332ab75b520dde856d0c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_rc4.t", + "type": "file", + "name": "05-test_rc4.t", + "base_name": "05-test_rc4", + "extension": ".t", + "size": 413, + "date": "2017-02-16", + "sha1": "c0a252564544f32e62351425eddf0729127c4b96", + "md5": "316869a7e60ac7a3be987dc6f62c180a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_rc5.t", + "type": "file", + "name": "05-test_rc5.t", + "base_name": "05-test_rc5", + "extension": ".t", + "size": 414, + "date": "2017-02-16", + "sha1": "60cae4de3528dfb088fcbe0e1937f06572ec6958", + "md5": "8f6d2c14c4abe0a649d0ff0c8290609e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_rmd.t", + "type": "file", + "name": "05-test_rmd.t", + "base_name": "05-test_rmd", + "extension": ".t", + "size": 414, + "date": "2017-02-16", + "sha1": "cd9a932f9e25aab54bdda2d43281c582937d6917", + "md5": "a94f393c6d5a0a20cfa5e179a3f339f3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_sha1.t", + "type": "file", + "name": "05-test_sha1.t", + "base_name": "05-test_sha1", + "extension": ".t", + "size": 416, + "date": "2017-02-16", + "sha1": "cc7a840266e65dc1d298e7d3e177dc72a2b3e96b", + "md5": "a180ac3e34c1327a8db3ea39a903e5d4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_sha256.t", + "type": "file", + "name": "05-test_sha256.t", + "base_name": "05-test_sha256", + "extension": ".t", + "size": 417, + "date": "2017-02-16", + "sha1": "e790ced579f2f82348092bac63457568e77e5f12", + "md5": "06a9520bd4e8f09e636da2f739767f66", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_sha512.t", + "type": "file", + "name": "05-test_sha512.t", + "base_name": "05-test_sha512", + "extension": ".t", + "size": 417, + "date": "2017-02-16", + "sha1": "3ffc7d24b3faf76a09b6c947d8197af72d95b07b", + "md5": "972c836004fb3964d0d846ce9128f67c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/05-test_wp.t", + "type": "file", + "name": "05-test_wp.t", + "base_name": "05-test_wp", + "extension": ".t", + "size": 419, + "date": "2017-02-16", + "sha1": "253ed41ab4d00275c8258626243c6e138a860cdb", + "md5": "b4bf748882c9a3bfee6c77a7b423d8de", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/10-test_bn.t", + "type": "file", + "name": "10-test_bn.t", + "base_name": "10-test_bn", + "extension": ".t", + "size": 1675, + "date": "2017-02-16", + "sha1": "54f8bf036c2a154ffbff84680c3ad9ab2ed7b9fc", + "md5": "4d4f8bb63d4da47ca7309bd2bc62aa01", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/10-test_exp.t", + "type": "file", + "name": "10-test_exp.t", + "base_name": "10-test_exp", + "extension": ".t", + "size": 407, + "date": "2017-02-16", + "sha1": "6c2d2055b8bbfef6fde12c6f766debc132f51286", + "md5": "c00593ec8108bd364ed98a6642c61718", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/15-test_dh.t", + "type": "file", + "name": "15-test_dh.t", + "base_name": "15-test_dh", + "extension": ".t", + "size": 411, + "date": "2017-02-16", + "sha1": "3d6059885b405f6c34b7cee27757d807990726c9", + "md5": "2be3510e9b4de1b5b5ab3a85799ce8f7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/15-test_dsa.t", + "type": "file", + "name": "15-test_dsa.t", + "base_name": "15-test_dsa", + "extension": ".t", + "size": 1164, + "date": "2017-02-16", + "sha1": "13050d2e500aa132a1decd22979625077b89bb96", + "md5": "f8fc33eec709f839a3dcd43e9f042835", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/15-test_ec.t", + "type": "file", + "name": "15-test_ec.t", + "base_name": "15-test_ec", + "extension": ".t", + "size": 1087, + "date": "2017-02-16", + "sha1": "a9a91374b710c1d0546bc622bcaf09e8cab4a59d", + "md5": "1c979ff5c65af04489ae8d1514a5fb78", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/15-test_ecdh.t", + "type": "file", + "name": "15-test_ecdh.t", + "base_name": "15-test_ecdh", + "extension": ".t", + "size": 415, + "date": "2017-02-16", + "sha1": "1764625b208b7ac4a9ebd13a1464c370b0a2690a", + "md5": "c4bc7654049db2b9a58308d41e27f9a5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/15-test_ecdsa.t", + "type": "file", + "name": "15-test_ecdsa.t", + "base_name": "15-test_ecdsa", + "extension": ".t", + "size": 417, + "date": "2017-02-16", + "sha1": "2d7b4dee568ae35c4d1e1de48d4a2c8f5b708869", + "md5": "0adca6f66f18698479196600a887569a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/15-test_rsa.t", + "type": "file", + "name": "15-test_rsa.t", + "base_name": "15-test_rsa", + "extension": ".t", + "size": 1208, + "date": "2017-02-16", + "sha1": "7c45de023477208cf7c54c16540961631d96370a", + "md5": "4207727a8518aae8f44e311349469190", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/20-test_enc.t", + "type": "file", + "name": "20-test_enc.t", + "base_name": "20-test_enc", + "extension": ".t", + "size": 1957, + "date": "2017-02-16", + "sha1": "c8ce5ccfa2a99ec4453ed73f941866eadbdccd13", + "md5": "91c41b596ec39d9629c7b354b2d60df8", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/20-test_passwd.t", + "type": "file", + "name": "20-test_passwd.t", + "base_name": "20-test_passwd", + "extension": ".t", + "size": 1475, + "date": "2017-02-16", + "sha1": "9fc1514410d9cdc976c3cf3961053cc57a3609a8", + "md5": "37bb8aeeffda8d42a7c467400c9e7dd1", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/25-test_crl.t", + "type": "file", + "name": "25-test_crl.t", + "base_name": "25-test_crl", + "extension": ".t", + "size": 1365, + "date": "2017-02-16", + "sha1": "76adc46511709fada5103b5ba662a776aa65da5c", + "md5": "ba070216ef05df0cf59df525a41854a5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/25-test_d2i.t", + "type": "file", + "name": "25-test_d2i.t", + "base_name": "25-test_d2i", + "extension": ".t", + "size": 3454, + "date": "2017-02-16", + "sha1": "f2485028556acd87705554e3dd72a7a8d3e2bfdc", + "md5": "cc9715b9079b237b2f40cce8c958b74e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/25-test_pkcs7.t", + "type": "file", + "name": "25-test_pkcs7.t", + "base_name": "25-test_pkcs7", + "extension": ".t", + "size": 767, + "date": "2017-02-16", + "sha1": "ab7678a72b1c95aaac8847cc4e24099671cb188a", + "md5": "9d87cf5bae326f88fbe19f87f14f3924", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/25-test_req.t", + "type": "file", + "name": "25-test_req.t", + "base_name": "25-test_req", + "extension": ".t", + "size": 2109, + "date": "2017-02-16", + "sha1": "a1b20e432f9981c23a0e8bc3d6bdc0cf7d10d478", + "md5": "ac7865a09984162639f95132f552d9ef", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/25-test_sid.t", + "type": "file", + "name": "25-test_sid.t", + "base_name": "25-test_sid", + "extension": ".t", + "size": 638, + "date": "2017-02-16", + "sha1": "9d5730161fb82ce461e472ab0baa2d7c6b5b7641", + "md5": "ce9f6baf19d7d00d940e190c9be35af2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/25-test_verify.t", + "type": "file", + "name": "25-test_verify.t", + "base_name": "25-test_verify", + "extension": ".t", + "size": 16465, + "date": "2017-02-16", + "sha1": "467e4af8723a70a02e9a4a7eb4fd2295745d750c", + "md5": "6c2cfc0ccb3ae394380fd96d5e7ed57c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/25-test_x509.t", + "type": "file", + "name": "25-test_x509.t", + "base_name": "25-test_x509", + "extension": ".t", + "size": 990, + "date": "2017-02-16", + "sha1": "9cd6b3e9c085b504a008796bd5484a5647061f63", + "md5": "2a313d0dd191455bcdf769be0d432364", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/30-test_afalg.t", + "type": "file", + "name": "30-test_afalg.t", + "base_name": "30-test_afalg", + "extension": ".t", + "size": 686, + "date": "2017-02-16", + "sha1": "637d99fe885a6ad4006cc112385382201a561643", + "md5": "91ac2d78ceb0e357fcdeff7f8145ffc7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/30-test_engine.t", + "type": "file", + "name": "30-test_engine.t", + "base_name": "30-test_engine", + "extension": ".t", + "size": 483, + "date": "2017-02-16", + "sha1": "3d6fa7cc1dd543a9b47dd08a6c6fe94443e34f55", + "md5": "3318e0fb2f822dea1396ec2fa5b26724", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/30-test_evp.t", + "type": "file", + "name": "30-test_evp.t", + "base_name": "30-test_evp", + "extension": ".t", + "size": 554, + "date": "2017-02-16", + "sha1": "484ab0534abaa0c8320ba678e8a18a872847ae39", + "md5": "ba0189502e847aa8e557d0a62d726fa5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/30-test_evp_extra.t", + "type": "file", + "name": "30-test_evp_extra.t", + "base_name": "30-test_evp_extra", + "extension": ".t", + "size": 494, + "date": "2017-02-16", + "sha1": "ed8d23dedb87108e32a097aa3357d253854ebe24", + "md5": "79d2d5af25cc4adc98b0fae8cf411237", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/30-test_pbelu.t", + "type": "file", + "name": "30-test_pbelu.t", + "base_name": "30-test_pbelu", + "extension": ".t", + "size": 411, + "date": "2017-02-16", + "sha1": "ae30706dfbaaa59a345c95bf2b2c3f2e2548c1d0", + "md5": "63c5c5eb119b8e471aaa984f47634f4e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/40-test_rehash.t", + "type": "file", + "name": "40-test_rehash.t", + "base_name": "40-test_rehash", + "extension": ".t", + "size": 3201, + "date": "2017-02-16", + "sha1": "f2e78b710b0e36ac18c8f4fdb973f7cb34c207cd", + "md5": "bcdf5660ce02e5a9688f50d77c23aae2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_asyncio.t", + "type": "file", + "name": "70-test_asyncio.t", + "base_name": "70-test_asyncio", + "extension": ".t", + "size": 741, + "date": "2017-02-16", + "sha1": "466e3bcdfb053e64029c0c074f69c7e97a44bafc", + "md5": "9fc173832a478a1a1fa5c1728e528e70", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_bad_dtls.t", + "type": "file", + "name": "70-test_bad_dtls.t", + "base_name": "70-test_bad_dtls", + "extension": ".t", + "size": 578, + "date": "2017-02-16", + "sha1": "8ab12bc390c4ed4f5c11b4bf1cd1e3083f8abe9d", + "md5": "935f33f268f9dc9a23d28103fe178ca8", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_clienthello.t", + "type": "file", + "name": "70-test_clienthello.t", + "base_name": "70-test_clienthello", + "extension": ".t", + "size": 645, + "date": "2017-02-16", + "sha1": "d78005a8711c42e980e83aef9ecd3e18faaa0fcb", + "md5": "4d559db18bb72e0836c4d0b816d4e093", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_packet.t", + "type": "file", + "name": "70-test_packet.t", + "base_name": "70-test_packet", + "extension": ".t", + "size": 413, + "date": "2017-02-16", + "sha1": "dfbb03f206c8291a0aa9291844e345eb8bdef25a", + "md5": "7db40166c843290604b2735f45177a0d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_sslcbcpadding.t", + "type": "file", + "name": "70-test_sslcbcpadding.t", + "base_name": "70-test_sslcbcpadding", + "extension": ".t", + "size": 3478, + "date": "2017-02-16", + "sha1": "4a8e3d1a3bbd39ff981c71f15f4ed413e6877610", + "md5": "95d6719faf1185381d3ce1b48ef4b101", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_sslcertstatus.t", + "type": "file", + "name": "70-test_sslcertstatus.t", + "base_name": "70-test_sslcertstatus", + "extension": ".t", + "size": 2155, + "date": "2017-02-16", + "sha1": "519546cf409c3a2e3e97a35acfdcafb058c4eb32", + "md5": "2436eaece236b67b91df1c8203f43266", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_sslextension.t", + "type": "file", + "name": "70-test_sslextension.t", + "base_name": "70-test_sslextension", + "extension": ".t", + "size": 3358, + "date": "2017-02-16", + "sha1": "1ac6bf02986f79aea5922929a5d32cfaa4c4e387", + "md5": "8e47ca5966c1ffee6ab006ee6fa7f098", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_sslmessages.t", + "type": "file", + "name": "70-test_sslmessages.t", + "base_name": "70-test_sslmessages", + "extension": ".t", + "size": 5199, + "date": "2017-02-16", + "sha1": "ba94efa6c605cbb27f731f8e1b6fc0dfbff15d73", + "md5": "6b353b6a3de6a90ae3f4dec0cf6032d9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_sslrecords.t", + "type": "file", + "name": "70-test_sslrecords.t", + "base_name": "70-test_sslrecords", + "extension": ".t", + "size": 11289, + "date": "2017-02-16", + "sha1": "15cb3335cda9c0e13ea3b46293ad3f7d63614bbc", + "md5": "730c29c3834137401f47c8ced4c183e0", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_sslsessiontick.t", + "type": "file", + "name": "70-test_sslsessiontick.t", + "base_name": "70-test_sslsessiontick", + "extension": ".t", + "size": 8954, + "date": "2017-02-16", + "sha1": "1f054ff144fa75227cd3b4e760dc24f15456e2d1", + "md5": "f9182289db59ab29c1e7f40d43a3a605", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_sslskewith0p.t", + "type": "file", + "name": "70-test_sslskewith0p.t", + "base_name": "70-test_sslskewith0p", + "extension": ".t", + "size": 1944, + "date": "2017-02-16", + "sha1": "0104f0c569b4e619660a63f4e5b2b3a4443f1f47", + "md5": "cdb8788ab12b8c6a7be410e3c0c71bb4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_sslvertol.t", + "type": "file", + "name": "70-test_sslvertol.t", + "base_name": "70-test_sslvertol", + "extension": ".t", + "size": 2170, + "date": "2017-02-16", + "sha1": "cd9006809939a9492161999ced90bff2e34a9325", + "md5": "d5ef194144b0a826e642437796dde5ab", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_tlsextms.t", + "type": "file", + "name": "70-test_tlsextms.t", + "base_name": "70-test_tlsextms", + "extension": ".t", + "size": 7025, + "date": "2017-02-16", + "sha1": "5aa27464887032baa4586791b5f177f66960334b", + "md5": "5dab60309c2a1cb2542a80203552584e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/70-test_verify_extra.t", + "type": "file", + "name": "70-test_verify_extra.t", + "base_name": "70-test_verify_extra", + "extension": ".t", + "size": 643, + "date": "2017-02-16", + "sha1": "fa4c442c3afbb4d40bdb97b6c8d144b55f893a6b", + "md5": "af3b1ecb800d119174378bc9221a02fa", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_ca.t", + "type": "file", + "name": "80-test_ca.t", + "base_name": "80-test_ca", + "extension": ".t", + "size": 1681, + "date": "2017-02-16", + "sha1": "134d07d6399ec7c7f75b9458ff4b9a6abcc5ce26", + "md5": "3592e9d432614acb7f9cc63cd1a646e0", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_cipherlist.t", + "type": "file", + "name": "80-test_cipherlist.t", + "base_name": "80-test_cipherlist", + "extension": ".t", + "size": 789, + "date": "2017-02-16", + "sha1": "475ceea77603fe4511d91947b004e8336f6782d9", + "md5": "48764d345fbbb13b9b53b97ca1323d87", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_cms.t", + "type": "file", + "name": "80-test_cms.t", + "base_name": "80-test_cms", + "extension": ".t", + "size": 18459, + "date": "2017-02-16", + "sha1": "5e5e64413bd6654fa94c8aafb088792322f4d39a", + "md5": "e36176400fff55f4d662319f71d57ff6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_ct.t", + "type": "file", + "name": "80-test_ct.t", + "base_name": "80-test_ct", + "extension": ".t", + "size": 642, + "date": "2017-02-16", + "sha1": "c0a91e326bc0b38940b4e2cb94074fc049f8d35d", + "md5": "02ee06022e474cf23a4670ab399a1f1e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_dane.t", + "type": "file", + "name": "80-test_dane.t", + "base_name": "80-test_dane", + "extension": ".t", + "size": 795, + "date": "2017-02-16", + "sha1": "b53314e86f7b1114bc9fdc7933a1d47a927a6728", + "md5": "2e20148070f88b45d5ce0f292225c2d5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_dtls.t", + "type": "file", + "name": "80-test_dtls.t", + "base_name": "80-test_dtls", + "extension": ".t", + "size": 707, + "date": "2017-02-16", + "sha1": "a029f62bc2b894466c72e8f8e2604e9df1a45425", + "md5": "2b4b3b8e7f9ba93d026e80fea56f3e0c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_dtlsv1listen.t", + "type": "file", + "name": "80-test_dtlsv1listen.t", + "base_name": "80-test_dtlsv1listen", + "extension": ".t", + "size": 431, + "date": "2017-02-16", + "sha1": "2b4641316ed9834416e1d4cbdf71926dc1b6d6bd", + "md5": "ffd38cc2d50bc3444ecb7676e1825244", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_ocsp.t", + "type": "file", + "name": "80-test_ocsp.t", + "base_name": "80-test_ocsp", + "extension": ".t", + "size": 7895, + "date": "2017-02-16", + "sha1": "e47bd0f851384d80e086346a3a74a09e2e5eea29", + "md5": "019f09849abf863e222a704f1fea780f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_pkcs12.t", + "type": "file", + "name": "80-test_pkcs12.t", + "base_name": "80-test_pkcs12", + "extension": ".t", + "size": 2178, + "date": "2017-02-16", + "sha1": "bd4fa8865b67c34350c0ed77e1b1425b60d32c20", + "md5": "c92d928ac579dd6eb27c2d329b9030dc", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_ssl_new.t", + "type": "file", + "name": "80-test_ssl_new.t", + "base_name": "80-test_ssl_new", + "extension": ".t", + "size": 4558, + "date": "2017-02-16", + "sha1": "d414349360e5d4e596c1407bb26269c38c41133b", + "md5": "037776bc44a1123ab943c831adf9b684", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_ssl_old.t", + "type": "file", + "name": "80-test_ssl_old.t", + "base_name": "80-test_ssl_old", + "extension": ".t", + "size": 20957, + "date": "2017-02-16", + "sha1": "4da9e55253aa46dcbce4ca05feb9da57827e0772", + "md5": "1d8565368c85b1185d092fbead609a4f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_ssl_test_ctx.t", + "type": "file", + "name": "80-test_ssl_test_ctx.t", + "base_name": "80-test_ssl_test_ctx", + "extension": ".t", + "size": 601, + "date": "2017-02-16", + "sha1": "3bf19d9ef6a1a70708db8eb331d33392867e8f4d", + "md5": "34458f7fd183166615919f65dc4c4a47", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_sslcorrupt.t", + "type": "file", + "name": "80-test_sslcorrupt.t", + "base_name": "80-test_sslcorrupt", + "extension": ".t", + "size": 718, + "date": "2017-02-16", + "sha1": "02a4d443cbeafca1bee102c939fb57ff0ea90875", + "md5": "cc02eef8ec74a301528652a77e3317bd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_tsa.t", + "type": "file", + "name": "80-test_tsa.t", + "base_name": "80-test_tsa", + "extension": ".t", + "size": 7367, + "date": "2017-02-16", + "sha1": "c4e0313bbe7b8a89f229ff4ab48f4cf8e90b20f9", + "md5": "642ed9f3a1dc9b174bf8906a7c098b9e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 24, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 24, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 24, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/80-test_x509aux.t", + "type": "file", + "name": "80-test_x509aux.t", + "base_name": "80-test_x509aux", + "extension": ".t", + "size": 948, + "date": "2017-02-16", + "sha1": "8a5cca09dfcf04c6573d7ff74485477208c46b71", + "md5": "730ff9fb5e4d4be8ebfce5bc216bf7ad", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_async.t", + "type": "file", + "name": "90-test_async.t", + "base_name": "90-test_async", + "extension": ".t", + "size": 420, + "date": "2017-02-16", + "sha1": "8a4a8d2e99a104b1295549b994db629853178f6a", + "md5": "b69ff7ce890d8aa44dfb996205109c94", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_bio_enc.t", + "type": "file", + "name": "90-test_bio_enc.t", + "base_name": "90-test_bio_enc", + "extension": ".t", + "size": 427, + "date": "2017-02-16", + "sha1": "0fdfefbf9b51de5d6a1e4d7f93248214b097a2cc", + "md5": "ad07d3d8fb9fb874aa8a2dd536419b40", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_bioprint.t", + "type": "file", + "name": "90-test_bioprint.t", + "base_name": "90-test_bioprint", + "extension": ".t", + "size": 412, + "date": "2017-02-16", + "sha1": "77847e0fe7354fd4e687da3b9959e1f902e47ab3", + "md5": "ce5dc678fc9c741c939c5680973d6c60", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_constant_time.t", + "type": "file", + "name": "90-test_constant_time.t", + "base_name": "90-test_constant_time", + "extension": ".t", + "size": 428, + "date": "2017-02-16", + "sha1": "8fa27bd7cc52da5b53204a24c4ee49be8d32d74c", + "md5": "54d36f26f9627d858bbd459a3cc0ae1a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_fuzz.t", + "type": "file", + "name": "90-test_fuzz.t", + "base_name": "90-test_fuzz", + "extension": ".t", + "size": 1119, + "date": "2017-02-16", + "sha1": "6f5653fcebc70a878666b7fc64982941d1b402e1", + "md5": "e1f0338051d1a8718c9c6ed5cf9098e7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_gmdiff.t", + "type": "file", + "name": "90-test_gmdiff.t", + "base_name": "90-test_gmdiff", + "extension": ".t", + "size": 413, + "date": "2017-02-16", + "sha1": "35d30f700e54c81e132cbfbcc85ef78f29b14920", + "md5": "01570df7e20892733d8ae0c6fa9ae064", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_heartbeat.t", + "type": "file", + "name": "90-test_heartbeat.t", + "base_name": "90-test_heartbeat", + "extension": ".t", + "size": 434, + "date": "2017-02-16", + "sha1": "5679b06b9cd84dadc17caa91df18616d2a252718", + "md5": "7171cab509de31b654ed743184bfddca", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_ige.t", + "type": "file", + "name": "90-test_ige.t", + "base_name": "90-test_ige", + "extension": ".t", + "size": 407, + "date": "2017-02-16", + "sha1": "9f7f0e0db11423309e9bd6425254606f1ed6241e", + "md5": "bc8b75a8d2ca5a2693bb96902df805bd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_memleak.t", + "type": "file", + "name": "90-test_memleak.t", + "base_name": "90-test_memleak", + "extension": ".t", + "size": 522, + "date": "2017-02-16", + "sha1": "f0a7b2d89580a2b66e5648f8dd9e11565e8e903a", + "md5": "78a058fbfe83e7f9c5416dbf0003a1cc", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_p5_crpt2.t", + "type": "file", + "name": "90-test_p5_crpt2.t", + "base_name": "90-test_p5_crpt2", + "extension": ".t", + "size": 418, + "date": "2017-02-16", + "sha1": "3fb7fb6ee06f1cc9957939b18d12eed1d248a9bd", + "md5": "2d87ac4d67d509f27ed03cc7c118e2fe", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_secmem.t", + "type": "file", + "name": "90-test_secmem.t", + "base_name": "90-test_secmem", + "extension": ".t", + "size": 413, + "date": "2017-02-16", + "sha1": "eeca7d59bc609304395a8d26aaab1d1bbb070d40", + "md5": "bf47edbe881f24986f439898add230b3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_shlibload.t", + "type": "file", + "name": "90-test_shlibload.t", + "base_name": "90-test_shlibload", + "extension": ".t", + "size": 1127, + "date": "2017-02-16", + "sha1": "c610c1a5f54c754be9adf9439bb232220c529f15", + "md5": "b121df27d35ebe6bc1221819d4e4c202", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_srp.t", + "type": "file", + "name": "90-test_srp.t", + "base_name": "90-test_srp", + "extension": ".t", + "size": 414, + "date": "2017-02-16", + "sha1": "f8a1f6e7e5fa834cff9d29b5b83fde7ac6406263", + "md5": "6a9698c69c4ad27c531fa50e576a8352", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_sslapi.t", + "type": "file", + "name": "90-test_sslapi.t", + "base_name": "90-test_sslapi", + "extension": ".t", + "size": 733, + "date": "2017-02-16", + "sha1": "668bb5e89e9bda54d63edda404966f2d87369db3", + "md5": "57325c8e24d4396513856c99bc21ffd7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_threads.t", + "type": "file", + "name": "90-test_threads.t", + "base_name": "90-test_threads", + "extension": ".t", + "size": 415, + "date": "2017-02-16", + "sha1": "aa73b800e023844d9360221de0c1a2f0ce7223db", + "md5": "a059172609b4017cb9b557c992ae5172", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/90-test_v3name.t", + "type": "file", + "name": "90-test_v3name.t", + "base_name": "90-test_v3name", + "extension": ".t", + "size": 413, + "date": "2017-02-16", + "sha1": "c2e230a0c70c39f482c7ac875ac324dcea8f5c28", + "md5": "0d45edca975558fd4ee8eb887fe6be13", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/bc.pl", + "type": "file", + "name": "bc.pl", + "base_name": "bc", + "extension": ".pl", + "size": 3118, + "date": "2017-02-16", + "sha1": "53749aa309dd012afc1eca32f4e7f1bf4401b123", + "md5": "441e92483ffd08e2555683c0284640d2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/recipes/tconversion.pl", + "type": "file", + "name": "tconversion.pl", + "base_name": "tconversion", + "extension": ".pl", + "size": 2883, + "date": "2017-02-16", + "sha1": "2fd55c562a265da7e19ce857e8665fe956ea6d96", + "md5": "39eb613f2143e3b2c16a568183adc0d9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs", + "type": "directory", + "name": "smime-certs", + "base_name": "smime-certs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 0, + "size_count": 30433, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/ca.cnf", + "type": "file", + "name": "ca.cnf", + "base_name": "ca", + "extension": ".cnf", + "size": 1648, + "date": "2017-02-16", + "sha1": "702d7bd05ada6355620ace60e9b2cd4e0a1b3757", + "md5": "bc780a560ba5465b98d448c0e15e64b5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/mksmime-certs.sh", + "type": "file", + "name": "mksmime-certs.sh", + "base_name": "mksmime-certs", + "extension": ".sh", + "size": 3479, + "date": "2017-02-16", + "sha1": "f0836544f91df05dfd5352abd4b74b1d5c4dabaa", + "md5": "8b4909c39d10c56842559d12e47ace4e", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smdh.pem", + "type": "file", + "name": "smdh.pem", + "base_name": "smdh", + "extension": ".pem", + "size": 1957, + "date": "2017-02-16", + "sha1": "46c0385c885e4937e29136c487e17f286599e2c3", + "md5": "f75070af193d80a6d0a9e306308391e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smdsa1.pem", + "type": "file", + "name": "smdsa1.pem", + "base_name": "smdsa1", + "extension": ".pem", + "size": 2879, + "date": "2017-02-16", + "sha1": "7601a6ca4a6261a7f87f0e53d9b9d7487f23730c", + "md5": "c3763fdf879d18a7daaeb0d83b8b6aba", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smdsa2.pem", + "type": "file", + "name": "smdsa2.pem", + "base_name": "smdsa2", + "extension": ".pem", + "size": 2879, + "date": "2017-02-16", + "sha1": "8f673f67328bac7ebe7fa5f61fb74a42ef239454", + "md5": "c8b02a6eb28c301155f162a075703785", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smdsa3.pem", + "type": "file", + "name": "smdsa3.pem", + "base_name": "smdsa3", + "extension": ".pem", + "size": 2879, + "date": "2017-02-16", + "sha1": "ab4000cd117af90ad70afb1ff63af87d32efcaa7", + "md5": "75debabdb80528864b8b2840beef00a2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smdsap.pem", + "type": "file", + "name": "smdsap.pem", + "base_name": "smdsap", + "extension": ".pem", + "size": 455, + "date": "2017-02-16", + "sha1": "1a511707478e66e59ff17b66714cbc6a6b09cc8f", + "md5": "08cefbb36e3a6ba2e784eedca311b6de", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smec1.pem", + "type": "file", + "name": "smec1.pem", + "base_name": "smec1", + "extension": ".pem", + "size": 1214, + "date": "2017-02-16", + "sha1": "da33c70c32132d434bcde50cb7fbc8f774990a0e", + "md5": "c36fdfa77d7451f77f8097fe85574cad", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smec2.pem", + "type": "file", + "name": "smec2.pem", + "base_name": "smec2", + "extension": ".pem", + "size": 1231, + "date": "2017-02-16", + "sha1": "94dce8f10defc6a856c39cea9a1409187800a93e", + "md5": "b4cefadecd233d0d6db397ad119bf2ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smroot.pem", + "type": "file", + "name": "smroot.pem", + "base_name": "smroot", + "extension": ".pem", + "size": 2953, + "date": "2017-02-16", + "sha1": "0fb9b3ad55997ffcfe57f2ceb0eeafd226496a25", + "md5": "af32f967ab33a40dd103b9ab9c3e23c8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smrsa1.pem", + "type": "file", + "name": "smrsa1.pem", + "base_name": "smrsa1", + "extension": ".pem", + "size": 2953, + "date": "2017-02-16", + "sha1": "996d4e44566b4b2f663b8baeb28ff734fb807038", + "md5": "1fda00cc6f649a36805ab18d4693496f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smrsa2.pem", + "type": "file", + "name": "smrsa2.pem", + "base_name": "smrsa2", + "extension": ".pem", + "size": 2953, + "date": "2017-02-16", + "sha1": "cc5db75f219e2ae842482bbf35464a3fe0c4d7e4", + "md5": "b1e8ec208a461372942e7863738a74bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/smime-certs/smrsa3.pem", + "type": "file", + "name": "smrsa3.pem", + "base_name": "smrsa3", + "extension": ".pem", + "size": 2953, + "date": "2017-02-16", + "sha1": "d24e8b80ff5d47049a7fdac477cc566415de8864", + "md5": "fb294a639234e4926763dd4a0ecbb49e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests", + "type": "directory", + "name": "ssl-tests", + "base_name": "ssl-tests", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 39, + "dirs_count": 0, + "size_count": 540391, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/01-simple.conf", + "type": "file", + "name": "01-simple.conf", + "base_name": "01-simple", + "extension": ".conf", + "size": 1783, + "date": "2017-02-16", + "sha1": "6354af65cf4bc6a98511d594304824ff17107984", + "md5": "78730ab8e955d911b1b8d8d2f857d925", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/01-simple.conf.in", + "type": "file", + "name": "01-simple.conf.in", + "base_name": "01-simple.conf", + "extension": ".in", + "size": 1167, + "date": "2017-02-16", + "sha1": "9a44aa9521b32b43309e66bb4349de3d979ed43f", + "md5": "1be2875bf04a132fcef3ae1a1f7fea69", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/02-protocol-version.conf", + "type": "file", + "name": "02-protocol-version.conf", + "base_name": "02-protocol-version", + "extension": ".conf", + "size": 244082, + "date": "2017-02-16", + "sha1": "d5cd892a5e5b0b37802a06100e9d5114f92b5bf2", + "md5": "f0209e8931a472e9e678d24d98ec1233", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/02-protocol-version.conf.in", + "type": "file", + "name": "02-protocol-version.conf.in", + "base_name": "02-protocol-version.conf", + "extension": ".in", + "size": 490, + "date": "2017-02-16", + "sha1": "b0e56769007fd1d17ce28a139280915be4a16517", + "md5": "12a56dcecf619470ca5323cc9fb8f20a", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/03-custom_verify.conf", + "type": "file", + "name": "03-custom_verify.conf", + "base_name": "03-custom_verify", + "extension": ".conf", + "size": 5976, + "date": "2017-02-16", + "sha1": "51d1b8b310425b53ff968538188db6ad125329f7", + "md5": "908a59d92f091911a7617b0cc2efadf0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/03-custom_verify.conf.in", + "type": "file", + "name": "03-custom_verify.conf.in", + "base_name": "03-custom_verify.conf", + "extension": ".in", + "size": 3948, + "date": "2017-02-16", + "sha1": "203c6bdd25c511f57338b92e0d279cc5e8c786d7", + "md5": "3ec400262c7a1bb1b05d83a785675ba0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/04-client_auth.conf", + "type": "file", + "name": "04-client_auth.conf", + "base_name": "04-client_auth", + "extension": ".conf", + "size": 15840, + "date": "2017-02-16", + "sha1": "86d63884615b5ee381e9d886d67a4c60cd2c227f", + "md5": "db458c1691b9a456bdabd5b4f18a5af9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/04-client_auth.conf.in", + "type": "file", + "name": "04-client_auth.conf.in", + "base_name": "04-client_auth.conf", + "extension": ".in", + "size": 4391, + "date": "2017-02-16", + "sha1": "eba3358f4936dc137b0ee03733244486f532997a", + "md5": "9e00b1cb2ddf2518eeaeaad09b6ee1aa", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/05-sni.conf", + "type": "file", + "name": "05-sni.conf", + "base_name": "05-sni", + "extension": ".conf", + "size": 5418, + "date": "2017-02-16", + "sha1": "c91964759759062e56a5249f7d89541404b8499b", + "md5": "7b09867f8ea55ab282f1f8cfe484af35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/05-sni.conf.in", + "type": "file", + "name": "05-sni.conf.in", + "base_name": "05-sni.conf", + "extension": ".in", + "size": 2850, + "date": "2017-02-16", + "sha1": "1fce91c3b5d8715950cafe8504cac78fc439f3be", + "md5": "3bdb28c00d9fc3124b832e556263910d", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/06-sni-ticket.conf", + "type": "file", + "name": "06-sni-ticket.conf", + "base_name": "06-sni-ticket", + "extension": ".conf", + "size": 19043, + "date": "2017-02-16", + "sha1": "5be7e0491a78d93c7367e5b5e37ecb29135b4f05", + "md5": "584d697a7ef286c87606ed182ac5ab03", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/06-sni-ticket.conf.in", + "type": "file", + "name": "06-sni-ticket.conf.in", + "base_name": "06-sni-ticket.conf", + "extension": ".in", + "size": 2684, + "date": "2017-02-16", + "sha1": "bbb87ab789c143eca5c675df83d554826b78214c", + "md5": "141b0aeb2e7d931a0bd45d9fb572f585", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/07-dtls-protocol-version.conf", + "type": "file", + "name": "07-dtls-protocol-version.conf", + "base_name": "07-dtls-protocol-version", + "extension": ".conf", + "size": 43556, + "date": "2017-02-16", + "sha1": "9fa0b2d28d0fc5212bd886bacfa411e1ed8e2ae8", + "md5": "ceeb32aea8cc8a86bb7fc4ca27d1d575", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/07-dtls-protocol-version.conf.in", + "type": "file", + "name": "07-dtls-protocol-version.conf.in", + "base_name": "07-dtls-protocol-version.conf", + "extension": ".in", + "size": 492, + "date": "2017-02-16", + "sha1": "b263b254440ce032233aea7a0629893db4360876", + "md5": "fea942900c3840bf007467b13e7cc28b", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/08-npn.conf", + "type": "file", + "name": "08-npn.conf", + "base_name": "08-npn", + "extension": ".conf", + "size": 24132, + "date": "2017-02-16", + "sha1": "d73764a03d3fc0c65b6870729d2c280b53f88706", + "md5": "184020cae24a7750db8d963c2e6c9a0c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/08-npn.conf.in", + "type": "file", + "name": "08-npn.conf.in", + "base_name": "08-npn.conf", + "extension": ".in", + "size": 10411, + "date": "2017-02-16", + "sha1": "d80f1bdb9c1768ac2e6f868fd20e7613d2a2ea37", + "md5": "cde83aea6270a60981e772b5cba31d67", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/09-alpn.conf", + "type": "file", + "name": "09-alpn.conf", + "base_name": "09-alpn", + "extension": ".conf", + "size": 18604, + "date": "2017-02-16", + "sha1": "a8714db4b64f49430ac0586e952078cc14823696", + "md5": "a5e690a084246f18386e267bb28fe2df", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/09-alpn.conf.in", + "type": "file", + "name": "09-alpn.conf.in", + "base_name": "09-alpn.conf", + "extension": ".in", + "size": 7962, + "date": "2017-02-16", + "sha1": "08c3908ced7f71624031f3412c136a35abc40fd0", + "md5": "deaed7a39cc1ec93118c0e826e33c9c4", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/10-resumption.conf", + "type": "file", + "name": "10-resumption.conf", + "base_name": "10-resumption", + "extension": ".conf", + "size": 31378, + "date": "2017-02-16", + "sha1": "1e42fcbb44fec86d672bc6e48ada2aae407fedad", + "md5": "44a297d420f0d6d86e58eb2da6d0edc0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/10-resumption.conf.in", + "type": "file", + "name": "10-resumption.conf.in", + "base_name": "10-resumption.conf", + "extension": ".in", + "size": 506, + "date": "2017-02-16", + "sha1": "dd1fed549f01a769462fd6d8286aaba252cd792b", + "md5": "f08c9f332a26c2aab55dec99f6125f1f", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/11-dtls_resumption.conf", + "type": "file", + "name": "11-dtls_resumption.conf", + "base_name": "11-dtls_resumption", + "extension": ".conf", + "size": 14174, + "date": "2017-02-16", + "sha1": "476589a7bdd0338a72b78b9e3a95829ea2ed4c8b", + "md5": "a63c72af3d437b9e3137ab3d87e0f4bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/11-dtls_resumption.conf.in", + "type": "file", + "name": "11-dtls_resumption.conf.in", + "base_name": "11-dtls_resumption.conf", + "extension": ".in", + "size": 507, + "date": "2017-02-16", + "sha1": "92abcc8c13e36e1557da9e64ecb191cf9a7a0cb0", + "md5": "66c4241132e1b9408baed79040626b34", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/12-ct.conf", + "type": "file", + "name": "12-ct.conf", + "base_name": "12-ct", + "extension": ".conf", + "size": 3347, + "date": "2017-02-16", + "sha1": "8af519a5905eaa2454acfb592cb9b00b55371f7e", + "md5": "fea998922119b0c5dbb5b09563168927", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/12-ct.conf.in", + "type": "file", + "name": "12-ct.conf.in", + "base_name": "12-ct.conf", + "extension": ".in", + "size": 1641, + "date": "2017-02-16", + "sha1": "0a2488cd7fcec3295326752056b43fafbdcea23a", + "md5": "d1e8a5616715b26d387e0b035a515094", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/13-fragmentation.conf", + "type": "file", + "name": "13-fragmentation.conf", + "base_name": "13-fragmentation", + "extension": ".conf", + "size": 10941, + "date": "2017-02-16", + "sha1": "99705237f3c51b32727aafbfdc0b88a3a04d08db", + "md5": "5ae1f9abf9a291f757e42230d6e57bb4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/13-fragmentation.conf.in", + "type": "file", + "name": "13-fragmentation.conf.in", + "base_name": "13-fragmentation.conf", + "extension": ".in", + "size": 4655, + "date": "2017-02-16", + "sha1": "7b0cd7d107258eeb2a9246e7a64ce9ef56b9b361", + "md5": "bc8e1d4bf4692b7ae718c36ceeedf3ba", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/14-curves.conf", + "type": "file", + "name": "14-curves.conf", + "base_name": "14-curves", + "extension": ".conf", + "size": 18210, + "date": "2017-02-16", + "sha1": "30ee0dd1acbe07205a17ce224c3fff4e3da94a8d", + "md5": "1056a3e5cf5053ff59a157f891c7ed14", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/14-curves.conf.in", + "type": "file", + "name": "14-curves.conf.in", + "base_name": "14-curves.conf", + "extension": ".in", + "size": 1171, + "date": "2017-02-16", + "sha1": "a6be8981af507f66e6ba0c11572a9f41bb0ac056", + "md5": "d400acbd8d63470416f84f184c3d6239", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/15-certstatus.conf", + "type": "file", + "name": "15-certstatus.conf", + "base_name": "15-certstatus", + "extension": ".conf", + "size": 1365, + "date": "2017-02-16", + "sha1": "4a795b254a43f9d7eeb344ea6f5db5f506154a12", + "md5": "d4955c9febdcfc4123bfbb3cf87f1f26", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/15-certstatus.conf.in", + "type": "file", + "name": "15-certstatus.conf.in", + "base_name": "15-certstatus.conf", + "extension": ".in", + "size": 1015, + "date": "2017-02-16", + "sha1": "20630f2c0bd5c1fef2f06b2df9a479022dce7d4a", + "md5": "d7d5d729faf5ec03a3c01569ef3c9b98", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/16-certstatus.conf", + "type": "file", + "name": "16-certstatus.conf", + "base_name": "16-certstatus", + "extension": ".conf", + "size": 0, + "date": "2017-02-16", + "sha1": null, + "md5": null, + "mime_type": "inode/x-empty", + "file_type": "empty", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/16-dtls-certstatus.conf", + "type": "file", + "name": "16-dtls-certstatus.conf", + "base_name": "16-dtls-certstatus", + "extension": ".conf", + "size": 1367, + "date": "2017-02-16", + "sha1": "4714f745b8ab9a544b1d83c808877803333fdf43", + "md5": "b950387a3d7202a2418e030a9c8651a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/16-dtls-certstatus.conf.in", + "type": "file", + "name": "16-dtls-certstatus.conf.in", + "base_name": "16-dtls-certstatus.conf", + "extension": ".in", + "size": 1022, + "date": "2017-02-16", + "sha1": "b895f45cbee8c19f5d3b5320d4df5a0799053edf", + "md5": "36981c28a6136e500e2da3ccf2ebb023", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/17-renegotiate.conf", + "type": "file", + "name": "17-renegotiate.conf", + "base_name": "17-renegotiate", + "extension": ".conf", + "size": 8599, + "date": "2017-02-16", + "sha1": "47495fd4882a3d4b77508e3f582f26b041ed4da3", + "md5": "742b9bec9ed7d57bdd8819cb7ab55170", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/17-renegotiate.conf.in", + "type": "file", + "name": "17-renegotiate.conf.in", + "base_name": "17-renegotiate.conf", + "extension": ".in", + "size": 5397, + "date": "2017-02-16", + "sha1": "cc25291bc342f916363868cae2434e63e626b1f9", + "md5": "e08de444877cbd0c505194a9aff5712d", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/18-dtls-renegotiate.conf", + "type": "file", + "name": "18-dtls-renegotiate.conf", + "base_name": "18-dtls-renegotiate", + "extension": ".conf", + "size": 7639, + "date": "2017-02-16", + "sha1": "951e457b42d4ba2d366693a458e1460fa85ddd29", + "md5": "108534e51572ba60250da46eebdb5125", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/18-dtls-renegotiate.conf.in", + "type": "file", + "name": "18-dtls-renegotiate.conf.in", + "base_name": "18-dtls-renegotiate.conf", + "extension": ".in", + "size": 5317, + "date": "2017-02-16", + "sha1": "213b41ca58a14e1b26d12b5254552921bc8e8ae0", + "md5": "a799869e8aed6ccbad8bee5adbcc4a5f", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/protocol_version.pm", + "type": "file", + "name": "protocol_version.pm", + "base_name": "protocol_version", + "extension": ".pm", + "size": 8529, + "date": "2017-02-16", + "sha1": "7373b7c767b8810d8b96ccf03a5f445866f3d042", + "md5": "ccaa3e8bb243a4d3a4dcf7dc847a9636", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/ssl-tests/ssltests_base.pm", + "type": "file", + "name": "ssltests_base.pm", + "base_name": "ssltests_base", + "extension": ".pm", + "size": 782, + "date": "2017-02-16", + "sha1": "29c3c20a49c491f5edf83e550e7b392dde36f586", + "md5": "4098989e7a2dcb920d1db629a24b29cb", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testlib", + "type": "directory", + "name": "testlib", + "base_name": "testlib", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 2, + "size_count": 34238, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testlib/OpenSSL", + "type": "directory", + "name": "OpenSSL", + "base_name": "OpenSSL", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 1, + "size_count": 34238, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testlib/OpenSSL/Test.pm", + "type": "file", + "name": "Test.pm", + "base_name": "Test", + "extension": ".pm", + "size": 27102, + "date": "2017-02-16", + "sha1": "08d344b86eaa879b6bae31f9939d2a8ad91cba31", + "md5": "4e32e7ae60edff3c9bc58a19ea4439d3", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testlib/OpenSSL/Test", + "type": "directory", + "name": "Test", + "base_name": "Test", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 7136, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testlib/OpenSSL/Test/Simple.pm", + "type": "file", + "name": "Simple.pm", + "base_name": "Simple", + "extension": ".pm", + "size": 1967, + "date": "2017-02-16", + "sha1": "235d4af3a41533f1bccf15663e555d229ed4f482", + "md5": "1fc754cd556094a1bbe0213b356998fc", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/test/testlib/OpenSSL/Test/Utils.pm", + "type": "file", + "name": "Utils.pm", + "base_name": "Utils", + "extension": ".pm", + "size": 5169, + "date": "2017-02-16", + "sha1": "15c2c22981e79227c6643f91e0fae8935ab10e5a", + "md5": "3308956636919510a4c3ec3791a04b71", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/tools", + "type": "directory", + "name": "tools", + "base_name": "tools", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 6422, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/tools/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 209, + "date": "2017-02-16", + "sha1": "4816112511b19b0407d6a795970f184cacdca249", + "md5": "86a0b8345f945a948efda2c1d0b1246d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/tools/c_rehash.in", + "type": "file", + "name": "c_rehash.in", + "base_name": "c_rehash", + "extension": ".in", + "size": 6213, + "date": "2017-02-16", + "sha1": "9ea451bc69bc407167bd6afd5ee61b68f5d36167", + "md5": "8405ef0862c932eacd7b9ec5801e3e86", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util", + "type": "directory", + "name": "util", + "base_name": "util", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 35, + "dirs_count": 4, + "size_count": 539417, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 305, + "date": "2017-02-16", + "sha1": "b044a65597ba2297b31c8024bfe9f98c6a020466", + "md5": "1f8ac7d81642b2ac35613afcf05ce686", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/ck_errf.pl", + "type": "file", + "name": "ck_errf.pl", + "base_name": "ck_errf", + "extension": ".pl", + "size": 1541, + "date": "2017-02-16", + "sha1": "f9b74b612ef46968b1b826f393d9b31f5d858844", + "md5": "089b3becca339d2af2749fe10ccab23a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/copy.pl", + "type": "file", + "name": "copy.pl", + "base_name": "copy", + "extension": ".pl", + "size": 1416, + "date": "2017-02-16", + "sha1": "671cf5165246d57f58878011d5c6c9e636649f62", + "md5": "c0e68d43fcaece674e47a9640310824b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/dofile.pl", + "type": "file", + "name": "dofile.pl", + "base_name": "dofile", + "extension": ".pl", + "size": 5940, + "date": "2017-02-16", + "sha1": "6e5b032c40c9b67fd3c7715c45b09b1a4165f96e", + "md5": "5fdc549af0bdd260f65cfde8a6aab309", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/find-doc-nits.pl", + "type": "file", + "name": "find-doc-nits.pl", + "base_name": "find-doc-nits", + "extension": ".pl", + "size": 5928, + "date": "2017-02-16", + "sha1": "a9115b98e4599a12624ed4e2002aa3cbb4c4a972", + "md5": "17fafde310456bb20e63b3e41cc91f6f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "/Copyright . The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 130, + "end_line": 136 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/find-undoc-api.pl", + "type": "file", + "name": "find-undoc-api.pl", + "base_name": "find-undoc-api", + "extension": ".pl", + "size": 1829, + "date": "2017-02-16", + "sha1": "7ee6e6b2cd8600ebbd115b3c0ac53b2c21767959", + "md5": "bb87875ff12fd0a54cb0865fb115b29f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/find-unused-errs", + "type": "file", + "name": "find-unused-errs", + "base_name": "find-unused-errs", + "extension": "", + "size": 1022, + "date": "2017-02-16", + "sha1": "6da4f44d6b6153ecf9a461110bf9be96d7d9d5c4", + "md5": "53cdc58b5e8099a007c01e3e204acfca", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/fipslink.pl", + "type": "file", + "name": "fipslink.pl", + "base_name": "fipslink", + "extension": ".pl", + "size": 3074, + "date": "2017-02-16", + "sha1": "65de2bcd2f83b884d88d6bc39fd64276dccb2083", + "md5": "7174ab495b92dfc338a4f43b79ec8071", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/incore", + "type": "file", + "name": "incore", + "base_name": "incore", + "extension": "", + "size": 12221, + "date": "2017-02-16", + "sha1": "17ea254033424294a2a0c4e6e874fefc9228dd4f", + "md5": "82003194b8607f453ee62da72a672246", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 14, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 170, + "end_line": 170 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/indent.pro", + "type": "file", + "name": "indent.pro", + "base_name": "indent", + "extension": ".pro", + "size": 11659, + "date": "2017-02-16", + "sha1": "008b22278da3089539c212314c3d15f441ac761f", + "md5": "665228eca634e92eef2344d32db1ec0a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/libcrypto.num", + "type": "file", + "name": "libcrypto.num", + "base_name": "libcrypto", + "extension": ".num", + "size": 298955, + "date": "2017-02-16", + "sha1": "d2066d7557bfda11a38b5ad511617b77170edcc5", + "md5": "24c58a4960e7438ced3c5339131ef361", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/libssl.num", + "type": "file", + "name": "libssl.num", + "base_name": "libssl", + "extension": ".num", + "size": 27990, + "date": "2017-02-16", + "sha1": "5e8864a846e3445c097e53410d7a93fb4d64db73", + "md5": "1c1071d3f30c00cdf5b4f319b229bb55", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/mkbuildinf.pl", + "type": "file", + "name": "mkbuildinf.pl", + "base_name": "mkbuildinf", + "extension": ".pl", + "size": 1101, + "date": "2017-02-16", + "sha1": "c70b03d399f5f2a8971dfbb4241cf5bef840bd3e", + "md5": "e515d0487093cf944881c0824abd61f5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/mkcerts.sh", + "type": "file", + "name": "mkcerts.sh", + "base_name": "mkcerts", + "extension": ".sh", + "size": 3784, + "date": "2017-02-16", + "sha1": "c42d2755666149d754af70a3c8d03afd36847e3d", + "md5": "9a584abe3de6d91cc64812f897c75386", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/mkdef.pl", + "type": "file", + "name": "mkdef.pl", + "base_name": "mkdef", + "extension": ".pl", + "size": 51718, + "date": "2017-02-16", + "sha1": "a225c14046e4d0db2457943a1c25d221d1abc17a", + "md5": "46ad72a1f21f5eaa5e69b959f3f831bd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/mkdir-p.pl", + "type": "file", + "name": "mkdir-p.pl", + "base_name": "mkdir-p", + "extension": ".pl", + "size": 974, + "date": "2017-02-16", + "sha1": "62579e7abaa7837f524b66181a7034c842e2b4c3", + "md5": "33138a31c6c5febf122e1c6a78857680", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/mkerr.pl", + "type": "file", + "name": "mkerr.pl", + "base_name": "mkerr", + "extension": ".pl", + "size": 20056, + "date": "2017-02-16", + "sha1": "54eeca71cc5c0cb483f2e9b6a405ff25c771e093", + "md5": "5590b9068ed590bfea73958e05cae595", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 432, + "end_line": 435, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 592, + "end_line": 595, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1995-$YEAR The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 430, + "end_line": 430 + }, + { + "statements": [ + "Copyright 1995-$YEAR The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 589, + "end_line": 590 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/mkrc.pl", + "type": "file", + "name": "mkrc.pl", + "base_name": "mkrc", + "extension": ".pl", + "size": 2344, + "date": "2017-02-16", + "sha1": "463580b61348dee101ebccdf1c6aa89ce32fa886", + "md5": "b2a698ae8062fcb70f64c91156e3d051", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Authors." + ], + "holders": [ + "OpenSSL Authors." + ], + "authors": [], + "start_line": 71, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/openssl-format-source", + "type": "file", + "name": "openssl-format-source", + "base_name": "openssl-format-source", + "extension": "", + "size": 5437, + "date": "2017-02-16", + "sha1": "1dfca854d8f441435490ac69b7469e2fa4123c30", + "md5": "2446b4694f4f9bb774ee8dab22971328", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/opensslwrap.sh", + "type": "file", + "name": "opensslwrap.sh", + "base_name": "opensslwrap", + "extension": ".sh", + "size": 977, + "date": "2017-02-16", + "sha1": "c2d8b92b4c681d1a58865fd64ba4bbd313c9bab5", + "md5": "ce58dfa10147eec1cefd3aaee89d1501", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/point.sh", + "type": "file", + "name": "point.sh", + "base_name": "point", + "extension": ".sh", + "size": 152, + "date": "2017-02-16", + "sha1": "3e730e92aff64047bce421f4c4e154060b16f4a2", + "md5": "9f2245ea5003b81a23605d243adbbe8d", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/process_docs.pl", + "type": "file", + "name": "process_docs.pl", + "base_name": "process_docs", + "extension": ".pl", + "size": 8149, + "date": "2017-02-16", + "sha1": "f843d13e517a02c44620e76a84ae9144a95a0da0", + "md5": "1c767d433c5fa816919cd8c7ee175f48", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 230, + "end_line": 233, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 226, + "end_line": 228 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/selftest.pl", + "type": "file", + "name": "selftest.pl", + "base_name": "selftest", + "extension": ".pl", + "size": 5028, + "date": "2017-02-16", + "sha1": "3aa92f01fecdf57736e0ae20aa7f70329d603245", + "md5": "c2cd1fa1257f003c305d7ff8aa2f591b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/shareable_image_wrap.c.in", + "type": "file", + "name": "shareable_image_wrap.c.in", + "base_name": "shareable_image_wrap.c", + "extension": ".in", + "size": 3960, + "date": "2017-02-16", + "sha1": "c870f2a6cb90b887c6c9cb1e29ba4bc4fff27549", + "md5": "f4badc7af81b9e95bcbee7bde5302c94", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/shlib_wrap.sh.in", + "type": "file", + "name": "shlib_wrap.sh.in", + "base_name": "shlib_wrap.sh", + "extension": ".in", + "size": 4219, + "date": "2017-02-16", + "sha1": "cbfc430aa0e1a085ceb475670b898b0993dc064b", + "md5": "6b3d42cd8f10ca8b5ff62f22fdb9564b", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/su-filter.pl", + "type": "file", + "name": "su-filter.pl", + "base_name": "su-filter", + "extension": ".pl", + "size": 6603, + "date": "2017-02-16", + "sha1": "d440566201bd3ac496dee6e033472707f9f78161", + "md5": "e7040bee2021eb64e816d72408fb78f2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/with_fallback.pm", + "type": "file", + "name": "with_fallback.pm", + "base_name": "with_fallback", + "extension": ".pm", + "size": 648, + "date": "2017-02-16", + "sha1": "5517df8d79775e2996a1f2e830a2916f34a39080", + "md5": "bf1434f67d54184097dce7cb176416eb", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/perl", + "type": "directory", + "name": "perl", + "base_name": "perl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 2, + "size_count": 3907, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/perl/OpenSSL", + "type": "directory", + "name": "OpenSSL", + "base_name": "OpenSSL", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 3907, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/perl/OpenSSL/Util", + "type": "directory", + "name": "Util", + "base_name": "Util", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3907, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/perl/OpenSSL/Util/Pod.pm", + "type": "file", + "name": "Pod.pm", + "base_name": "Pod", + "extension": ".pm", + "size": 3907, + "date": "2017-02-16", + "sha1": "f41084985b5568e39fa4e4f1b93299b48817153f", + "md5": "cbfd6ea927cc67239d89c2c9cf47cf44", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/TLSProxy", + "type": "directory", + "name": "TLSProxy", + "base_name": "TLSProxy", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 48480, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/TLSProxy/ClientHello.pm", + "type": "file", + "name": "ClientHello.pm", + "base_name": "ClientHello", + "extension": ".pm", + "size": 6098, + "date": "2017-02-16", + "sha1": "dc15365c795708c07d33f81e93b3613922f4cd67", + "md5": "cbc1585681cf50b1a49540861e16b32a", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/TLSProxy/Message.pm", + "type": "file", + "name": "Message.pm", + "base_name": "Message", + "extension": ".pm", + "size": 13265, + "date": "2017-02-16", + "sha1": "bfeec23b4531939ad2846ef8a178185f222b33b9", + "md5": "b392c67d96304c8f11578178101aa3b1", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/TLSProxy/NewSessionTicket.pm", + "type": "file", + "name": "NewSessionTicket.pm", + "base_name": "NewSessionTicket", + "extension": ".pm", + "size": 1690, + "date": "2017-02-16", + "sha1": "b1a3200c29ffc2b9d38bdf93059447512588ed6f", + "md5": "9e88bec4ca49ad6324bd8ccd0999fecc", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/TLSProxy/Proxy.pm", + "type": "file", + "name": "Proxy.pm", + "base_name": "Proxy", + "extension": ".pm", + "size": 12348, + "date": "2017-02-16", + "sha1": "b04e22c8a2afcebc030d91a4cccb442d2231a51f", + "md5": "812203bc66ff9773d4c53d1438d054e8", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/TLSProxy/Record.pm", + "type": "file", + "name": "Record.pm", + "base_name": "Record", + "extension": ".pm", + "size": 7145, + "date": "2017-02-16", + "sha1": "0cfe128188b3da1033012fa17689dbe4a9ace5ec", + "md5": "1f8423dd59c3f3f2a907e846429d3ca8", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/TLSProxy/ServerHello.pm", + "type": "file", + "name": "ServerHello.pm", + "base_name": "ServerHello", + "extension": ".pm", + "size": 5195, + "date": "2017-02-16", + "sha1": "c9bb235c68c8d0afb8907c906c0cf5e9e35fe5dd", + "md5": "51465126632612d0d5c3950f1eb43ad1", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/util/TLSProxy/ServerKeyExchange.pm", + "type": "file", + "name": "ServerKeyExchange.pm", + "base_name": "ServerKeyExchange", + "extension": ".pm", + "size": 2739, + "date": "2017-02-16", + "sha1": "2673abab13c6b95387bd6c3278c86a2756464e33", + "md5": "ded97878a16a2c1fbdda517185c97f08", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS", + "type": "directory", + "name": "VMS", + "base_name": "VMS", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 12345, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS/engine.opt", + "type": "file", + "name": "engine.opt", + "base_name": "engine", + "extension": ".opt", + "size": 75, + "date": "2017-02-16", + "sha1": "5886e8c6f78e32f1516ea7642f4030d06f8884c0", + "md5": "a2684c392f3218aeb90dace5575e8f5e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS/openssl_ivp.com.in", + "type": "file", + "name": "openssl_ivp.com.in", + "base_name": "openssl_ivp.com", + "extension": ".in", + "size": 1865, + "date": "2017-02-16", + "sha1": "6e6e6820a85b72867899e236fb2044f50bfa5632", + "md5": "2a560e6cda5ff0754f26af4720110879", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS/openssl_shutdown.com.in", + "type": "file", + "name": "openssl_shutdown.com.in", + "base_name": "openssl_shutdown.com", + "extension": ".in", + "size": 1397, + "date": "2017-02-16", + "sha1": "4439fbb208d67a59749a1235d5c4d93fe8faac86", + "md5": "e886077e890b22bcc717b113dec51436", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS/openssl_startup.com.in", + "type": "file", + "name": "openssl_startup.com.in", + "base_name": "openssl_startup.com", + "extension": ".in", + "size": 4531, + "date": "2017-02-16", + "sha1": "25f9de3f5a081ea2d4bbfbea7bc784579c719585", + "md5": "d0e4f303815db020c1467f1830cc4cee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS/openssl_utils.com.in", + "type": "file", + "name": "openssl_utils.com.in", + "base_name": "openssl_utils.com", + "extension": ".in", + "size": 327, + "date": "2017-02-16", + "sha1": "3345fec233c6dc1c2c3a5100df9e145c07c6814f", + "md5": "42e840c2c48d500d10eaacdd49ab29e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS/test-includes.com", + "type": "file", + "name": "test-includes.com", + "base_name": "test-includes", + "extension": ".com", + "size": 752, + "date": "2017-02-16", + "sha1": "72619f09fccf082a9040890a158f135738412b49", + "md5": "7624134f20b0cce73cff758fe0b2e3f2", + "mime_type": "text/plain", + "file_type": "DCL command file, ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS/translatesyms.pl", + "type": "file", + "name": "translatesyms.pl", + "base_name": "translatesyms", + "extension": ".pl", + "size": 1954, + "date": "2017-02-16", + "sha1": "3d6098e2a8362898f7a59619e4e86b096ca25be2", + "md5": "1cfd4ee0df7387ba4ca6a6638dc7f4de", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0e/VMS/VMSify-conf.pl", + "type": "file", + "name": "VMSify-conf.pl", + "base_name": "VMSify-conf", + "extension": ".pl", + "size": 1444, + "date": "2017-02-16", + "sha1": "099c6406c0ccc7425cdc0d7ac4703343d480c59a", + "md5": "1e53020c0dbb0472ac0be70ae5aa6d14", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/openssl-1.1.0f.json b/tests/data/deltacode/openssl-1.1.0f.json new file mode 100644 index 00000000..c338c1a9 --- /dev/null +++ b/tests/data/deltacode/openssl-1.1.0f.json @@ -0,0 +1,146666 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post8.2a658c314", + "scancode_options": { + "input": "C:\\Users\\JMH\\Downloads\\nexB\\openssl-1.1.0f", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\openssl-1.1.0f.json", + "--license": true, + "--package": true + }, + "files_count": 2449, + "files": [ + { + "path": "openssl-1.1.0f", + "type": "directory", + "name": "openssl-1.1.0f", + "base_name": "openssl-1.1.0f", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2449, + "dirs_count": 136, + "size_count": 22790155, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/.travis-create-release.sh", + "type": "file", + "name": ".travis-create-release.sh", + "base_name": ".travis-create-release", + "extension": ".sh", + "size": 258, + "date": "2017-05-25", + "sha1": "3ebc957dc7bebabcb23eb4c67f6aee702393e779", + "md5": "aa0c76e36c486bb7d81d8bab92c3943b", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/.travis.yml", + "type": "file", + "name": ".travis.yml", + "base_name": ".travis", + "extension": ".yml", + "size": 6987, + "date": "2017-05-25", + "sha1": "8ed09ca21c165c2890ec3752976c9be129fcc931", + "md5": "e62d91c249acb950c5d1309fc3031b6f", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ACKNOWLEDGEMENTS", + "type": "file", + "name": "ACKNOWLEDGEMENTS", + "base_name": "ACKNOWLEDGEMENTS", + "extension": "", + "size": 87, + "date": "2017-05-25", + "sha1": "a427ce5add277b062790adc6d03b1721d0e97da4", + "md5": "cb0ec3e273abef55cf69e3daf0eb1aa7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/appveyor.yml", + "type": "file", + "name": "appveyor.yml", + "base_name": "appveyor", + "extension": ".yml", + "size": 955, + "date": "2017-05-25", + "sha1": "ae29b49b9393880e1a976a8f35e7bc60d4e22478", + "md5": "9877207734e5d69c3aa6fb9cd0c9ac91", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/AUTHORS", + "type": "file", + "name": "AUTHORS", + "base_name": "AUTHORS", + "extension": "", + "size": 362, + "date": "2017-05-25", + "sha1": "ffa1c3047326caa9055a5ea6c408ae44aee65619", + "md5": "cd97ff72805cc3e6c75c4cac00825f8e", + "mime_type": "text/plain", + "file_type": "ISO-8859 text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 2282, + "date": "2017-05-25", + "sha1": "7ce413e27f2f7932f7e393d07045e759be527a55", + "md5": "2d229e58b3d515daefc54200fd02a295", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/CHANGES", + "type": "file", + "name": "CHANGES", + "base_name": "CHANGES", + "extension": "", + "size": 542525, + "date": "2017-05-25", + "sha1": "7aeb8769137619d425ec15a0085ef0805233b552", + "md5": "0729acaf431981e265fa8c3019170946", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 927, + "end_line": 927, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + }, + { + "key": "apache-2.0", + "score": 25.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 2752, + "end_line": 2752, + "matched_rule": { + "identifier": "apache-2.0_48.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "proprietary", + "score": 15.0, + "short_name": "Proprietary", + "category": "Proprietary Free", + "owner": "nexB", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:proprietary", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4893, + "end_line": 4893, + "matched_rule": { + "identifier": "non-commercial4.RULE", + "license_choice": false, + "licenses": [ + "proprietary" + ] + } + }, + { + "key": "proprietary", + "score": 10.0, + "short_name": "Proprietary", + "category": "Proprietary Free", + "owner": "nexB", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:proprietary", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5525, + "end_line": 5525, + "matched_rule": { + "identifier": "proprietary_18.RULE", + "license_choice": false, + "licenses": [ + "proprietary" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 9789, + "end_line": 9789, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 11770, + "end_line": 11770, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Stephen Henson of the OpenSSL core team." + ], + "start_line": 2302, + "end_line": 2303 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov of the OpenSSL core team." + ], + "start_line": 2312, + "end_line": 2317 + }, + { + "statements": [], + "holders": [], + "authors": [ + "the OpenSSL team. (CVE-2014-3513) OpenSSL team" + ], + "start_line": 2353, + "end_line": 2355 + }, + { + "statements": [], + "holders": [], + "authors": [ + "EAP-FAST. Jouni Malinen " + ], + "start_line": 3242, + "end_line": 3243 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nils Larsch " + ], + "start_line": 5261, + "end_line": 5264 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Crispin Flowerday " + ], + "start_line": 6126, + "end_line": 6129 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Crispin Flowerday " + ], + "start_line": 6149, + "end_line": 6152 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Yngve Nysaeter Pettersen " + ], + "start_line": 6291, + "end_line": 6292 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Solar Designer " + ], + "start_line": 6334, + "end_line": 6335 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Toomas Kiisk " + ], + "start_line": 6457, + "end_line": 6458 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Douglas E. Engert " + ], + "start_line": 6679, + "end_line": 6682 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Diego Tartara " + ], + "start_line": 6924, + "end_line": 6925 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Lenka Fibikova " + ], + "start_line": 7127, + "end_line": 7129 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Massimiliano Pala " + ], + "start_line": 7412, + "end_line": 7413 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Kenneth R. Robinette " + ], + "start_line": 7422, + "end_line": 7424 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Kenneth R. Robinette " + ], + "start_line": 7436, + "end_line": 7438 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Steve Haslam " + ], + "start_line": 8053, + "end_line": 8055 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sam Varshavchik " + ], + "start_line": 8100, + "end_line": 8103 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Arne Ansper " + ], + "start_line": 8213, + "end_line": 8217 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Tom Wu " + ], + "start_line": 8237, + "end_line": 8239 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Yoram Zahavi " + ], + "start_line": 8249, + "end_line": 8251 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Izhar Shoshani Levi " + ], + "start_line": 8257, + "end_line": 8261 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Dominikus Scherkl " + ], + "start_line": 8308, + "end_line": 8310 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Rich Salz " + ], + "start_line": 8366, + "end_line": 8370 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Schneider " + ], + "start_line": 8399, + "end_line": 8400 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Jim Ellis " + ], + "start_line": 8436, + "end_line": 8437 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Adam Young " + ], + "start_line": 8440, + "end_line": 8442 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Douglas E. Engert " + ], + "start_line": 8450, + "end_line": 8452 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Markku-Juhani O. Saarinen " + ], + "start_line": 8548, + "end_line": 8551 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Heyun Zheng " + ], + "start_line": 8660, + "end_line": 8661 + }, + { + "statements": [], + "holders": [], + "authors": [ + "shige@FreeBSD.org" + ], + "start_line": 8672, + "end_line": 8674 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Massimiliano Pala " + ], + "start_line": 8728, + "end_line": 8730 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 8827, + "end_line": 8831 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Day " + ], + "start_line": 8841, + "end_line": 8844 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Reddie, Steven " + ], + "start_line": 8849, + "end_line": 8853 + }, + { + "statements": [], + "holders": [], + "authors": [ + "by_dir.c Jean-Marc Desperrier " + ], + "start_line": 8909, + "end_line": 8910 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Anders Gertz " + ], + "start_line": 8929, + "end_line": 8933 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Damien Miller " + ], + "start_line": 9017, + "end_line": 9022 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sven Heiberg " + ], + "start_line": 9178, + "end_line": 9179 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Rene Grosser " + ], + "start_line": 9522, + "end_line": 9523 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Michael Attili " + ], + "start_line": 9623, + "end_line": 9625 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Yost William " + ], + "start_line": 9628, + "end_line": 9629 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Brian Korver " + ], + "start_line": 9643, + "end_line": 9644 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andrew W. Gray " + ], + "start_line": 9754, + "end_line": 9755 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Peter Runestig " + ], + "start_line": 9763, + "end_line": 9766 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David Sacerdote " + ], + "start_line": 9788, + "end_line": 9790 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by Ulf Moller" + ], + "start_line": 10060, + "end_line": 10061 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by Steve Henson" + ], + "start_line": 10295, + "end_line": 10296 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by Steve Henson" + ], + "start_line": 10471, + "end_line": 10472 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sampo Kellomaki " + ], + "start_line": 10670, + "end_line": 10673 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Arne Ansper " + ], + "start_line": 10675, + "end_line": 10678 + }, + { + "statements": [], + "holders": [], + "authors": [ + "ian@uns.ns.ac.yu" + ], + "start_line": 10691, + "end_line": 10692 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Doug Erickson " + ], + "start_line": 10979, + "end_line": 10980 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Brian Wellington " + ], + "start_line": 11022, + "end_line": 11023 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Brien Wheeler " + ], + "start_line": 11037, + "end_line": 11041 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by Ulf Moller" + ], + "start_line": 11352, + "end_line": 11353 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Jeremy Hylton " + ], + "start_line": 12104, + "end_line": 12105 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Jun-ichiro itojun Hagino " + ], + "start_line": 12121, + "end_line": 12123 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Ulf Moller " + ], + "start_line": 12281, + "end_line": 12283 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/config", + "type": "file", + "name": "config", + "base_name": "config", + "extension": "", + "size": 28008, + "date": "2017-05-25", + "sha1": "49ee9e94a6b57596651fe241c4492e5ec00e20ff", + "md5": "d949d7d28650d213e4b4672f0a416ed9", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/config.com", + "type": "file", + "name": "config.com", + "base_name": "config", + "extension": ".com", + "size": 2507, + "date": "2017-05-25", + "sha1": "0b19cef8268e8784bf661d2460516eaed97b7c65", + "md5": "71586d012b7265bf2dafa104de2df6ef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configure", + "type": "file", + "name": "Configure", + "base_name": "Configure", + "extension": "", + "size": 92725, + "date": "2017-05-25", + "sha1": "9335121250c73adc521ad324ed9cedc5d64f2097", + "md5": "f1b5f64a680497735a1f0b2bfb75864e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable, with very long lines", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/CONTRIBUTING", + "type": "file", + "name": "CONTRIBUTING", + "base_name": "CONTRIBUTING", + "extension": "", + "size": 2600, + "date": "2017-05-25", + "sha1": "d1b30b40093370992f9baa9dd4a6835cccdf679c", + "md5": "a74ddc3425c84c47516c225be33dcb2e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 31, + "end_line": 34, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 20xx-20yy The OpenSSL Project" + ], + "holders": [ + "20xx-20yy The OpenSSL Project" + ], + "authors": [], + "start_line": 29, + "end_line": 29 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/e_os.h", + "type": "file", + "name": "e_os.h", + "base_name": "e_os", + "extension": ".h", + "size": 15399, + "date": "2017-05-25", + "sha1": "ab774d2366feee4b5268de73df890736e8072b40", + "md5": "5ebb7ba410d616a74a82e85d6cf8589f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/FAQ", + "type": "file", + "name": "FAQ", + "base_name": "FAQ", + "extension": "", + "size": 84, + "date": "2017-05-25", + "sha1": "32d2fc529184d69f61412a867ccd24cdbc161a94", + "md5": "773609f5df921846200ffdadb8183fd2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/INSTALL", + "type": "file", + "name": "INSTALL", + "base_name": "INSTALL", + "extension": "", + "size": 40589, + "date": "2017-05-25", + "sha1": "5a4fde3091417098b7fced2ff1eb3ea9030b703b", + "md5": "4d18b5b247ce005550413440c93bfb51", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Django/Jinja", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 6128, + "date": "2017-05-25", + "sha1": "c820a61003ed938baeef71c322ca306f874cbc71", + "md5": "cae6da10f4ffd9703214776d2aabce32", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 6, + "end_line": 6, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 9, + "end_line": 9, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 99.75, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 15, + "end_line": 123, + "matched_rule": { + "identifier": "openssl-ssleay.SPDX.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998-2017 The OpenSSL Project." + ], + "holders": [ + "The OpenSSL Project." + ], + "authors": [], + "start_line": 13, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "the OpenSSL Project" + ], + "start_line": 28, + "end_line": 30 + }, + { + "statements": [], + "holders": [], + "authors": [ + "the OpenSSL Project" + ], + "start_line": 42, + "end_line": 44 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Young (eay@cryptsoft.com).", + "Tim Hudson (tjh@cryptsoft.com)." + ], + "start_line": 60, + "end_line": 62 + }, + { + "statements": [ + "Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com)" + ], + "holders": [ + "Eric Young" + ], + "authors": [], + "start_line": 69, + "end_line": 70 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Young (eay@cryptsoft.com)." + ], + "start_line": 72, + "end_line": 74 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Young (eay@cryptsoft.com)" + ], + "start_line": 99, + "end_line": 104 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Tim Hudson (tjh@cryptsoft.com)" + ], + "start_line": 105, + "end_line": 106 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Makefile.shared", + "type": "file", + "name": "Makefile.shared", + "base_name": "Makefile", + "extension": ".shared", + "size": 21571, + "date": "2017-05-25", + "sha1": "970a448b0bc854df2f60f66eaf385f439e842e00", + "md5": "29c0a2ffba2ede31df397806bcde57c3", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/NEWS", + "type": "file", + "name": "NEWS", + "base_name": "NEWS", + "extension": "", + "size": 37349, + "date": "2017-05-25", + "sha1": "2322ce0eeebc74c79fdd6724b5d3fce9bd98114c", + "md5": "fca2ae93771e79cc984f4b82c37dd425", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/NOTES.DJGPP", + "type": "file", + "name": "NOTES.DJGPP", + "base_name": "NOTES", + "extension": ".DJGPP", + "size": 2095, + "date": "2017-05-25", + "sha1": "d177279f8735c9ed8fe0a5455687e0e9e78ae758", + "md5": "66772d0e37175ba95536d98b3462dc7e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/NOTES.PERL", + "type": "file", + "name": "NOTES.PERL", + "base_name": "NOTES", + "extension": ".PERL", + "size": 4580, + "date": "2017-05-25", + "sha1": "5780c5c910ff1579160b3a6edb6bbbc93ccf849b", + "md5": "c995e68aa7123d69a898b0e4ad8c769d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/NOTES.UNIX", + "type": "file", + "name": "NOTES.UNIX", + "base_name": "NOTES", + "extension": ".UNIX", + "size": 1276, + "date": "2017-05-25", + "sha1": "e3dc4e3b6f241d26e51a374d9bf95000769708ed", + "md5": "6b25ca42c5490281c11c58d3444c1143", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/NOTES.VMS", + "type": "file", + "name": "NOTES.VMS", + "base_name": "NOTES", + "extension": ".VMS", + "size": 2738, + "date": "2017-05-25", + "sha1": "270fe58256ecc7f833b965df696c60d789076e97", + "md5": "c2f574dd15622555ee81eb52157f9ff9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/NOTES.WIN", + "type": "file", + "name": "NOTES.WIN", + "base_name": "NOTES", + "extension": ".WIN", + "size": 5360, + "date": "2017-05-25", + "sha1": "ccaed26962b497e704c42301e3fc86d97c805e57", + "md5": "f09955767d513f0ff5e9cebfbcc3a5b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 3210, + "date": "2017-05-25", + "sha1": "e777f9b531497698f8b2600ecc31a64154acc4bc", + "md5": "5d2569be68b984198b933865f1b87d13", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 18, + "end_line": 18, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998-2016 The OpenSSL Project", + "Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson" + ], + "holders": [ + "The OpenSSL Project", + "Eric A. Young, Tim J. Hudson" + ], + "authors": [], + "start_line": 4, + "end_line": 6 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric A. Young and Tim J. Hudson." + ], + "start_line": 16, + "end_line": 18 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/README.ECC", + "type": "file", + "name": "README.ECC", + "base_name": "README", + "extension": ".ECC", + "size": 3552, + "date": "2017-05-25", + "sha1": "e760e86209467611ecbc0c245f56d0e8167cab04", + "md5": "affbf4223d272900feb731d667546b65", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "ActionScript 3", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/README.ENGINE", + "type": "file", + "name": "README.ENGINE", + "base_name": "README", + "extension": ".ENGINE", + "size": 16087, + "date": "2017-05-25", + "sha1": "12ae93b1acd61b57d63245c61d165a3290cd6217", + "md5": "f5cd0f89b73fc6bb69733ecf1478a156", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/README.FIPS", + "type": "file", + "name": "README.FIPS", + "base_name": "README", + "extension": ".FIPS", + "size": 61, + "date": "2017-05-25", + "sha1": "a7dd1bdcb4958e172df0550192b4260737b572fe", + "md5": "d9843adb59eee61091dd34eecf34607f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps", + "type": "directory", + "name": "apps", + "base_name": "apps", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 101, + "dirs_count": 3, + "size_count": 1401974, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/app_rand.c", + "type": "file", + "name": "app_rand.c", + "base_name": "app_rand", + "extension": ".c", + "size": 3135, + "date": "2017-05-25", + "sha1": "8e51d2ef18f692c0b33c841c1695879bc2a2fcde", + "md5": "45d0d55b31b723c7b1b56e7d49fd8cc4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/apps.c", + "type": "file", + "name": "apps.c", + "base_name": "apps", + "extension": ".c", + "size": 71209, + "date": "2017-05-25", + "sha1": "6fd413f7717f70176d515fdc7711eabde42d7dee", + "md5": "44d9056f44ab405bf88aee89426f22ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/apps.h", + "type": "file", + "name": "apps.h", + "base_name": "apps", + "extension": ".h", + "size": 22618, + "date": "2017-05-25", + "sha1": "ca385c0f33ca6a7fdd088ec627e40f13c841364d", + "md5": "9dcc12672ed04dfd8356e7d2f29fb659", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/asn1pars.c", + "type": "file", + "name": "asn1pars.c", + "base_name": "asn1pars", + "extension": ".c", + "size": 9440, + "date": "2017-05-25", + "sha1": "8d103282b9983373a4bcf0ea2169798d832f8fd2", + "md5": "f5d12c06c74ac038a537244bd4a04ffc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 886, + "date": "2017-05-25", + "sha1": "a7bbfb93c6632a368c9f14aa76812f8f9afe1a1b", + "md5": "36f5aa3911d58406bdf07e7dd1031d65", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ca-cert.srl", + "type": "file", + "name": "ca-cert.srl", + "base_name": "ca-cert", + "extension": ".srl", + "size": 3, + "date": "2017-05-25", + "sha1": "478330af84ea74932db60e35533215de649a06c4", + "md5": "307e629e5c5c1c4d31a678949d81548e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ca-key.pem", + "type": "file", + "name": "ca-key.pem", + "base_name": "ca-key", + "extension": ".pem", + "size": 916, + "date": "2017-05-25", + "sha1": "b40639083bf05ec0941ef9b60ec3733bc5b3457c", + "md5": "a60da154baf6e9b0dc1edd91121ff45b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ca-req.pem", + "type": "file", + "name": "ca-req.pem", + "base_name": "ca-req", + "extension": ".pem", + "size": 635, + "date": "2017-05-25", + "sha1": "d7a0a2e420417c87e6044faa22a5273e9eeb6b2e", + "md5": "1ad1509a232d7a91ed07d392c3878bb4", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ca.c", + "type": "file", + "name": "ca.c", + "base_name": "ca", + "extension": ".c", + "size": 84282, + "date": "2017-05-25", + "sha1": "f82b226f797ca1a87d65476ba4c617086152a255", + "md5": "b4bd34c6b0201ade2c6377bcf3b1d916", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Jeff Barber " + ], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/CA.pl.in", + "type": "file", + "name": "CA.pl.in", + "base_name": "CA.pl", + "extension": ".in", + "size": 6734, + "date": "2017-05-25", + "sha1": "9792bccba753cf82d2b5f6e025e379fa46c1ad13", + "md5": "c4951bf341673d578563499259ca018d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/cert.pem", + "type": "file", + "name": "cert.pem", + "base_name": "cert", + "extension": ".pem", + "size": 623, + "date": "2017-05-25", + "sha1": "492b05c1c55d013e578bfa20529c2bf17c1537ec", + "md5": "377334238578965de872e01690988532", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ciphers.c", + "type": "file", + "name": "ciphers.c", + "base_name": "ciphers", + "extension": ".c", + "size": 6502, + "date": "2017-05-25", + "sha1": "6a87ca56b0d708a51c4453f4824dd8caac93e663", + "md5": "97e6a176bcca5d29cb3f8cdc7781b0c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/client.pem", + "type": "file", + "name": "client.pem", + "base_name": "client", + "extension": ".pem", + "size": 3285, + "date": "2017-05-25", + "sha1": "5ab9e4a7f5cdca32907a968291e17f0d5799fb4e", + "md5": "050da36823bcde31ce380012f51bce83", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/cms.c", + "type": "file", + "name": "cms.c", + "base_name": "cms", + "extension": ".c", + "size": 44640, + "date": "2017-05-25", + "sha1": "e9836a3e30da3534a41d7806c2a011fb67d6a796", + "md5": "aab5bfb76497d571a6f8c9c528067054", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/crl.c", + "type": "file", + "name": "crl.c", + "base_name": "crl", + "extension": ".c", + "size": 11148, + "date": "2017-05-25", + "sha1": "f149edb0a5d36f87212fb312d61e650f1559c566", + "md5": "412deb99ec856162fefa061364b18c7d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/crl2p7.c", + "type": "file", + "name": "crl2p7.c", + "base_name": "crl2p7", + "extension": ".c", + "size": 6295, + "date": "2017-05-25", + "sha1": "c9a6f573d72d31340b321adc03c4381f3d3c4de1", + "md5": "356f2d2be82d59b0aa192a93e6350edd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ct_log_list.cnf", + "type": "file", + "name": "ct_log_list.cnf", + "base_name": "ct_log_list", + "extension": ".cnf", + "size": 1718, + "date": "2017-05-25", + "sha1": "ce97887e4da8e2eced6a2c3143bd505906f154c8", + "md5": "d0e24abd84cc5cbbd89af24b852080d9", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dgst.c", + "type": "file", + "name": "dgst.c", + "base_name": "dgst", + "extension": ".c", + "size": 15020, + "date": "2017-05-25", + "sha1": "22ce92c7c5024544c79e67cad07bfe6bcb211927", + "md5": "eaab10b9f65d3b305ba67ea1573ea132", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dh1024.pem", + "type": "file", + "name": "dh1024.pem", + "base_name": "dh1024", + "extension": ".pem", + "size": 447, + "date": "2017-05-25", + "sha1": "3b2b727f77bcf6919226ad0a66693254551c94b0", + "md5": "9ed8d235002fee23e2e442687388e920", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dh2048.pem", + "type": "file", + "name": "dh2048.pem", + "base_name": "dh2048", + "extension": ".pem", + "size": 664, + "date": "2017-05-25", + "sha1": "a198447a3985ab3aeab09be3e615160d7e24276d", + "md5": "b00063fbd018f6dfd717c255a9c4d2a0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dh4096.pem", + "type": "file", + "name": "dh4096.pem", + "base_name": "dh4096", + "extension": ".pem", + "size": 1009, + "date": "2017-05-25", + "sha1": "9a18237d3b233e5d9e2309e209f53237fcd0abb8", + "md5": "531ca4e3f049fc8a11f0eb31cd7c47b1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dhparam.c", + "type": "file", + "name": "dhparam.c", + "base_name": "dhparam", + "extension": ".c", + "size": 12079, + "date": "2017-05-25", + "sha1": "c805525d2e2f2e27591e4c0ae3fc14556b0f53f2", + "md5": "093f70275bcaea34447b3cfb0398dbf4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dsa-ca.pem", + "type": "file", + "name": "dsa-ca.pem", + "base_name": "dsa-ca", + "extension": ".pem", + "size": 2723, + "date": "2017-05-25", + "sha1": "aa512a1abbf6e49cbe7b9e44d15b523a535dd0f7", + "md5": "1506a8960400373d3dde003727a58c1a", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dsa-pca.pem", + "type": "file", + "name": "dsa-pca.pem", + "base_name": "dsa-pca", + "extension": ".pem", + "size": 2731, + "date": "2017-05-25", + "sha1": "ccbf494607ef1f5c8eb06e2b1d6481c3d44dd4b1", + "md5": "4d19ab93482e58cd2a4cb888ba8cfae0", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dsa.c", + "type": "file", + "name": "dsa.c", + "base_name": "dsa", + "extension": ".c", + "size": 7718, + "date": "2017-05-25", + "sha1": "551552addbd10c2f6415d1162efd8a9fd59b8dd5", + "md5": "b4f9aee48d57ee1176320efd6af43fdf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dsa1024.pem", + "type": "file", + "name": "dsa1024.pem", + "base_name": "dsa1024", + "extension": ".pem", + "size": 455, + "date": "2017-05-25", + "sha1": "6099c13e1f32e59f3d2ef646d94db129e902cff8", + "md5": "fa65f1be4d8c89c61e74143cd0b10c60", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dsa512.pem", + "type": "file", + "name": "dsa512.pem", + "base_name": "dsa512", + "extension": ".pem", + "size": 280, + "date": "2017-05-25", + "sha1": "9c6c0494703a46beecae0881a0eeb50b55cda92a", + "md5": "9fb25b01f87ca6adb9547be842e63ae0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dsap.pem", + "type": "file", + "name": "dsap.pem", + "base_name": "dsap", + "extension": ".pem", + "size": 276, + "date": "2017-05-25", + "sha1": "43275eb6a34dd904b606ad8070bf5e0648d51185", + "md5": "9e7a855ed327b2423779801600a04344", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/dsaparam.c", + "type": "file", + "name": "dsaparam.c", + "base_name": "dsaparam", + "extension": ".c", + "size": 9141, + "date": "2017-05-25", + "sha1": "f8f353160dad10b72f57976b554ba7557232bffa", + "md5": "8244b2f3124158a2faca618f2822bf14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ec.c", + "type": "file", + "name": "ec.c", + "base_name": "ec", + "extension": ".c", + "size": 8346, + "date": "2017-05-25", + "sha1": "3e0f455523454914b4ed96664ee636ed57302b26", + "md5": "bc67000605d4c104be08d5e3d891556c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ecparam.c", + "type": "file", + "name": "ecparam.c", + "base_name": "ecparam", + "extension": ".c", + "size": 15776, + "date": "2017-05-25", + "sha1": "775d88e55933f16a05b605edde1d2dde9cd905b4", + "md5": "f9c54e53b01626af50cc8887307ca325", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/enc.c", + "type": "file", + "name": "enc.c", + "base_name": "enc", + "extension": ".c", + "size": 18916, + "date": "2017-05-25", + "sha1": "16c61d81d45735e74c09df5b68fde77c67a8438e", + "md5": "20bb845ca1e99c460af602bd16417599", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Larry J. Hughes Jr. " + ], + "start_line": 440, + "end_line": 441 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/engine.c", + "type": "file", + "name": "engine.c", + "base_name": "engine", + "extension": ".c", + "size": 14728, + "date": "2017-05-25", + "sha1": "66bb79f4000994cc20de18a96c87e37d84c1b43f", + "md5": "27e18b71244c0e868ca6caea6b5b1694", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/errstr.c", + "type": "file", + "name": "errstr.c", + "base_name": "errstr", + "extension": ".c", + "size": 1875, + "date": "2017-05-25", + "sha1": "292cd6ee916eac4d9c043402c1e1739a797ef601", + "md5": "7dc472044e8411c1fa44971a360521a9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/gendsa.c", + "type": "file", + "name": "gendsa.c", + "base_name": "gendsa", + "extension": ".c", + "size": 4128, + "date": "2017-05-25", + "sha1": "c5ead848df17c6727a7ac723d9165c1ee3e5a205", + "md5": "b3cd57c625c7a152941d72545c22513a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/genpkey.c", + "type": "file", + "name": "genpkey.c", + "base_name": "genpkey", + "extension": ".c", + "size": 8409, + "date": "2017-05-25", + "sha1": "ad784592dc982618f9664615f7ebc0a9c581ce10", + "md5": "39c0d9b8bb594d2e1226dde44f0e4c02", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/genrsa.c", + "type": "file", + "name": "genrsa.c", + "base_name": "genrsa", + "extension": ".c", + "size": 5231, + "date": "2017-05-25", + "sha1": "5d4d57d39ec1229487627120c6743feeaa120e30", + "md5": "c1961259170ce43b4d823bb8194a1f33", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/nseq.c", + "type": "file", + "name": "nseq.c", + "base_name": "nseq", + "extension": ".c", + "size": 3051, + "date": "2017-05-25", + "sha1": "0400486e0ae2b202f1aa4a51b4a14ad3b5b2304c", + "md5": "07fc9e63a2761da793dec9068cbb1264", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ocsp.c", + "type": "file", + "name": "ocsp.c", + "base_name": "ocsp", + "extension": ".c", + "size": 40859, + "date": "2017-05-25", + "sha1": "ecee6dec9052c63fb7521bb9aa9b682f3e96f859", + "md5": "c981d577bb923a5bfb064e4e0daa7568", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/openssl-vms.cnf", + "type": "file", + "name": "openssl-vms.cnf", + "base_name": "openssl-vms", + "extension": ".cnf", + "size": 10798, + "date": "2017-05-25", + "sha1": "ec289eefe637c426c3760f6ca5285dbf92b587e9", + "md5": "27e586488d90091df01a50f9d9f96486", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/openssl.c", + "type": "file", + "name": "openssl.c", + "base_name": "openssl", + "extension": ".c", + "size": 17577, + "date": "2017-05-25", + "sha1": "3529f67218a94c98c441d9a1dd60223e99d0a734", + "md5": "008772f4862a794ab72f1c4c33ac343e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/openssl.cnf", + "type": "file", + "name": "openssl.cnf", + "base_name": "openssl", + "extension": ".cnf", + "size": 10771, + "date": "2017-05-25", + "sha1": "15659a84fdba7b60fbcc7892ebababf79dee0340", + "md5": "f697ef5df0d006882e6326606e8dbf4a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/opt.c", + "type": "file", + "name": "opt.c", + "base_name": "opt", + "extension": ".c", + "size": 26690, + "date": "2017-05-25", + "sha1": "d753b8461f4a6254b4ad585ad85126b1d23663ca", + "md5": "b433d1701f7963597815d21d1e7a1ffe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/passwd.c", + "type": "file", + "name": "passwd.c", + "base_name": "passwd", + "extension": ".c", + "size": 15411, + "date": "2017-05-25", + "sha1": "1fa6d763196a58a7c4a52d76a48114d7297f166b", + "md5": "f1366455969039d324feb76243ec6720", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pca-cert.srl", + "type": "file", + "name": "pca-cert.srl", + "base_name": "pca-cert", + "extension": ".srl", + "size": 3, + "date": "2017-05-25", + "sha1": "478330af84ea74932db60e35533215de649a06c4", + "md5": "307e629e5c5c1c4d31a678949d81548e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pca-key.pem", + "type": "file", + "name": "pca-key.pem", + "base_name": "pca-key", + "extension": ".pem", + "size": 916, + "date": "2017-05-25", + "sha1": "a724ebfa8fc4e5b797bd90c143a933073fe9cea8", + "md5": "fc8b8ff65a482e3d5fd6f4546f408f30", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pca-req.pem", + "type": "file", + "name": "pca-req.pem", + "base_name": "pca-req", + "extension": ".pem", + "size": 635, + "date": "2017-05-25", + "sha1": "6f1b190290b985330fd57bc50984449b3dd8a00d", + "md5": "98ef3edb85a9494d449817637acd7b0d", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pkcs12.c", + "type": "file", + "name": "pkcs12.c", + "base_name": "pkcs12", + "extension": ".c", + "size": 30073, + "date": "2017-05-25", + "sha1": "4a1be8db707d146e1bf9245cd6c82cda5f6dba68", + "md5": "32bc471a066dc8a621b6cbbefeb440b2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pkcs7.c", + "type": "file", + "name": "pkcs7.c", + "base_name": "pkcs7", + "extension": ".c", + "size": 5470, + "date": "2017-05-25", + "sha1": "a7d29c5440d54c4884f3647100276aed6b55b26a", + "md5": "7b55c461d9ff7645546c0adf27f73b5d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pkcs8.c", + "type": "file", + "name": "pkcs8.c", + "base_name": "pkcs8", + "extension": ".c", + "size": 11320, + "date": "2017-05-25", + "sha1": "455b1540887f753de465a3563078e96d683da0e0", + "md5": "79d01257bf9a3e6011a62bda0e78df44", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pkey.c", + "type": "file", + "name": "pkey.c", + "base_name": "pkey", + "extension": ".c", + "size": 5765, + "date": "2017-05-25", + "sha1": "2eec2384c69d9b2e94d621085edb8a620592e7bd", + "md5": "4fa8a3888d6070a245eaa69dab8772ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pkeyparam.c", + "type": "file", + "name": "pkeyparam.c", + "base_name": "pkeyparam", + "extension": ".c", + "size": 2694, + "date": "2017-05-25", + "sha1": "940cd1d77ac9a1a4ad06c654ead4ca418493cd84", + "md5": "1be3ad04301887c29882c1db9ff03b8b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/pkeyutl.c", + "type": "file", + "name": "pkeyutl.c", + "base_name": "pkeyutl", + "extension": ".c", + "size": 14754, + "date": "2017-05-25", + "sha1": "77cfe11c7375cbf41c803007739ed52f8c0efe0f", + "md5": "f1f01b22b6c061f5b6654b29236756f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/prime.c", + "type": "file", + "name": "prime.c", + "base_name": "prime", + "extension": ".c", + "size": 3466, + "date": "2017-05-25", + "sha1": "0830bcab268be523556646e109d6f55967a0770e", + "md5": "e9f7af509d0adc11a616dd3fb4a455b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/privkey.pem", + "type": "file", + "name": "privkey.pem", + "base_name": "privkey", + "extension": ".pem", + "size": 916, + "date": "2017-05-25", + "sha1": "e65384f84101b9c5a55bdda539c1f1109e91a0db", + "md5": "b48659f594c9943ae292b16854de198a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/progs.h", + "type": "file", + "name": "progs.h", + "base_name": "progs", + "extension": ".h", + "size": 13759, + "date": "2017-05-25", + "sha1": "af6dd89cd7f4762b7829725c7127a9616a947128", + "md5": "fe62a668c41c273ad056be08bbd0b52b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 10, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/progs.pl", + "type": "file", + "name": "progs.pl", + "base_name": "progs", + "extension": ".pl", + "size": 4473, + "date": "2017-05-25", + "sha1": "97968583b1a621db25da3888163391c6ec3001f0", + "md5": "ae20c9becac999563b3c8da5ff7af7cc", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 37, + "end_line": 40, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 35 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/rand.c", + "type": "file", + "name": "rand.c", + "base_name": "rand", + "extension": ".c", + "size": 3544, + "date": "2017-05-25", + "sha1": "c54db5d432e66666721c6a61a9115dacb461c480", + "md5": "6bc3d87b949f5e0e9accfa1a30337182", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/rehash.c", + "type": "file", + "name": "rehash.c", + "base_name": "rehash", + "extension": ".c", + "size": 15216, + "date": "2017-05-25", + "sha1": "8b341ec48d63f70f34ff0d04d18877a6a1e11ca6", + "md5": "5565a2184d1894fae176113601a4bebc", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2013-2014 Timo Teras " + ], + "holders": [ + "Timo Teras" + ], + "authors": [], + "start_line": 13, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/req.c", + "type": "file", + "name": "req.c", + "base_name": "req", + "extension": ".c", + "size": 46733, + "date": "2017-05-25", + "sha1": "8a1f004fe3b3761d953de5344437684f4869e936", + "md5": "4f1a052e31cdd091781177c40ab62e05", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/req.pem", + "type": "file", + "name": "req.pem", + "base_name": "req", + "extension": ".pem", + "size": 627, + "date": "2017-05-25", + "sha1": "c89530c89aada9fe968861403021edb41255ebe0", + "md5": "bfc4e98e4d7a8da63925b3cdddd5ea7f", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/rsa.c", + "type": "file", + "name": "rsa.c", + "base_name": "rsa", + "extension": ".c", + "size": 9498, + "date": "2017-05-25", + "sha1": "52c3b7a4570a2d007fe2c2211b3569b80740cf90", + "md5": "aad97122f6fcc1247c817e20583742c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/rsa8192.pem", + "type": "file", + "name": "rsa8192.pem", + "base_name": "rsa8192", + "extension": ".pem", + "size": 6365, + "date": "2017-05-25", + "sha1": "9ffe5621f4a29c213dbc74847794fd19d1fd4289", + "md5": "dbc2b90b1bb8f58f19d1dd490dae29f0", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/rsautl.c", + "type": "file", + "name": "rsautl.c", + "base_name": "rsautl", + "extension": ".c", + "size": 7972, + "date": "2017-05-25", + "sha1": "93b331f4083db7cc3fa08ecaacd42b47aa43ca4b", + "md5": "61bdb65ac7be50c26c81636b98500c22", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s1024key.pem", + "type": "file", + "name": "s1024key.pem", + "base_name": "s1024key", + "extension": ".pem", + "size": 891, + "date": "2017-05-25", + "sha1": "7b9a68f7dd2d8095183534db1b415f6cee0a91a4", + "md5": "0aa2a65e6591a0ce3f3369b8009d7392", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s1024req.pem", + "type": "file", + "name": "s1024req.pem", + "base_name": "s1024req", + "extension": ".pem", + "size": 643, + "date": "2017-05-25", + "sha1": "83ddb6c26151b23e653d7c36a2bdd5507bada013", + "md5": "12733faa195453ab93f484d6ee31a76f", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s512-key.pem", + "type": "file", + "name": "s512-key.pem", + "base_name": "s512-key", + "extension": ".pem", + "size": 497, + "date": "2017-05-25", + "sha1": "39747ee060b3900a6d0456e41e8d7abb9efd8737", + "md5": "aee63204f63396c8d9be843828f0e7bb", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s512-req.pem", + "type": "file", + "name": "s512-req.pem", + "base_name": "s512-req", + "extension": ".pem", + "size": 460, + "date": "2017-05-25", + "sha1": "48fb18b435648a13d540d9809ce58dbdfad4a2b6", + "md5": "8e23c9462e543c58573b5b9b041c1aee", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s_apps.h", + "type": "file", + "name": "s_apps.h", + "base_name": "s_apps", + "extension": ".h", + "size": 3921, + "date": "2017-05-25", + "sha1": "425d23a37d5edd4ed1745a7971c19d4fed51d11e", + "md5": "df782181f2d2c906d004ed014ca4c043", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s_cb.c", + "type": "file", + "name": "s_cb.c", + "base_name": "s_cb", + "extension": ".c", + "size": 40145, + "date": "2017-05-25", + "sha1": "5b9358f237ca0fb31ac226e6b4bf268b888b7ffd", + "md5": "564579c62d3160f846c85bcfae0190d1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s_client.c", + "type": "file", + "name": "s_client.c", + "base_name": "s_client", + "extension": ".c", + "size": 90171, + "date": "2017-05-25", + "sha1": "1be3ec00fe50a37d8efb9460f51769a356eface8", + "md5": "6800de4267046dc6bdc279d13c62652b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s_server.c", + "type": "file", + "name": "s_server.c", + "base_name": "s_server", + "extension": ".c", + "size": 107571, + "date": "2017-05-25", + "sha1": "818df6c98f49064d90b8b2938f7b5ce93e19a32d", + "md5": "8e285ccf61e93364fd6c186ab73b78f7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s_socket.c", + "type": "file", + "name": "s_socket.c", + "base_name": "s_socket", + "extension": ".c", + "size": 6509, + "date": "2017-05-25", + "sha1": "b33a9421bad1e04484ccdc8164b5009194fba793", + "md5": "bf5c4e1c60bb2bfd8deb2d67e5a83911", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/s_time.c", + "type": "file", + "name": "s_time.c", + "base_name": "s_time", + "extension": ".c", + "size": 12066, + "date": "2017-05-25", + "sha1": "c5b5de4c28fb8b3f626f4b0623b2b94f5e21a285", + "md5": "e3a340af2d893ec1bf3ff9b31fd5037b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/server.pem", + "type": "file", + "name": "server.pem", + "base_name": "server", + "extension": ".pem", + "size": 3285, + "date": "2017-05-25", + "sha1": "e8b10dc1c9929bf674b95c34ba2de514bf336c04", + "md5": "effb83eee2d49f045628e6f54ba97012", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/server.srl", + "type": "file", + "name": "server.srl", + "base_name": "server", + "extension": ".srl", + "size": 3, + "date": "2017-05-25", + "sha1": "3351d58b1d3bf73122c431502fc94a77abba1edc", + "md5": "0ade138937c4b9cb36a28e2edb6485fc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/server2.pem", + "type": "file", + "name": "server2.pem", + "base_name": "server2", + "extension": ".pem", + "size": 3288, + "date": "2017-05-25", + "sha1": "864394dd547ffd335591f5070e7a10bc5a8f4389", + "md5": "02a27ee3e67890da0f3e67b442941c32", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/sess_id.c", + "type": "file", + "name": "sess_id.c", + "base_name": "sess_id", + "extension": ".c", + "size": 5456, + "date": "2017-05-25", + "sha1": "048aa280616e12f592e3365d99d726d9eeb6ae62", + "md5": "3797a6d80c7e09bb2e550d75c8089564", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/smime.c", + "type": "file", + "name": "smime.c", + "base_name": "smime", + "extension": ".c", + "size": 21614, + "date": "2017-05-25", + "sha1": "b7df229eaa9d0ea1e58e52b0ca89a5e65b5f4e00", + "md5": "b84f3fa7e007c0db06e16f70f68f9c7e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/speed.c", + "type": "file", + "name": "speed.c", + "base_name": "speed", + "extension": ".c", + "size": 100348, + "date": "2017-05-25", + "sha1": "95208d60fd838185a6cc73a3fc662f11aa01bd34", + "md5": "196f97ce2fb942451618dc5941167db6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/spkac.c", + "type": "file", + "name": "spkac.c", + "base_name": "spkac", + "extension": ".c", + "size": 5468, + "date": "2017-05-25", + "sha1": "7ef2fceeba0f3a8b9821f1a2655a1e1241d5ed0c", + "md5": "851d3804b1d37991f2573baa918363ac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/srp.c", + "type": "file", + "name": "srp.c", + "base_name": "srp", + "extension": ".c", + "size": 20659, + "date": "2017-05-25", + "sha1": "b2c09a71130b317adfc11265ed1eb215accd02af", + "md5": "9b732258c127c4a663a784f1f7939de3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/testCA.pem", + "type": "file", + "name": "testCA.pem", + "base_name": "testCA", + "extension": ".pem", + "size": 432, + "date": "2017-05-25", + "sha1": "60c578c5079407152a62483e5128678592b7f999", + "md5": "6fc2d0242801cf234b1d046afac67c53", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/testdsa.h", + "type": "file", + "name": "testdsa.h", + "base_name": "testdsa", + "extension": ".h", + "size": 12945, + "date": "2017-05-25", + "sha1": "b59016b420597e2f6476b3ac09c9873086cd0269", + "md5": "b28f984f82f3c1fdc423624efcfd5082", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/testrsa.h", + "type": "file", + "name": "testrsa.h", + "base_name": "testrsa", + "extension": ".h", + "size": 124026, + "date": "2017-05-25", + "sha1": "ee2e57efe247fbac43c862a0934c889e578878f9", + "md5": "f35272a4d5bf4d35b2bc788b1690e148", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/timeouts.h", + "type": "file", + "name": "timeouts.h", + "base_name": "timeouts", + "extension": ".h", + "size": 557, + "date": "2017-05-25", + "sha1": "4810ebd63d729d42b5f2ef13481605ed0011da0e", + "md5": "b9522e32f213e04d77be5e56b486a0ef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/ts.c", + "type": "file", + "name": "ts.c", + "base_name": "ts", + "extension": ".c", + "size": 31401, + "date": "2017-05-25", + "sha1": "ac811be3aa4ab26e5a535041b9166244a099d4a3", + "md5": "7a1792d6ae4d24df39d6477c6256849d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/tsget.in", + "type": "file", + "name": "tsget.in", + "base_name": "tsget", + "extension": ".in", + "size": 6640, + "date": "2017-05-25", + "sha1": "3fd1905ca5114f1ae492ca4a385719a0b16a0c33", + "md5": "b368c50481e3409a601bad28474c5bae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2002 The OpenTSA Project." + ], + "holders": [ + "The OpenTSA Project." + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/verify.c", + "type": "file", + "name": "verify.c", + "base_name": "verify", + "extension": ".c", + "size": 10268, + "date": "2017-05-25", + "sha1": "c50f189cef9dc46bd4e28cd327dc20b42998c43f", + "md5": "90dd4848c05c0ac8b77e3ec36c0f604c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/version.c", + "type": "file", + "name": "version.c", + "base_name": "version", + "extension": ".c", + "size": 3792, + "date": "2017-05-25", + "sha1": "66796026a9d0261b576756504e5f01123028ac15", + "md5": "7e11039c050da9280fd54e42f037f214", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/vms_decc_init.c", + "type": "file", + "name": "vms_decc_init.c", + "base_name": "vms_decc_init", + "extension": ".c", + "size": 6597, + "date": "2017-05-25", + "sha1": "c71de7b5c9032ba03da977947ae222d242ecb9af", + "md5": "7054a2643d7d3daa00d42f8b3c93c977", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/vms_term_sock.c", + "type": "file", + "name": "vms_term_sock.c", + "base_name": "vms_term_sock", + "extension": ".c", + "size": 17704, + "date": "2017-05-25", + "sha1": "1433377f9372ffb2174615db1d0ba048a1452e35", + "md5": "4c67ceed208a4b1f6df155e94cb7e5ac", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 VMS Software, Inc." + ], + "holders": [ + "VMS Software, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/vms_term_sock.h", + "type": "file", + "name": "vms_term_sock.h", + "base_name": "vms_term_sock", + "extension": ".h", + "size": 678, + "date": "2017-05-25", + "sha1": "0355d0b7b701fe149353902bc87a30a45049e6f7", + "md5": "2d35889e90bede89021a3bf4c69b3e40", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 VMS Software, Inc." + ], + "holders": [ + "VMS Software, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/win32_init.c", + "type": "file", + "name": "win32_init.c", + "base_name": "win32_init", + "extension": ".c", + "size": 8602, + "date": "2017-05-25", + "sha1": "d5f8b5acc59cf6afca3c3beab1445980624364bd", + "md5": "41089ee2bd860dae262b509bfc1b50e9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/x509.c", + "type": "file", + "name": "x509.c", + "base_name": "x509", + "extension": ".c", + "size": 37181, + "date": "2017-05-25", + "sha1": "5795e080287ac2c7aa2ee0865d6a8fe426f114db", + "md5": "646152ca9b362fa67b4e8962ebe5c2a5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoCA", + "type": "directory", + "name": "demoCA", + "base_name": "demoCA", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 1, + "size_count": 4399, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoCA/cacert.pem", + "type": "file", + "name": "cacert.pem", + "base_name": "cacert", + "extension": ".pem", + "size": 716, + "date": "2017-05-25", + "sha1": "9715f0492b6bb9e210afe9c7b557f26fa01e8026", + "md5": "324371bf8fba00ebe5328d8c850f55b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoCA/index.txt", + "type": "file", + "name": "index.txt", + "base_name": "index", + "extension": ".txt", + "size": 2464, + "date": "2017-05-25", + "sha1": "cfb31c4c60a8eaca44a7076db375f5e5d7e06ced", + "md5": "aa58079bdcdc1009d0351291cc4f3a18", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoCA/serial", + "type": "file", + "name": "serial", + "base_name": "serial", + "extension": "", + "size": 5, + "date": "2017-05-25", + "sha1": "a5da428e2bd8988718a1f1ccd3192f342f4f5fc0", + "md5": "a9f5d1907387cad302fa25893fa042a3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoCA/private", + "type": "directory", + "name": "private", + "base_name": "private", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1214, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoCA/private/cakey.pem", + "type": "file", + "name": "cakey.pem", + "base_name": "cakey", + "extension": ".pem", + "size": 1214, + "date": "2017-05-25", + "sha1": "f9e2c932980077ecef7cb02f5dbbbdb3bd69c283", + "md5": "0397a7cb737beb364b5cfd86c17c3a75", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoSRP", + "type": "directory", + "name": "demoSRP", + "base_name": "demoSRP", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 380, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoSRP/srp_verifier.txt", + "type": "file", + "name": "srp_verifier.txt", + "base_name": "srp_verifier", + "extension": ".txt", + "size": 359, + "date": "2017-05-25", + "sha1": "8c0dc4ff99213ad26699a88ec7fcb9290d253204", + "md5": "927245d80d8eb9e7c8edf55ec115dd5d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/apps/demoSRP/srp_verifier.txt.attr", + "type": "file", + "name": "srp_verifier.txt.attr", + "base_name": "srp_verifier.txt", + "extension": ".attr", + "size": 21, + "date": "2017-05-25", + "sha1": "8cf5465a17cdc7391f0f6bb01fa49399996c5217", + "md5": "ee8bd2ea88220c877a62e22e36a02d20", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations", + "type": "directory", + "name": "Configurations", + "base_name": "Configurations", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 15, + "dirs_count": 0, + "size_count": 278151, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/00-base-templates.conf", + "type": "file", + "name": "00-base-templates.conf", + "base_name": "00-base-templates", + "extension": ".conf", + "size": 9470, + "date": "2017-05-25", + "sha1": "a8b02a3d43403297d3c3b52fa7480e4e4577a866", + "md5": "99e837648bdadd96ca4e3e99c9c35a6c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/10-main.conf", + "type": "file", + "name": "10-main.conf", + "base_name": "10-main", + "extension": ".conf", + "size": 86466, + "date": "2017-05-25", + "sha1": "a6b60a6e0557e16e8efef712d8ed45b1536f1de0", + "md5": "536182fd2985df41bb43854bec1bdfcf", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/50-djgpp.conf", + "type": "file", + "name": "50-djgpp.conf", + "base_name": "50-djgpp", + "extension": ".conf", + "size": 554, + "date": "2017-05-25", + "sha1": "8f2fef543147f6156b0f0935a8cb35d7ffeb4d96", + "md5": "d5059c33e2a41516785f1cbf47f2975e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/50-haiku.conf", + "type": "file", + "name": "50-haiku.conf", + "base_name": "50-haiku", + "extension": ".conf", + "size": 1179, + "date": "2017-05-25", + "sha1": "d15dbe164e0085cd3131d037a0b9d787732dc739", + "md5": "ea363c78f189168c281da9bc84daadf8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/50-masm.conf", + "type": "file", + "name": "50-masm.conf", + "base_name": "50-masm", + "extension": ".conf", + "size": 711, + "date": "2017-05-25", + "sha1": "1b68c24f7411100cb3aca5ecb258e58a8b60197d", + "md5": "0f1a9f461d08fba45cd9b61ba7742b6f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/90-team.conf", + "type": "file", + "name": "90-team.conf", + "base_name": "90-team", + "extension": ".conf", + "size": 5319, + "date": "2017-05-25", + "sha1": "5f4b043fd39ef91e329aad554e621f0ed45f4316", + "md5": "2c74ee38b9b51a470d409fe2f8a23f9a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/common.tmpl", + "type": "file", + "name": "common.tmpl", + "base_name": "common", + "extension": ".tmpl", + "size": 8896, + "date": "2017-05-25", + "sha1": "c18f312587362c20707e39c96c80160cb04a0bb4", + "md5": "b0f115d99a252df7cef911b927d587d2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/descrip.mms.tmpl", + "type": "file", + "name": "descrip.mms.tmpl", + "base_name": "descrip.mms", + "extension": ".tmpl", + "size": 35178, + "date": "2017-05-25", + "sha1": "88767e7a51ef05a688c7e9214ca25fdd94e9efd3", + "md5": "becc04ada1408e02dacbdcc531ce6ef2", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/INTERNALS.Configure", + "type": "file", + "name": "INTERNALS.Configure", + "base_name": "INTERNALS", + "extension": ".Configure", + "size": 7883, + "date": "2017-05-25", + "sha1": "f8f9e7ffd41c7059d98e7dd238f6b33466631607", + "md5": "b4a956536c3b3ceccf096d5748a7b21f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 31196, + "date": "2017-05-25", + "sha1": "a39799a051733dbee7885d2ed82c66b7e4efa05d", + "md5": "17e6989c9323559f4340713224a8ad97", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/README.design", + "type": "file", + "name": "README.design", + "base_name": "README", + "extension": ".design", + "size": 25777, + "date": "2017-05-25", + "sha1": "a91675e1bf3977b82477408862c90a88dcfd2cb3", + "md5": "a4674a0741d18bedb36bf3131075f533", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/unix-checker.pm", + "type": "file", + "name": "unix-checker.pm", + "base_name": "unix-checker", + "extension": ".pm", + "size": 617, + "date": "2017-05-25", + "sha1": "b262501ab0d4e62ecce3de85a275cef04cfc0d01", + "md5": "cfbd4fa03a70f1f5c7c19bf49fb3f922", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/unix-Makefile.tmpl", + "type": "file", + "name": "unix-Makefile.tmpl", + "base_name": "unix-Makefile", + "extension": ".tmpl", + "size": 40972, + "date": "2017-05-25", + "sha1": "745fa454acca7791aab9ac8d37b2a70b24554fde", + "md5": "9937c13a02015c7106840ef87fbeafea", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/windows-checker.pm", + "type": "file", + "name": "windows-checker.pm", + "base_name": "windows-checker", + "extension": ".pm", + "size": 622, + "date": "2017-05-25", + "sha1": "025ac0de795714530bb3b1fb746dc6f5aae6903c", + "md5": "c8c909e3e3f85918d9261010306ee4e4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/Configurations/windows-makefile.tmpl", + "type": "file", + "name": "windows-makefile.tmpl", + "base_name": "windows-makefile", + "extension": ".tmpl", + "size": 23311, + "date": "2017-05-25", + "sha1": "9fe33254bb0792663e6d5740a6c84bb5d4a5b75a", + "md5": "56ddb0d4f402a5e693be689ffb0d1c9c", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto", + "type": "directory", + "name": "crypto", + "base_name": "crypto", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 962, + "dirs_count": 75, + "size_count": 11444950, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/alphacpuid.pl", + "type": "file", + "name": "alphacpuid.pl", + "base_name": "alphacpuid", + "extension": ".pl", + "size": 3950, + "date": "2017-05-25", + "sha1": "8d98dc1d809b8760e763b0e6a5041db9103cb5f4", + "md5": "890d8014de4d5d42b2b8fb27e45f3996", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/arm64cpuid.pl", + "type": "file", + "name": "arm64cpuid.pl", + "base_name": "arm64cpuid", + "extension": ".pl", + "size": 2502, + "date": "2017-05-25", + "sha1": "bea8f59c211ab22e03cd8c97929fcd0af50c0b9a", + "md5": "d11dc72a54f20038f9dff22a8f0db016", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/arm_arch.h", + "type": "file", + "name": "arm_arch.h", + "base_name": "arm_arch", + "extension": ".h", + "size": 2578, + "date": "2017-05-25", + "sha1": "daca5e672a41af3b26ed4000da9760eb98150727", + "md5": "d4a979684ad12cb94f9a3f577fc5a2d5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/armcap.c", + "type": "file", + "name": "armcap.c", + "base_name": "armcap", + "extension": ".c", + "size": 5309, + "date": "2017-05-25", + "sha1": "a44a9598a91297c58331962755d0cbeea176c423", + "md5": "1565964735cfd787c210158956022632", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/armv4cpuid.pl", + "type": "file", + "name": "armv4cpuid.pl", + "base_name": "armv4cpuid", + "extension": ".pl", + "size": 5426, + "date": "2017-05-25", + "sha1": "826e058ec942b08ab2a3ff713c1e19ecd56db6cf", + "md5": "f95caaa906b8eb7e8fed4bb715451f32", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 1526, + "date": "2017-05-25", + "sha1": "9221a891031430d6012f0d74e17a5805c961789b", + "md5": "16e4f67b54e54c33f68c4d8c1e8723b5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/c64xpluscpuid.pl", + "type": "file", + "name": "c64xpluscpuid.pl", + "base_name": "c64xpluscpuid", + "extension": ".pl", + "size": 5394, + "date": "2017-05-25", + "sha1": "76ff1f50b2c3b16992801f583166a98e98296170", + "md5": "a3b7d0a39fb73a93bb5f5c443ee8037a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cpt_err.c", + "type": "file", + "name": "cpt_err.c", + "base_name": "cpt_err", + "extension": ".c", + "size": 1948, + "date": "2017-05-25", + "sha1": "eb55b9c290c309b6965c97b75e87e2855c928c7a", + "md5": "5e53d3f6d16fdc643c6ffdf0b09c8203", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cryptlib.c", + "type": "file", + "name": "cryptlib.c", + "base_name": "cryptlib", + "extension": ".c", + "size": 10213, + "date": "2017-05-25", + "sha1": "c4da3364e706915ec12dc1a78e3beea7ff63fc62", + "md5": "11d78b6800fb4617d656d1573943f249", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cversion.c", + "type": "file", + "name": "cversion.c", + "base_name": "cversion", + "extension": ".c", + "size": 1492, + "date": "2017-05-25", + "sha1": "3a07b0ba50eba4a64f96ab13fec4734424c6d369", + "md5": "1af24b32b749af4cded0a538a0529cf6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dllmain.c", + "type": "file", + "name": "dllmain.c", + "base_name": "dllmain", + "extension": ".c", + "size": 1795, + "date": "2017-05-25", + "sha1": "5af891578dfb146dbddb2998af9048b0e3faf9df", + "md5": "631f3294efc6a24977abd6b1077963cc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ebcdic.c", + "type": "file", + "name": "ebcdic.c", + "base_name": "ebcdic", + "extension": ".c", + "size": 15484, + "date": "2017-05-25", + "sha1": "7461e47d50125acb3a94cd6349fb3eb8197d729a", + "md5": "3f18b8290ba2d99267c3003bc3e7a26a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "", + "" + ], + "start_line": 18, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ex_data.c", + "type": "file", + "name": "ex_data.c", + "base_name": "ex_data", + "extension": ".c", + "size": 11027, + "date": "2017-05-25", + "sha1": "23e3d3ae7450054b3a93e8e46816bffb8ea1a701", + "md5": "c534df354868b7bfb5446670115f99da", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ia64cpuid.S", + "type": "file", + "name": "ia64cpuid.S", + "base_name": "ia64cpuid", + "extension": ".S", + "size": 6493, + "date": "2017-05-25", + "sha1": "1f373457c2d93adc8abeb357e4d3a83f6c77a9f9", + "md5": "9b0154013456fe6b0ba9cbc47d6801ac", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/init.c", + "type": "file", + "name": "init.c", + "base_name": "init", + "extension": ".c", + "size": 19290, + "date": "2017-05-25", + "sha1": "416205c3f21aa0fba2a1052dab44ae3ed84a1c39", + "md5": "7c985e316bbd73d97a9bc69a2bdf5a15", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/LPdir_nyi.c", + "type": "file", + "name": "LPdir_nyi.c", + "base_name": "LPdir_nyi", + "extension": ".c", + "size": 1989, + "date": "2017-05-25", + "sha1": "0122ae76db60f9dcb5f55c5d1b8c712f2015349b", + "md5": "1ddba15480b2b675357b2ed7a702ec05", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-simplified", + "score": 100.0, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 14, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_28.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/LPdir_unix.c", + "type": "file", + "name": "LPdir_unix.c", + "base_name": "LPdir_unix", + "extension": ".c", + "size": 4087, + "date": "2017-05-25", + "sha1": "2f306c42855d7a719caf40b088a84c726541d572", + "md5": "ed801d3820556a552bcf56cd1d8c6120", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/LPdir_vms.c", + "type": "file", + "name": "LPdir_vms.c", + "base_name": "LPdir_vms", + "extension": ".c", + "size": 6246, + "date": "2017-05-25", + "sha1": "8a312160c2b269a2c430486271e18c7e3c856626", + "md5": "57f2525688e84a77ca66cb43b57a3489", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/LPdir_win.c", + "type": "file", + "name": "LPdir_win.c", + "base_name": "LPdir_win", + "extension": ".c", + "size": 6959, + "date": "2017-05-25", + "sha1": "404fe7be818429f9c17d8126fa826081ebaf831e", + "md5": "bdd69721341054b2b72064ab70581a88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/LPdir_win32.c", + "type": "file", + "name": "LPdir_win32.c", + "base_name": "LPdir_win32", + "extension": ".c", + "size": 1808, + "date": "2017-05-25", + "sha1": "5db274f2ff0b1ca2781385d862988fcc5cf119a0", + "md5": "54bef4bf99adc7bc5e2a36d655f70d6d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/LPdir_wince.c", + "type": "file", + "name": "LPdir_wince.c", + "base_name": "LPdir_wince", + "extension": ".c", + "size": 1914, + "date": "2017-05-25", + "sha1": "763dff6dd8fd75be219033eba15b720b8c867f12", + "md5": "4adb8542a7f7d5f2ed0e0ba81accc730", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-simplified", + "score": 95.9, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 4, + "end_line": 33, + "matched_rule": { + "identifier": "bsd-simplified_11.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/mem.c", + "type": "file", + "name": "mem.c", + "base_name": "mem", + "extension": ".c", + "size": 4537, + "date": "2017-05-25", + "sha1": "fc73beb974463d4572cf26eccf73d9580037d736", + "md5": "bf6c0a8bcd8c215e25bd598b3c6b3341", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/mem_clr.c", + "type": "file", + "name": "mem_clr.c", + "base_name": "mem_clr", + "extension": ".c", + "size": 770, + "date": "2017-05-25", + "sha1": "fa4d0ce5846abe636e7de63ca9dc6bff68f042e5", + "md5": "20fc7f6044f3162b196ab3197531ed32", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/mem_dbg.c", + "type": "file", + "name": "mem_dbg.c", + "base_name": "mem_dbg", + "extension": ".c", + "size": 17179, + "date": "2017-05-25", + "sha1": "ee8efe123681b5f7068a27be822f8be92e35cf09", + "md5": "37769fa67f5aea56bda7bd6a4c898c17", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/mem_sec.c", + "type": "file", + "name": "mem_sec.c", + "base_name": "mem_sec", + "extension": ".c", + "size": 15481, + "date": "2017-05-25", + "sha1": "d9e09af583ec123bd23be4f7b93315a99b6e7382", + "md5": "4fd27bda19f3d9dd1f997f54df2a2c14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 12, + "end_line": 12, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2004-2014, Akamai Technologies." + ], + "holders": [ + "Akamai Technologies." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/o_dir.c", + "type": "file", + "name": "o_dir.c", + "base_name": "o_dir", + "extension": ".c", + "size": 1080, + "date": "2017-05-25", + "sha1": "418fc1a140d0cda272245ba2ad1b082910e0bd2d", + "md5": "f130c0b50838bf5b1feb521a235eb711", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/o_fips.c", + "type": "file", + "name": "o_fips.c", + "base_name": "o_fips", + "extension": ".c", + "size": 742, + "date": "2017-05-25", + "sha1": "24d2b19d9eb25a6ea826a9e51e70cb81c5d1b938", + "md5": "9beb2dd01bc03f80ad830b4f06e5f787", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/o_fopen.c", + "type": "file", + "name": "o_fopen.c", + "base_name": "o_fopen", + "extension": ".c", + "size": 3324, + "date": "2017-05-25", + "sha1": "e08f5249ea0f8725e2e8bd2e58b88367e222a382", + "md5": "a4ef1d4dbbc9b2f37739ce706ed0e50b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/o_init.c", + "type": "file", + "name": "o_init.c", + "base_name": "o_init", + "extension": ".c", + "size": 898, + "date": "2017-05-25", + "sha1": "fb92cc985b4432d8aa85960c2d23666e1586c2ba", + "md5": "7228480ec5cade7a422240a8d8eb2c4b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/o_str.c", + "type": "file", + "name": "o_str.c", + "base_name": "o_str", + "extension": ".c", + "size": 5915, + "date": "2017-05-25", + "sha1": "a46ed4bf33a83435a3c8e8f756256914d019ecf9", + "md5": "f18c3e116a98ac8b9fda415a863ae85e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/o_time.c", + "type": "file", + "name": "o_time.c", + "base_name": "o_time", + "extension": ".c", + "size": 5475, + "date": "2017-05-25", + "sha1": "524cf2e94cc1d8bf5b3fefd592a419c5868e8ce4", + "md5": "8d69e039b70fe49df93b440c27a78f2c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pariscid.pl", + "type": "file", + "name": "pariscid.pl", + "base_name": "pariscid", + "extension": ".pl", + "size": 4370, + "date": "2017-05-25", + "sha1": "5462045d72bd426d257999a675c7ab8ba68b9b4c", + "md5": "a76c4f49518e2253e458073ecf0a2a93", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ppc_arch.h", + "type": "file", + "name": "ppc_arch.h", + "base_name": "ppc_arch", + "extension": ".h", + "size": 753, + "date": "2017-05-25", + "sha1": "2d2718aca9d377732d2d691154866bfb7ef60b67", + "md5": "f300a403c6111f779a7d619189ef6c56", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ppccap.c", + "type": "file", + "name": "ppccap.c", + "base_name": "ppccap", + "extension": ".c", + "size": 10708, + "date": "2017-05-25", + "sha1": "663228c216b9623a069b7e64c95218d9f1fc8a92", + "md5": "ebce161f28769744eae5fde1d5776c0e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ppccpuid.pl", + "type": "file", + "name": "ppccpuid.pl", + "base_name": "ppccpuid", + "extension": ".pl", + "size": 5324, + "date": "2017-05-25", + "sha1": "cd1096b3ddb9c897ba2d3949ddb5a33ce0be1223", + "md5": "56c096ec7fb0a79799c49aa0a038989e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/s390xcap.c", + "type": "file", + "name": "s390xcap.c", + "base_name": "s390xcap", + "extension": ".c", + "size": 1339, + "date": "2017-05-25", + "sha1": "1e5228bb083d7369b334caf71c27aa96ed187420", + "md5": "b95fdda7497d862ea9992c3c837976e6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/s390xcpuid.S", + "type": "file", + "name": "s390xcpuid.S", + "base_name": "s390xcpuid", + "extension": ".S", + "size": 3455, + "date": "2017-05-25", + "sha1": "17fefc28824293363d3cd8e9cc910af9a669125a", + "md5": "b33892fa25d55173cba3e9330d81545d", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sparc_arch.h", + "type": "file", + "name": "sparc_arch.h", + "base_name": "sparc_arch", + "extension": ".h", + "size": 4319, + "date": "2017-05-25", + "sha1": "078c38503114cbaadb7b080515fcd0cfce8f84c4", + "md5": "acce134ab5dcc7ae4a536a86124a7baf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sparccpuid.S", + "type": "file", + "name": "sparccpuid.S", + "base_name": "sparccpuid", + "extension": ".S", + "size": 12352, + "date": "2017-05-25", + "sha1": "928a6917d63432d699d48022affbcef54dafbd4b", + "md5": "368e0dccf3c36085fa2648a03deb6123", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sparcv9cap.c", + "type": "file", + "name": "sparcv9cap.c", + "base_name": "sparcv9cap", + "extension": ".c", + "size": 10720, + "date": "2017-05-25", + "sha1": "88ffd523a729cb2b16722c79c5c22a92e9c9bfc6", + "md5": "a3e1222cba8adad88d42a8447e52b728", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/threads_none.c", + "type": "file", + "name": "threads_none.c", + "base_name": "threads_none", + "extension": ".c", + "size": 2510, + "date": "2017-05-25", + "sha1": "3147f6dc1f564ccb6f61bc3ea02de42ac190bd12", + "md5": "cab5a3ce094dd34580e5bdacae2611c0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/threads_pthread.c", + "type": "file", + "name": "threads_pthread.c", + "base_name": "threads_pthread", + "extension": ".c", + "size": 3483, + "date": "2017-05-25", + "sha1": "afa9a860a396ef06436ef58f0adff1cef7b66acf", + "md5": "a8a11c3fe27f5164ff259115a57ea1f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/threads_win.c", + "type": "file", + "name": "threads_win.c", + "base_name": "threads_win", + "extension": ".c", + "size": 2866, + "date": "2017-05-25", + "sha1": "da9c558b595c0becf6c323502fa280ad97246457", + "md5": "1918ea028a4dd5e86c16a2cca6f87577", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/uid.c", + "type": "file", + "name": "uid.c", + "base_name": "uid", + "extension": ".c", + "size": 871, + "date": "2017-05-25", + "sha1": "8c4197981d92dc201b37125bb9f186d7c27a7dee", + "md5": "c165ad53430a7c4fd400888fab21f063", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/vms_rms.h", + "type": "file", + "name": "vms_rms.h", + "base_name": "vms_rms", + "extension": ".h", + "size": 2150, + "date": "2017-05-25", + "sha1": "fe659c54612f43f9b611fb3489e6f7a7211d9abc", + "md5": "c699e07ac696d67f6bd2d1f58c688a93", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x86_64cpuid.pl", + "type": "file", + "name": "x86_64cpuid.pl", + "base_name": "x86_64cpuid", + "extension": ".pl", + "size": 9108, + "date": "2017-05-25", + "sha1": "b78e2f7292269afd2443e0625302b868ad17f53c", + "md5": "319093100fb719c295d6d623bd1bc815", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x86cpuid.pl", + "type": "file", + "name": "x86cpuid.pl", + "base_name": "x86cpuid", + "extension": ".pl", + "size": 13840, + "date": "2017-05-25", + "sha1": "b4b7fd0317528753776ff70106bd9d5fd7f19518", + "md5": "32c5b79a9ac4440086fa5a2b41b101af", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes", + "type": "directory", + "name": "aes", + "base_name": "aes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 36, + "dirs_count": 1, + "size_count": 1438062, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_cbc.c", + "type": "file", + "name": "aes_cbc.c", + "base_name": "aes_cbc", + "extension": ".c", + "size": 814, + "date": "2017-05-25", + "sha1": "12155b69ed8410fd4f5a90d757528b7a00467978", + "md5": "55245247dc7740c515765821d0897202", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_cfb.c", + "type": "file", + "name": "aes_cfb.c", + "base_name": "aes_cfb", + "extension": ".c", + "size": 1595, + "date": "2017-05-25", + "sha1": "a558bcf9ab2d58a39079bca421bcb0bc4d3023cc", + "md5": "359bd18db0269b16a54c49ccecd1a1f3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_core.c", + "type": "file", + "name": "aes_core.c", + "base_name": "aes_core", + "extension": ".c", + "size": 62847, + "date": "2017-05-25", + "sha1": "3bd52d5563d81b7f0eab5c93ae9850f9c0fbdd4c", + "md5": "9f35e1c65a88d33e57671169ba556266", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain-disclaimer", + "score": 100.0, + "short_name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 21, + "end_line": 33, + "matched_rule": { + "identifier": "public-domain-disclaimer.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vincent Rijmen ", + "Antoon Bosselaers ", + "Paulo Barreto " + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_ecb.c", + "type": "file", + "name": "aes_ecb.c", + "base_name": "aes_ecb", + "extension": ".c", + "size": 726, + "date": "2017-05-25", + "sha1": "2fccfabbcfb6e13ed3870fc0fed9b9499a763f79", + "md5": "47bf38a94700329787c82e637440c92c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_ige.c", + "type": "file", + "name": "aes_ige.c", + "base_name": "aes_ige", + "extension": ".c", + "size": 9586, + "date": "2017-05-25", + "sha1": "187221286eebed0231d334a6aaca79429296ac9b", + "md5": "0d8cf6acffa228bf4d4a7a01017b4aca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_locl.h", + "type": "file", + "name": "aes_locl.h", + "base_name": "aes_locl", + "extension": ".h", + "size": 1331, + "date": "2017-05-25", + "sha1": "0e9869b8bde0ffb4aa1b86abee3c16a181d4ef24", + "md5": "7ebb0eb35adacf998b9892693c4af583", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_misc.c", + "type": "file", + "name": "aes_misc.c", + "base_name": "aes_misc", + "extension": ".c", + "size": 529, + "date": "2017-05-25", + "sha1": "29be7c3034116d12552880e984a37ebe3bc44816", + "md5": "f9c998e9d69c9e9a595ac78208f0b0eb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_ofb.c", + "type": "file", + "name": "aes_ofb.c", + "base_name": "aes_ofb", + "extension": ".c", + "size": 686, + "date": "2017-05-25", + "sha1": "cd734afa6257d291cca006f855521650728e08e7", + "md5": "2197b18526b6ddc6e6673916c893031d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_wrap.c", + "type": "file", + "name": "aes_wrap.c", + "base_name": "aes_wrap", + "extension": ".c", + "size": 932, + "date": "2017-05-25", + "sha1": "02252ea88a5f8e89f97e66fb5cacd409f12e94b5", + "md5": "0e66d7bf6afa7ca2a1ae2d555dcaf236", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/aes_x86core.c", + "type": "file", + "name": "aes_x86core.c", + "base_name": "aes_x86core", + "extension": ".c", + "size": 41413, + "date": "2017-05-25", + "sha1": "8c5c12031c0d73b706e0d946328ed88ee5222057", + "md5": "13a76e3190a6cef9f211e1412b4d8069", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain-disclaimer", + "score": 100.0, + "short_name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 21, + "end_line": 33, + "matched_rule": { + "identifier": "public-domain-disclaimer.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vincent Rijmen ", + "Antoon Bosselaers ", + "Paulo Barreto " + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 2284, + "date": "2017-05-25", + "sha1": "7bee7f22993e359017cf77b754880f2b4333fee6", + "md5": "629b47cad52f6cdc7680bb751ce98443", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 0, + "size_count": 1315319, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-586.pl", + "type": "file", + "name": "aes-586.pl", + "base_name": "aes-586", + "extension": ".pl", + "size": 103999, + "date": "2017-05-25", + "sha1": "f4bf9e1fd9c88b56ee84f6366bf14998db734cc5", + "md5": "c5ff2e33c5a9ab503df12ec397b252fe", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Dean Gaudet " + ], + "start_line": 42, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-armv4.pl", + "type": "file", + "name": "aes-armv4.pl", + "base_name": "aes-armv4", + "extension": ".pl", + "size": 33604, + "date": "2017-05-25", + "sha1": "06589d8925cfe9fc59538c92cf91595f440b59f5", + "md5": "b6a6cd855969552d8e934ce0be3ca7ed", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-c64xplus.pl", + "type": "file", + "name": "aes-c64xplus.pl", + "base_name": "aes-c64xplus", + "extension": ".pl", + "size": 44253, + "date": "2017-05-25", + "sha1": "a3411164b45932d230bdc493d54b362dd9d9f023", + "md5": "f3ab7a3b99545d80a91f103083e9a6d3", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-ia64.S", + "type": "file", + "name": "aes-ia64.S", + "base_name": "aes-ia64", + "extension": ".S", + "size": 41622, + "date": "2017-05-25", + "sha1": "602927926eafe2d36dd9f21c86f7b71d8c344040", + "md5": "fd9eef2514a1cf5f1ecfb236cee944ab", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 3, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 3, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 11, + "end_line": 11, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 9, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov " + ], + "start_line": 35, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-mips.pl", + "type": "file", + "name": "aes-mips.pl", + "base_name": "aes-mips", + "extension": ".pl", + "size": 52593, + "date": "2017-05-25", + "sha1": "ecd4a022e3a014a78eb57804c6daab34a4eccd3f", + "md5": "ba8320449a5aa9ba42c869648b943e4f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-parisc.pl", + "type": "file", + "name": "aes-parisc.pl", + "base_name": "aes-parisc", + "extension": ".pl", + "size": 29154, + "date": "2017-05-25", + "sha1": "7d27a476fefdc43d4bd6b060fc599fdd8265445f", + "md5": "930a6a22950a17038216d48844120e6c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-ppc.pl", + "type": "file", + "name": "aes-ppc.pl", + "base_name": "aes-ppc", + "extension": ".pl", + "size": 39969, + "date": "2017-05-25", + "sha1": "7c68ce37b5fe6ec2504379a22f98d1a647618193", + "md5": "2e1db26bc24b092bdd26226129edd7ea", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-s390x.pl", + "type": "file", + "name": "aes-s390x.pl", + "base_name": "aes-s390x", + "extension": ".pl", + "size": 53315, + "date": "2017-05-25", + "sha1": "4d58fbf1f4997c190a6ec0e6351008f8e093a55e", + "md5": "ebd043e054f99651f202bae1f31bf146", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-sparcv9.pl", + "type": "file", + "name": "aes-sparcv9.pl", + "base_name": "aes-sparcv9", + "extension": ".pl", + "size": 30300, + "date": "2017-05-25", + "sha1": "444d157f24d6f8d22eb12c713e1402d127c2139e", + "md5": "20944d5c516df04ef767f325705c5be9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aes-x86_64.pl", + "type": "file", + "name": "aes-x86_64.pl", + "base_name": "aes-x86_64", + "extension": ".pl", + "size": 75122, + "date": "2017-05-25", + "sha1": "5746bfe92222bfd67c1c5daafe165e7aa3a8308d", + "md5": "d168566feabb90741801e3a3b7feda6b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aesfx-sparcv9.pl", + "type": "file", + "name": "aesfx-sparcv9.pl", + "base_name": "aesfx-sparcv9", + "extension": ".pl", + "size": 28158, + "date": "2017-05-25", + "sha1": "8aff2ac1d4f2d72d740b710b2b7016e347db74e2", + "md5": "94c6a94fb3676fb3307b20ddc4fdde41", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aesni-mb-x86_64.pl", + "type": "file", + "name": "aesni-mb-x86_64.pl", + "base_name": "aesni-mb-x86_64", + "extension": ".pl", + "size": 36301, + "date": "2017-05-25", + "sha1": "f162ea14fef91ad3650dd2e523c133382b9c61c1", + "md5": "6ffa98a3c2fc846d9e56c7c2a2d05315", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aesni-sha1-x86_64.pl", + "type": "file", + "name": "aesni-sha1-x86_64.pl", + "base_name": "aesni-sha1-x86_64", + "extension": ".pl", + "size": 53064, + "date": "2017-05-25", + "sha1": "78ce9e31e5c3adf057fd5b758377e52aad87acb0", + "md5": "e1aa5305b2c72d797d29b2c42113aff2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aesni-sha256-x86_64.pl", + "type": "file", + "name": "aesni-sha256-x86_64.pl", + "base_name": "aesni-sha256-x86_64", + "extension": ".pl", + "size": 42221, + "date": "2017-05-25", + "sha1": "c3057b445741556427b94102ccbceae9f9f0a08b", + "md5": "294f2d1e3fcdf343a17fe16215cf8245", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aesni-x86.pl", + "type": "file", + "name": "aesni-x86.pl", + "base_name": "aesni-x86", + "extension": ".pl", + "size": 102049, + "date": "2017-05-25", + "sha1": "e54cbcc9a23b691560a820a634efca517c0ba5c9", + "md5": "0ba38fd4086789549fbecfca17e3d3c1", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aesni-x86_64.pl", + "type": "file", + "name": "aesni-x86_64.pl", + "base_name": "aesni-x86_64", + "extension": ".pl", + "size": 127843, + "date": "2017-05-25", + "sha1": "ee4d1b6e2fc2cb561e5cac92e33b91d0cdd5893f", + "md5": "bf855df3539ff4290c151938052c4fbb", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aesp8-ppc.pl", + "type": "file", + "name": "aesp8-ppc.pl", + "base_name": "aesp8-ppc", + "extension": ".pl", + "size": 93271, + "date": "2017-05-25", + "sha1": "626d1a5009629d344d525dd8c9aa1cabe39ece06", + "md5": "3b223ead172d4fba7cd548fb8fc725cf", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aest4-sparcv9.pl", + "type": "file", + "name": "aest4-sparcv9.pl", + "base_name": "aest4-sparcv9", + "extension": ".pl", + "size": 23246, + "date": "2017-05-25", + "sha1": "82c7e744e336971fc3d64c2a4e087c38f0a983c0", + "md5": "7e4bea2ecc99fac11900bbd8ce8f7b59", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 54.88, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 54.88, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 54.88, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller and Andy Polyakov " + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/aesv8-armx.pl", + "type": "file", + "name": "aesv8-armx.pl", + "base_name": "aesv8-armx", + "extension": ".pl", + "size": 22124, + "date": "2017-05-25", + "sha1": "c3cf1574c14ab44bc719f19261000818f8881e39", + "md5": "74a5aa944aa872ad8a82113494398c95", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/bsaes-armv7.pl", + "type": "file", + "name": "bsaes-armv7.pl", + "base_name": "bsaes-armv7", + "extension": ".pl", + "size": 63775, + "date": "2017-05-25", + "sha1": "61cab262a076ba94772a471ea6413edbe870d1ae", + "md5": "81cbef80fe5c0caf9a398d929051a0bf", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 93.9, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 93.9, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 93.9, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl", + "score": 55.32, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 13, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_1.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-1.0-plus" + ] + } + }, + { + "key": "bsd-new", + "score": 55.32, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 13, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_1.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-1.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 55.32, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 13, + "end_line": 18, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_1.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Ard Biesheuvel " + ], + "start_line": 16, + "end_line": 18 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/bsaes-x86_64.pl", + "type": "file", + "name": "bsaes-x86_64.pl", + "base_name": "bsaes-x86_64", + "extension": ".pl", + "size": 73427, + "date": "2017-05-25", + "sha1": "9494da07f9054e31eb953b6eaafcac6933f98bbf", + "md5": "b4071698e72983c1e773bbd2acf5d500", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 52.44, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 52.44, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 52.44, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Emilia Kasper and Peter Schwabe" + ], + "start_line": 13, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/vpaes-armv8.pl", + "type": "file", + "name": "vpaes-armv8.pl", + "base_name": "vpaes-armv8", + "extension": ".pl", + "size": 44096, + "date": "2017-05-25", + "sha1": "b8895f07cc129322dfab97837376f7a57358f647", + "md5": "478102600747c7af62e5777131cd0efe", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 21, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/vpaes-ppc.pl", + "type": "file", + "name": "vpaes-ppc.pl", + "base_name": "vpaes-ppc", + "extension": ".pl", + "size": 42759, + "date": "2017-05-25", + "sha1": "f0b5338fbd0870ca7f08a5ecde0d2358db167d17", + "md5": "ea98e2b72361bb85b759de8e3df2d858", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/vpaes-x86.pl", + "type": "file", + "name": "vpaes-x86.pl", + "base_name": "vpaes-x86", + "extension": ".pl", + "size": 28094, + "date": "2017-05-25", + "sha1": "6454951009d36e1a5a5734428356db8ce9283580", + "md5": "1355c6dd2eb58b830f41d90e63b4a595", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/aes/asm/vpaes-x86_64.pl", + "type": "file", + "name": "vpaes-x86_64.pl", + "base_name": "vpaes-x86_64", + "extension": ".pl", + "size": 30960, + "date": "2017-05-25", + "sha1": "cbc18ff14f042719e0f33a62733d947c191203fc", + "md5": "07d1b45708c38b48338ceee32c8543ac", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1", + "type": "directory", + "name": "asn1", + "base_name": "asn1", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 67, + "dirs_count": 0, + "size_count": 427087, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_bitstr.c", + "type": "file", + "name": "a_bitstr.c", + "base_name": "a_bitstr", + "extension": ".c", + "size": 5403, + "date": "2017-05-25", + "sha1": "7f6615d919923b9805e8bf7973c16dffa2a9d484", + "md5": "d0b438765c850f2fac386b6e6c167f96", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_d2i_fp.c", + "type": "file", + "name": "a_d2i_fp.c", + "base_name": "a_d2i_fp", + "extension": ".c", + "size": 6533, + "date": "2017-05-25", + "sha1": "72942a58aa64feedc14eb986f05237bf2cc68067", + "md5": "7e5af1aa5351ca36e0f3be30910a6bd7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_digest.c", + "type": "file", + "name": "a_digest.c", + "base_name": "a_digest", + "extension": ".c", + "size": 1482, + "date": "2017-05-25", + "sha1": "1221306c39e52f72754c18c4b0bedee143b4ec07", + "md5": "d426c54542da9c11ae297c5ae8323476", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_dup.c", + "type": "file", + "name": "a_dup.c", + "base_name": "a_dup", + "extension": ".c", + "size": 1559, + "date": "2017-05-25", + "sha1": "e853acde6e30b16a31ba115d3a858a5d20ac0c02", + "md5": "d0a0c7932e8ff80f555bf3fe3b4837d4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_gentm.c", + "type": "file", + "name": "a_gentm.c", + "base_name": "a_gentm", + "extension": ".c", + "size": 7425, + "date": "2017-05-25", + "sha1": "138be98ac65c727c33766df45cc18429593f4dfd", + "md5": "15034fcd46550e8598ac271709944b88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_i2d_fp.c", + "type": "file", + "name": "a_i2d_fp.c", + "base_name": "a_i2d_fp", + "extension": ".c", + "size": 2280, + "date": "2017-05-25", + "sha1": "3b998eae8a4d76acf8d6fc721a05d96150f4dde6", + "md5": "d15e37bea3d18f18e15d25e4c84725e9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_int.c", + "type": "file", + "name": "a_int.c", + "base_name": "a_int", + "extension": ".c", + "size": 16959, + "date": "2017-05-25", + "sha1": "7ebaf4b2154df8083dacc4141f8f5acbb1be3a77", + "md5": "6839e126ca592ffad067d866887c1f27", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_mbstr.c", + "type": "file", + "name": "a_mbstr.c", + "base_name": "a_mbstr", + "extension": ".c", + "size": 11141, + "date": "2017-05-25", + "sha1": "1fa221ca8b618482edb5c4eb6faf8d052983d571", + "md5": "5442c7037f7bae58c8956694aab6af2f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_object.c", + "type": "file", + "name": "a_object.c", + "base_name": "a_object", + "extension": ".c", + "size": 9960, + "date": "2017-05-25", + "sha1": "bc6c329d7b77d24ab5bc4c5236478e36580db275", + "md5": "dc583556c69851e0ad8a9eb3414a2052", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_octet.c", + "type": "file", + "name": "a_octet.c", + "base_name": "a_octet", + "extension": ".c", + "size": 813, + "date": "2017-05-25", + "sha1": "5a315c2176641a3b1736d71116cd56dd99ee9b08", + "md5": "1209f8eae31742c3f6e3db85727db2ab", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_print.c", + "type": "file", + "name": "a_print.c", + "base_name": "a_print", + "extension": ".c", + "size": 2727, + "date": "2017-05-25", + "sha1": "5ffb71afd1f3bb0d95d16db44f63444f4a29db4a", + "md5": "d743df76b068f22ca00cf9641d5bc4e1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_sign.c", + "type": "file", + "name": "a_sign.c", + "base_name": "a_sign", + "extension": ".c", + "size": 6972, + "date": "2017-05-25", + "sha1": "16ebeaf5794bb43b365560b22b8551a11b319c2f", + "md5": "c455611575bf2943e6c1240c5242f10d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_strex.c", + "type": "file", + "name": "a_strex.c", + "base_name": "a_strex", + "extension": ".c", + "size": 18509, + "date": "2017-05-25", + "sha1": "6663948875b6b9593f7b76c5bf460e142f582a48", + "md5": "661b34a10d87cb6260409f327f2d9a4d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_strnid.c", + "type": "file", + "name": "a_strnid.c", + "base_name": "a_strnid", + "extension": ".c", + "size": 8748, + "date": "2017-05-25", + "sha1": "b447c94d2d7fcb9ff0e78f9def8728f8acbf107e", + "md5": "e4eb54845e7153729cb592413e70e348", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_time.c", + "type": "file", + "name": "a_time.c", + "base_name": "a_time", + "extension": ".c", + "size": 4379, + "date": "2017-05-25", + "sha1": "9b822b37eb5784f926321bcd9fd4d1ff187fe2d6", + "md5": "e7c8cf1a61de03066f0de0bae3b8afef", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_type.c", + "type": "file", + "name": "a_type.c", + "base_name": "a_type", + "extension": ".c", + "size": 3473, + "date": "2017-05-25", + "sha1": "185084d182c6ee983cd2a1ad73abeb0020d5127a", + "md5": "59a535263d1c0746969024c6de4b31f6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_utctm.c", + "type": "file", + "name": "a_utctm.c", + "base_name": "a_utctm", + "extension": ".c", + "size": 6278, + "date": "2017-05-25", + "sha1": "e6bf76105ea75a96d54da7ded0eff0857a6a26b5", + "md5": "26334b2d1777fe570ab4c823679ee672", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_utf8.c", + "type": "file", + "name": "a_utf8.c", + "base_name": "a_utf8", + "extension": ".c", + "size": 6028, + "date": "2017-05-25", + "sha1": "4578b9fae3c90e15003bc3aa0ed3f1885d6dcf38", + "md5": "43df20c45b9b9fefc6b8b94b82d05cdd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/a_verify.c", + "type": "file", + "name": "a_verify.c", + "base_name": "a_verify", + "extension": ".c", + "size": 5023, + "date": "2017-05-25", + "sha1": "22eb79d3a169b2e04fddecb3135c538107a7133d", + "md5": "bdb999a0200ccf65c782d0a241d27d94", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/ameth_lib.c", + "type": "file", + "name": "ameth_lib.c", + "base_name": "ameth_lib", + "extension": ".c", + "size": 12483, + "date": "2017-05-25", + "sha1": "28ee8d400d6c319c886bce2dbc94c1e8a58db366", + "md5": "b7e46e0ae0ff47bbf180dc7418f2349e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn1_err.c", + "type": "file", + "name": "asn1_err.c", + "base_name": "asn1_err", + "extension": ".c", + "size": 14617, + "date": "2017-05-25", + "sha1": "1a955a90c1e2993c63a03ac24ddf5f6e525a292a", + "md5": "05db342eda8dcae6b27efffbec9c9cd1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn1_gen.c", + "type": "file", + "name": "asn1_gen.c", + "base_name": "asn1_gen", + "extension": ".c", + "size": 23172, + "date": "2017-05-25", + "sha1": "4fbfc2f2eb4158fe216f8b11ab95490ae687b02a", + "md5": "aa0918fbf57e0027347d4e615fb3e073", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn1_lib.c", + "type": "file", + "name": "asn1_lib.c", + "base_name": "asn1_lib", + "extension": ".c", + "size": 8670, + "date": "2017-05-25", + "sha1": "83f2a835108ea2ff68d6d43d86b8678df7d76b36", + "md5": "5df1b3485c737ccd43057049c7310056", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn1_locl.h", + "type": "file", + "name": "asn1_locl.h", + "base_name": "asn1_locl", + "extension": ".h", + "size": 3218, + "date": "2017-05-25", + "sha1": "95b941e8a40f08a521c98165fd081c81cddb3a34", + "md5": "312b2bb2a8fd6a5c143e433105692992", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn1_par.c", + "type": "file", + "name": "asn1_par.c", + "base_name": "asn1_par", + "extension": ".c", + "size": 13188, + "date": "2017-05-25", + "sha1": "669e665f63dc3664b744cf7f67d35e2ab7ba6998", + "md5": "f71e2a9d517a824bb8af46954a9681f0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn_mime.c", + "type": "file", + "name": "asn_mime.c", + "base_name": "asn_mime", + "extension": ".c", + "size": 28723, + "date": "2017-05-25", + "sha1": "3bc472c942aba6a29490e6d0f9469ae55d2a9553", + "md5": "00e40a612e3d7d0d3f2530b92c9ca59f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn_moid.c", + "type": "file", + "name": "asn_moid.c", + "base_name": "asn_moid", + "extension": ".c", + "size": 2567, + "date": "2017-05-25", + "sha1": "9fcaa5da8d6b3f4e888e8e7c554d6b0740eea331", + "md5": "75f8ee89fe351f63f538ebc70c192422", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn_mstbl.c", + "type": "file", + "name": "asn_mstbl.c", + "base_name": "asn_mstbl", + "extension": ".c", + "size": 3536, + "date": "2017-05-25", + "sha1": "77708743b32d543e00c42e73511c3af7e8df66f4", + "md5": "11b2d78bdac7c32c88507d76858e0cb5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/asn_pack.c", + "type": "file", + "name": "asn_pack.c", + "base_name": "asn_pack", + "extension": ".c", + "size": 1629, + "date": "2017-05-25", + "sha1": "7b773827d6917da6d65af2b3bb604558ce892fcf", + "md5": "d778114d08f304895c7107b37265114e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/bio_asn1.c", + "type": "file", + "name": "bio_asn1.c", + "base_name": "bio_asn1", + "extension": ".c", + "size": 11057, + "date": "2017-05-25", + "sha1": "6fc01fd045030e4c344a6b1829e622a2657528c0", + "md5": "f30aa57177e7e4422fb68430b9a192e5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/bio_ndef.c", + "type": "file", + "name": "bio_ndef.c", + "base_name": "bio_ndef", + "extension": ".c", + "size": 5252, + "date": "2017-05-25", + "sha1": "79ea65d5d3fb01c86ef554d6817746dde5775706", + "md5": "73aea3cfdcef46dcd0b8a550f572cf55", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 820, + "date": "2017-05-25", + "sha1": "b34533d72c1e8177bc519156f5056e9990e0a62a", + "md5": "5da5c936322c4f5472cb07eb82ec10e0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/charmap.h", + "type": "file", + "name": "charmap.h", + "base_name": "charmap", + "extension": ".h", + "size": 1440, + "date": "2017-05-25", + "sha1": "035b7c0da78b377839cf61df08e01bf4b739d8f8", + "md5": "db6777624d421f78c2e3f05854d32f2c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 10, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/charmap.pl", + "type": "file", + "name": "charmap.pl", + "base_name": "charmap", + "extension": ".pl", + "size": 3564, + "date": "2017-05-25", + "sha1": "1570e0b6e93f032a9da0c6769e95ffc860a59d34", + "md5": "594769b2fc4bf4135444b94abdc110f9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 92, + "end_line": 95, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 90, + "end_line": 90 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/d2i_pr.c", + "type": "file", + "name": "d2i_pr.c", + "base_name": "d2i_pr", + "extension": ".c", + "size": 3661, + "date": "2017-05-25", + "sha1": "eeb9cb5a4b61a55786113a7a8d3a7f978dcd9321", + "md5": "c515232ef9707570945217365600e485", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/d2i_pu.c", + "type": "file", + "name": "d2i_pu.c", + "base_name": "d2i_pu", + "extension": ".c", + "size": 2061, + "date": "2017-05-25", + "sha1": "229b48d670acd6d8ba9441e77933a5fd7c9e78a5", + "md5": "72380b573dbe0af61d760d8731e6d11a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/evp_asn1.c", + "type": "file", + "name": "evp_asn1.c", + "base_name": "evp_asn1", + "extension": ".c", + "size": 2961, + "date": "2017-05-25", + "sha1": "b1576b1e27823b50cc0b6239ecbfc95a11151aa6", + "md5": "d7c846e1d78032cb4172a61c6f69b9ad", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/f_int.c", + "type": "file", + "name": "f_int.c", + "base_name": "f_int", + "extension": ".c", + "size": 4494, + "date": "2017-05-25", + "sha1": "d8b4777f7a07fef3e5af8ed9ad91036dfa7b7fc7", + "md5": "2a2078d12c394a692d4c2c1a2c338470", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/f_string.c", + "type": "file", + "name": "f_string.c", + "base_name": "f_string", + "extension": ".c", + "size": 4038, + "date": "2017-05-25", + "sha1": "c4027932516b5a89fb47e71e8eda130e05031eaf", + "md5": "6ea8ac5e52a4f34ef0cda1fb3eeb237f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/i2d_pr.c", + "type": "file", + "name": "i2d_pr.c", + "base_name": "i2d_pr", + "extension": ".c", + "size": 1018, + "date": "2017-05-25", + "sha1": "64c0206ae1a45720d78fb11e367bd987e8302f28", + "md5": "9d6fd5927ba5ce9ab49c936370e0a01b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/i2d_pu.c", + "type": "file", + "name": "i2d_pu.c", + "base_name": "i2d_pu", + "extension": ".c", + "size": 1071, + "date": "2017-05-25", + "sha1": "dca5661c44848edb7c17f9be558dbafac09a2818", + "md5": "7c0461f76411c5214845700c2423faec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/n_pkey.c", + "type": "file", + "name": "n_pkey.c", + "base_name": "n_pkey", + "extension": ".c", + "size": 1930, + "date": "2017-05-25", + "sha1": "cfef56857e49111f348bdd7242ac2951428c628b", + "md5": "62827a94cecdc47a93b03e3dae930e6d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/nsseq.c", + "type": "file", + "name": "nsseq.c", + "base_name": "nsseq", + "extension": ".c", + "size": 1141, + "date": "2017-05-25", + "sha1": "95ced7105d1807c79832ec08edfe4f7c0491c07c", + "md5": "1b2412f8675c9392c370fc81db46131e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/p5_pbe.c", + "type": "file", + "name": "p5_pbe.c", + "base_name": "p5_pbe", + "extension": ".c", + "size": 2583, + "date": "2017-05-25", + "sha1": "6839e8c2106edbbb0ba011e08d71c37ba8a0bf55", + "md5": "4ec8445fdf497facf93c7c50643a8b01", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/p5_pbev2.c", + "type": "file", + "name": "p5_pbev2.c", + "base_name": "p5_pbev2", + "extension": ".c", + "size": 6138, + "date": "2017-05-25", + "sha1": "bb5480ee98e4043042b18c08bc5f24f1a1c913f0", + "md5": "461100c6f0a653c85119504eb1b6b271", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/p5_scrypt.c", + "type": "file", + "name": "p5_scrypt.c", + "base_name": "p5_scrypt", + "extension": ".c", + "size": 8199, + "date": "2017-05-25", + "sha1": "00091a259e9543a7a7866381266ce644979e7a5b", + "md5": "9aa61b1fdab7e1567262075e08daeacc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/p8_pkey.c", + "type": "file", + "name": "p8_pkey.c", + "base_name": "p8_pkey", + "extension": ".c", + "size": 2597, + "date": "2017-05-25", + "sha1": "f8bdbe4a2498329d67046600db22e5cc1309bfa2", + "md5": "25fe6ebe4682a992a5c77a668f6d4d91", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/t_bitst.c", + "type": "file", + "name": "t_bitst.c", + "base_name": "t_bitst", + "extension": ".c", + "size": 1593, + "date": "2017-05-25", + "sha1": "87a3d446b6a23de7c71a1f657973b94bf7a8fd22", + "md5": "3b92f0b561a8c3b9bb0d0f61e747666c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/t_pkey.c", + "type": "file", + "name": "t_pkey.c", + "base_name": "t_pkey", + "extension": ".c", + "size": 2587, + "date": "2017-05-25", + "sha1": "4c4866558feefadebdbeb7835a419a2e7a71f382", + "md5": "b06562070158cb3bc3e1b73418e1f92b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/t_spki.c", + "type": "file", + "name": "t_spki.c", + "base_name": "t_spki", + "extension": ".c", + "size": 1780, + "date": "2017-05-25", + "sha1": "175780eb584ea4cae797b4fc9e02dfd4d41d6706", + "md5": "86016cfe105e45227d320fb6815b66ee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/tasn_dec.c", + "type": "file", + "name": "tasn_dec.c", + "base_name": "tasn_dec", + "extension": ".c", + "size": 36533, + "date": "2017-05-25", + "sha1": "fbbc78b5836707d8f1d95370df5ecacd0fa581fd", + "md5": "f03d6ee8f931525dbe39e9ce5a61a804", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/tasn_enc.c", + "type": "file", + "name": "tasn_enc.c", + "base_name": "tasn_enc", + "extension": ".c", + "size": 18584, + "date": "2017-05-25", + "sha1": "72898c8cd9266a38d877ec399839fd4b556fa2b2", + "md5": "7453093cac3debb57e4460f94df544dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/tasn_fre.c", + "type": "file", + "name": "tasn_fre.c", + "base_name": "tasn_fre", + "extension": ".c", + "size": 5624, + "date": "2017-05-25", + "sha1": "3157eaca7eff1e3a50e777a63c62e3be57b262d1", + "md5": "5ad9a38745d36692d97c41d57ae235d6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/tasn_new.c", + "type": "file", + "name": "tasn_new.c", + "base_name": "tasn_new", + "extension": ".c", + "size": 8959, + "date": "2017-05-25", + "sha1": "fcf8b069746e8786e8a04252c02ed805d056a1ea", + "md5": "281053a9c8b60f4ff8574b435e8a54e3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/tasn_prn.c", + "type": "file", + "name": "tasn_prn.c", + "base_name": "tasn_prn", + "extension": ".c", + "size": 14912, + "date": "2017-05-25", + "sha1": "ff56710953118eeccca1a5521a5eb67905c59c8e", + "md5": "3293ca2b955ba10a081fa2866a7a53d5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/tasn_scn.c", + "type": "file", + "name": "tasn_scn.c", + "base_name": "tasn_scn", + "extension": ".c", + "size": 1398, + "date": "2017-05-25", + "sha1": "802ff8c2507eae675178f5d1e55541769bc6e71c", + "md5": "566148a56b75ef1adb958878c60b6bbc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/tasn_typ.c", + "type": "file", + "name": "tasn_typ.c", + "base_name": "tasn_typ", + "extension": ".c", + "size": 3007, + "date": "2017-05-25", + "sha1": "6bac8c7d1512624d3a0b6a2e761e23ec972b2b77", + "md5": "cf88616bc9bd8965a081dd2408dea33a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/tasn_utl.c", + "type": "file", + "name": "tasn_utl.c", + "base_name": "tasn_utl", + "extension": ".c", + "size": 6523, + "date": "2017-05-25", + "sha1": "dbff0e124718888f4242136a1234ec898a64f041", + "md5": "8e1b45796d654fc6d16f7df53d6e020b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_algor.c", + "type": "file", + "name": "x_algor.c", + "base_name": "x_algor", + "extension": ".c", + "size": 2602, + "date": "2017-05-25", + "sha1": "9b56445241cb7bb40c891ad3fd01d63c68ad2292", + "md5": "09e67067441a44c6fb40cf2150d05f44", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_bignum.c", + "type": "file", + "name": "x_bignum.c", + "base_name": "x_bignum", + "extension": ".c", + "size": 3915, + "date": "2017-05-25", + "sha1": "d3b78147ad71bd2d66e7ef9c9a8dede6d800cbae", + "md5": "8bc0f3419780bd0dc512647ef09720dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_info.c", + "type": "file", + "name": "x_info.c", + "base_name": "x_info", + "extension": ".c", + "size": 895, + "date": "2017-05-25", + "sha1": "013c14c97fba8fb6f98895d73e267224ddafaa4e", + "md5": "fc325fdb8d24226d13a427a4d295bbbc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_int64.c", + "type": "file", + "name": "x_int64.c", + "base_name": "x_int64", + "extension": ".c", + "size": 7246, + "date": "2017-05-25", + "sha1": "4f5bf45f62d1f1dfc19fd7560b37d0d37eb1286d", + "md5": "bd3570f6645d7346b81a1cf72bc9300b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_long.c", + "type": "file", + "name": "x_long.c", + "base_name": "x_long", + "extension": ".c", + "size": 5446, + "date": "2017-05-25", + "sha1": "ceeb928b8e3f8847245556b6a517a28534aa1f3f", + "md5": "517724cb901828925c7343ab8a7043f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_pkey.c", + "type": "file", + "name": "x_pkey.c", + "base_name": "x_pkey", + "extension": ".c", + "size": 1148, + "date": "2017-05-25", + "sha1": "b75002e184724adfb711db2f9d668548c1a466df", + "md5": "602134f3fec065af5f839b5a3f1d96dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_sig.c", + "type": "file", + "name": "x_sig.c", + "base_name": "x_sig", + "extension": ".c", + "size": 1082, + "date": "2017-05-25", + "sha1": "4a385bf1d61e3483cb432c14a12c8c5aee238714", + "md5": "85757629a1d3b6592e67e24cc3fcb274", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_spki.c", + "type": "file", + "name": "x_spki.c", + "base_name": "x_spki", + "extension": ".c", + "size": 1097, + "date": "2017-05-25", + "sha1": "5ac6191626692285d3d796b19eed18aa443a2066", + "md5": "e3b2913e8f5ac16e78821350a93be633", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/asn1/x_val.c", + "type": "file", + "name": "x_val.c", + "base_name": "x_val", + "extension": ".c", + "size": 636, + "date": "2017-05-25", + "sha1": "856fb836170223205ffc3d2e94b82e6e0c6df7a4", + "md5": "a1aaafddc20f3065bfd88ac00d10be3b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async", + "type": "directory", + "name": "async", + "base_name": "async", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 1, + "size_count": 26234, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/async.c", + "type": "file", + "name": "async.c", + "base_name": "async", + "extension": ".c", + "size": 10727, + "date": "2017-05-25", + "sha1": "ace75774c0c707cfca62633ad2218f2f52482647", + "md5": "bffff8b1839fbc4006152087406fdae1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/async_err.c", + "type": "file", + "name": "async_err.c", + "base_name": "async_err", + "extension": ".c", + "size": 1623, + "date": "2017-05-25", + "sha1": "078e428b8194978258088ee332194c98b25fa26b", + "md5": "247441ff682d9d9b44d015cb17846512", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/async_locl.h", + "type": "file", + "name": "async_locl.h", + "base_name": "async_locl", + "extension": ".h", + "size": 1830, + "date": "2017-05-25", + "sha1": "782a0cc6cae81b1a5bdfd7cf15075942d5312b6e", + "md5": "35b0c9564bebd40785d7783fc8cad79a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/async_wait.c", + "type": "file", + "name": "async_wait.c", + "base_name": "async_wait", + "extension": ".c", + "size": 5508, + "date": "2017-05-25", + "sha1": "49a2e7d100bd8f6842ed97fb664b31c433c58dc5", + "md5": "0ddd26e8d8c4c3854591a38beed83376", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 152, + "date": "2017-05-25", + "sha1": "ed6c8da2ed5b93085310e960dee235ffffed9fb5", + "md5": "efc659cd7c62d16ebc31ee7e40f6768c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/arch", + "type": "directory", + "name": "arch", + "base_name": "arch", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 6394, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/arch/async_null.c", + "type": "file", + "name": "async_null.c", + "base_name": "async_null", + "extension": ".c", + "size": 512, + "date": "2017-05-25", + "sha1": "c737c7eec1f595282ccf168ed339c3eec5e5790d", + "md5": "da5f80ac3339fbdb90fc9b514fc97b91", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/arch/async_null.h", + "type": "file", + "name": "async_null.h", + "base_name": "async_null", + "extension": ".h", + "size": 762, + "date": "2017-05-25", + "sha1": "a30fb2d06acb36c11280e351a15b76b650fbaf29", + "md5": "5c4c1038393988b72e0e6983afac0ee0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/arch/async_posix.c", + "type": "file", + "name": "async_posix.c", + "base_name": "async_posix", + "extension": ".c", + "size": 1409, + "date": "2017-05-25", + "sha1": "304034e2fd570e005c80b9820c523d3044d5e991", + "md5": "63ae681bf4b7e3813e0d79573b9d0d7d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/arch/async_posix.h", + "type": "file", + "name": "async_posix.h", + "base_name": "async_posix", + "extension": ".h", + "size": 1391, + "date": "2017-05-25", + "sha1": "fffe1ddceea0ae25b8b050811a84c51f2122f816", + "md5": "e456b1409bc429da3dc4c6d66fc597ea", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/arch/async_win.c", + "type": "file", + "name": "async_win.c", + "base_name": "async_win", + "extension": ".c", + "size": 1239, + "date": "2017-05-25", + "sha1": "69f5de7eb859a0cb256bc7698ffbd2532143087f", + "md5": "6b4ab21c7b3a604980d645e9ba877224", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/async/arch/async_win.h", + "type": "file", + "name": "async_win.h", + "base_name": "async_win", + "extension": ".h", + "size": 1081, + "date": "2017-05-25", + "sha1": "2e00ac305a13c7eadf5d1f9a4eb01ac89a507ac9", + "md5": "68043e4216617081647c465c8128aae4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf", + "type": "directory", + "name": "bf", + "base_name": "bf", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 1, + "size_count": 49996, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/bf_cbc.c", + "type": "file", + "name": "bf_cbc.c", + "base_name": "bf_cbc", + "extension": ".c", + "size": 2450, + "date": "2017-05-25", + "sha1": "f4c1a386748c990b582269d832c08f628c7565a0", + "md5": "48dc37d7a43ca1ccaa55264f5cacd7af", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/bf_cfb64.c", + "type": "file", + "name": "bf_cfb64.c", + "base_name": "bf_cfb64", + "extension": ".c", + "size": 2164, + "date": "2017-05-25", + "sha1": "e04069c9b2828bd4d79ec2153da0a95fd03454fb", + "md5": "e41eb4d8b2b9be6cdbd05b8c2d85f047", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/bf_ecb.c", + "type": "file", + "name": "bf_ecb.c", + "base_name": "bf_ecb", + "extension": ".c", + "size": 1070, + "date": "2017-05-25", + "sha1": "415645eed425e20960e1b1643fcff469a9b1c6c2", + "md5": "84e8b9dd893703250acd0eba8cb4b2fc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/bf_enc.c", + "type": "file", + "name": "bf_enc.c", + "base_name": "bf_enc", + "extension": ".c", + "size": 4609, + "date": "2017-05-25", + "sha1": "140c2a951235fbf78a44b10048240aed04fdd13b", + "md5": "e955c9deb81f3655a102161715862e34", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/bf_locl.h", + "type": "file", + "name": "bf_locl.h", + "base_name": "bf_locl", + "extension": ".h", + "size": 2973, + "date": "2017-05-25", + "sha1": "4c964fec9ada9791b975d65bbde4dd3f23e67a82", + "md5": "06ca3517e40cd7188c1504a83dbf6557", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/bf_ofb64.c", + "type": "file", + "name": "bf_ofb64.c", + "base_name": "bf_ofb64", + "extension": ".c", + "size": 1607, + "date": "2017-05-25", + "sha1": "53272e9f884c1af2e163c163e99b5a8c3fb88604", + "md5": "943e09d8a2071b8cba6ac58d612c7975", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/bf_pi.h", + "type": "file", + "name": "bf_pi.h", + "base_name": "bf_pi", + "extension": ".h", + "size": 30366, + "date": "2017-05-25", + "sha1": "51a231520e4d8118f6413596d11f29b4c9bb26e7", + "md5": "02e7d8de8e495e90d0233edd60c7a26c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/bf_skey.c", + "type": "file", + "name": "bf_skey.c", + "base_name": "bf_skey", + "extension": ".c", + "size": 1450, + "date": "2017-05-25", + "sha1": "654d1fa06fdbfb27c07b7b4a8b2ccccc09f14413", + "md5": "43927df1bf6961081504cd60d8ffbe89", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 267, + "date": "2017-05-25", + "sha1": "77f759327696fd3f30e37ccacf11980314df05aa", + "md5": "0f48a6df715e52f10595df3211aebb56", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3040, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bf/asm/bf-586.pl", + "type": "file", + "name": "bf-586.pl", + "base_name": "bf-586", + "extension": ".pl", + "size": 3040, + "date": "2017-05-25", + "sha1": "d3b1b8f68a814a8034d53e01c74fd5a6c1aef03b", + "md5": "cd46f42258d0059caa2d93e9d35097d4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio", + "type": "directory", + "name": "bio", + "base_name": "bio", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 0, + "size_count": 281253, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/b_addr.c", + "type": "file", + "name": "b_addr.c", + "base_name": "b_addr", + "extension": ".c", + "size": 24754, + "date": "2017-05-25", + "sha1": "0d0034b5b5cff372160c4d716d11f3b12fc981b5", + "md5": "d068c91ce161a51e2bec0ee7528f902e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/b_dump.c", + "type": "file", + "name": "b_dump.c", + "base_name": "b_dump", + "extension": ".c", + "size": 4430, + "date": "2017-05-25", + "sha1": "4ae88b01e9d0f1bc7d09c942ad0ea86f58034b40", + "md5": "19f1faf5bfe3217a96b2eae5ecfdf677", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/b_print.c", + "type": "file", + "name": "b_print.c", + "base_name": "b_print", + "extension": ".c", + "size": 26062, + "date": "2017-05-25", + "sha1": "6e9a44540b278c773875b46e500f0b44f9fde8dc", + "md5": "22f8926259bfb724a63773009ec7be73", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "snprintf", + "score": 94.74, + "short_name": "snprintf License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:snprintf", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 18, + "end_line": 21, + "matched_rule": { + "identifier": "snprintf.LICENSE", + "license_choice": false, + "licenses": [ + "snprintf" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright Patrick Powell 1995" + ], + "holders": [ + "Patrick Powell" + ], + "authors": [ + "Patrick Powell " + ], + "start_line": 18, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/b_sock.c", + "type": "file", + "name": "b_sock.c", + "base_name": "b_sock", + "extension": ".c", + "size": 10112, + "date": "2017-05-25", + "sha1": "ee4547bc44090e1243cf0b9712159e304e65265b", + "md5": "cacf6c5b6852337a1a0fd0c61e4d5c67", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/b_sock2.c", + "type": "file", + "name": "b_sock2.c", + "base_name": "b_sock2", + "extension": ".c", + "size": 8762, + "date": "2017-05-25", + "sha1": "fa41c5f87f7d3d42cb4028bbd90c5a3682b37d3d", + "md5": "8f2d99c0174a8cbb4b38b9987fca9d6b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bf_buff.c", + "type": "file", + "name": "bf_buff.c", + "base_name": "bf_buff", + "extension": ".c", + "size": 12065, + "date": "2017-05-25", + "sha1": "4abf62addc675fb8fa7713b70311845ac248af18", + "md5": "1004117f46cf93dbe53635b6e97a3b8e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bf_lbuf.c", + "type": "file", + "name": "bf_lbuf.c", + "base_name": "bf_lbuf", + "extension": ".c", + "size": 8642, + "date": "2017-05-25", + "sha1": "de06167d769455b9c354a1aaafcbce6c737cbe19", + "md5": "7ac022b139f057511de2f3757a14978e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bf_nbio.c", + "type": "file", + "name": "bf_nbio.c", + "base_name": "bf_nbio", + "extension": ".c", + "size": 4122, + "date": "2017-05-25", + "sha1": "1a7024191c98690a5bedbf04333b2de4b8b5ecef", + "md5": "a3dad01bc784528d771d97a88d45f4f3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bf_null.c", + "type": "file", + "name": "bf_null.c", + "base_name": "bf_null", + "extension": ".c", + "size": 3082, + "date": "2017-05-25", + "sha1": "35a7bf0e14328dad6c21f522fa32cf00afb065a0", + "md5": "7bc1a4ca380dae0e92cd4501e2976ead", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bio_cb.c", + "type": "file", + "name": "bio_cb.c", + "base_name": "bio_cb", + "extension": ".c", + "size": 3199, + "date": "2017-05-25", + "sha1": "531fe3a06496cbd90fdb73b0541224ce08d049a4", + "md5": "9d05f0242e270f7744561c9084959a21", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bio_err.c", + "type": "file", + "name": "bio_err.c", + "base_name": "bio_err", + "extension": ".c", + "size": 5521, + "date": "2017-05-25", + "sha1": "08dce1bfeeaa923c865c4eb62a5b80a6c3ecbc63", + "md5": "7a481d7c3d70fd14f96c3783b2d70294", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bio_lcl.h", + "type": "file", + "name": "bio_lcl.h", + "base_name": "bio_lcl", + "extension": ".h", + "size": 5586, + "date": "2017-05-25", + "sha1": "2b67a73ef440f10ad2300f9338408a2f21f160cb", + "md5": "0909e3c6168450e6c92353bac5431001", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bio_lib.c", + "type": "file", + "name": "bio_lib.c", + "base_name": "bio_lib", + "extension": ".c", + "size": 12674, + "date": "2017-05-25", + "sha1": "0b38356923a229941c0fad45110dd9ec849f77ad", + "md5": "f93aa152226a3de0f3dbf26f9399fc47", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bio_meth.c", + "type": "file", + "name": "bio_meth.c", + "base_name": "bio_meth", + "extension": ".c", + "size": 3188, + "date": "2017-05-25", + "sha1": "c5d0e568a6057123468a96a89892d6ca1c0a689a", + "md5": "a35669c76f3e133dc3d57dcf6bd93c99", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_acpt.c", + "type": "file", + "name": "bss_acpt.c", + "base_name": "bss_acpt", + "extension": ".c", + "size": 16099, + "date": "2017-05-25", + "sha1": "b7410404b4fec5bb3cca9034ed30b5de1cc7d7e7", + "md5": "118ceff0162a72ae17a7fe0e903e7333", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_bio.c", + "type": "file", + "name": "bss_bio.c", + "base_name": "bss_bio", + "extension": ".c", + "size": 18874, + "date": "2017-05-25", + "sha1": "39beac44957068ce1ce9afb51bd031cabab20c49", + "md5": "36bd6a9a35439053e5ad89dd929e6737", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_conn.c", + "type": "file", + "name": "bss_conn.c", + "base_name": "bss_conn", + "extension": ".c", + "size": 15911, + "date": "2017-05-25", + "sha1": "3d402f9b968a5be5a862f848eb2b90c1d7fc427d", + "md5": "05163f1735a4512492f3ae19a13f3b2b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_dgram.c", + "type": "file", + "name": "bss_dgram.c", + "base_name": "bss_dgram", + "extension": ".c", + "size": 56956, + "date": "2017-05-25", + "sha1": "b9efb7bf22801eef6d2c948800d43b8d474b401e", + "md5": "60ef8505415e98c8d61b461badd7d50d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_fd.c", + "type": "file", + "name": "bss_fd.c", + "base_name": "bss_fd", + "extension": ".c", + "size": 5482, + "date": "2017-05-25", + "sha1": "324d6850f3c915a2d8c2aa8198b80e8775f42db2", + "md5": "6b35fe0967b80d63ef650dc9aadc0c30", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_file.c", + "type": "file", + "name": "bss_file.c", + "base_name": "bss_file", + "extension": ".c", + "size": 11474, + "date": "2017-05-25", + "sha1": "3806cdc73c299c8721f7402faf9a07bc2bf76a20", + "md5": "ccfe33bf0f029d3b5dbd65e95862c780", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_log.c", + "type": "file", + "name": "bss_log.c", + "base_name": "bss_log", + "extension": ".c", + "size": 9347, + "date": "2017-05-25", + "sha1": "cf1f04c0102a1637e337ee80193320f5339a54d3", + "md5": "c2ac9036181429fbbbf5575d596747fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_mem.c", + "type": "file", + "name": "bss_mem.c", + "base_name": "bss_mem", + "extension": ".c", + "size": 8145, + "date": "2017-05-25", + "sha1": "2e9d27c22589cf5fd98326efea78db2a052c4266", + "md5": "6cda5f8e4f9fef2974d10c02a8e98f0a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_null.c", + "type": "file", + "name": "bss_null.c", + "base_name": "bss_null", + "extension": ".c", + "size": 2031, + "date": "2017-05-25", + "sha1": "5aad88c5bd4d493e5d9e25fe5326d9fe680a4035", + "md5": "2e81c3625960cc749f5cf77ea6da1198", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/bss_sock.c", + "type": "file", + "name": "bss_sock.c", + "base_name": "bss_sock", + "extension": ".c", + "size": 4397, + "date": "2017-05-25", + "sha1": "f70ec602396df9044728410ea1bc2820eb2d4506", + "md5": "ea7f62c666b55c8ad69c383a7cb5be51", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bio/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 338, + "date": "2017-05-25", + "sha1": "10536129d1a6c1d192c2d4eec85938d19cd2bb3f", + "md5": "d4713215727ec27f6ec941e0d599912f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/blake2", + "type": "directory", + "name": "blake2", + "base_name": "blake2", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 25212, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/blake2/blake2_impl.h", + "type": "file", + "name": "blake2_impl.h", + "base_name": "blake2_impl", + "extension": ".h", + "size": 3261, + "date": "2017-05-25", + "sha1": "b9d35f48c6e634b489e1b11386f663d9981660f4", + "md5": "015e80d32099f9ac193c5a6530490afa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/blake2/blake2_locl.h", + "type": "file", + "name": "blake2_locl.h", + "base_name": "blake2_locl", + "extension": ".h", + "size": 2689, + "date": "2017-05-25", + "sha1": "a8ebaceecc4584dd23336b171b228be33cf3f7be", + "md5": "5030367932b68825159b209f5ba81540", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/blake2/blake2b.c", + "type": "file", + "name": "blake2b.c", + "base_name": "blake2b", + "extension": ".c", + "size": 8359, + "date": "2017-05-25", + "sha1": "73ef5dfd6e5369940a8423a27cd0fd33558d80df", + "md5": "4e1a8c6d8fdc41b4d27350b8630f5ba8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/blake2/blake2s.c", + "type": "file", + "name": "blake2s.c", + "base_name": "blake2s", + "extension": ".c", + "size": 8038, + "date": "2017-05-25", + "sha1": "a3f80886f34f61200a8741e3b4e15424312ac5df", + "md5": "a06b7fb467e6102232dc6746895ecec9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/blake2/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 99, + "date": "2017-05-25", + "sha1": "333eae26cbf7fa77ab86e9142530d5288db10227", + "md5": "dc148256d83ec9ac109a80316ce0a4c3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/blake2/m_blake2b.c", + "type": "file", + "name": "m_blake2b.c", + "base_name": "m_blake2b", + "extension": ".c", + "size": 1383, + "date": "2017-05-25", + "sha1": "63d562d15c39f060adf41db3f55112a03a964699", + "md5": "a7ef3c66fd4dd9f3003de98c56f73723", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/blake2/m_blake2s.c", + "type": "file", + "name": "m_blake2s.c", + "base_name": "m_blake2s", + "extension": ".c", + "size": 1383, + "date": "2017-05-25", + "sha1": "ed789ae4e4ea9f6fb54bf73841f301527216aa70", + "md5": "9945a02af93e7ec083e8168fedc4e6ff", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2012, Samuel Neves " + ], + "holders": [ + "Samuel Neves" + ], + "authors": [ + "Samuel Neves." + ], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn", + "type": "directory", + "name": "bn", + "base_name": "bn", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 76, + "dirs_count": 1, + "size_count": 1381631, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_add.c", + "type": "file", + "name": "bn_add.c", + "base_name": "bn_add", + "extension": ".c", + "size": 3938, + "date": "2017-05-25", + "sha1": "58dab109a112aee2713a034cf6342f7f2cd08e5e", + "md5": "7ac65a81391358a2b1f98a32f6b0d658", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_asm.c", + "type": "file", + "name": "bn_asm.c", + "base_name": "bn_asm", + "extension": ".c", + "size": 27575, + "date": "2017-05-25", + "sha1": "97af54bc5ec7df47cdfdf71d30c6c54b60aef6c1", + "md5": "2b12f160bdf63029be3340028eaaa276", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_blind.c", + "type": "file", + "name": "bn_blind.c", + "base_name": "bn_blind", + "extension": ".c", + "size": 7128, + "date": "2017-05-25", + "sha1": "454fd456c79b326c3b4220d869200f9bbf561b42", + "md5": "0eb7702d50f82ac522c5c0d32c2556b0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_const.c", + "type": "file", + "name": "bn_const.c", + "base_name": "bn_const", + "extension": ".c", + "size": 26919, + "date": "2017-05-25", + "sha1": "2d452f296e43a1bfc926e42947f1eb7da37204be", + "md5": "55d9ea7f42163abdd0da54d71dda9338", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_ctx.c", + "type": "file", + "name": "bn_ctx.c", + "base_name": "bn_ctx", + "extension": ".c", + "size": 9510, + "date": "2017-05-25", + "sha1": "b9679a59b1e8af3f0556b963d88b120c5b3381e3", + "md5": "66dd5c0075f5b2b911784eca79e0818a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_depr.c", + "type": "file", + "name": "bn_depr.c", + "base_name": "bn_depr", + "extension": ".c", + "size": 1932, + "date": "2017-05-25", + "sha1": "db3bc4983c2181dea326904198fe69a205f7d043", + "md5": "5f228bdd6ec9f38fd3519dfb7c9860b5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_dh.c", + "type": "file", + "name": "bn_dh.c", + "base_name": "bn_dh", + "extension": ".c", + "size": 10404, + "date": "2017-05-25", + "sha1": "5eefe90dcef56035b57ca8107a237b7d35ba83a6", + "md5": "c65f1e0671bf289800cb35231b9065a1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_div.c", + "type": "file", + "name": "bn_div.c", + "base_name": "bn_div", + "extension": ".c", + "size": 12412, + "date": "2017-05-25", + "sha1": "7a29d9a7b59aa507473180c9b018bc2cd5055b5e", + "md5": "a7bd8952264362b50ddc4df9c7305fad", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_err.c", + "type": "file", + "name": "bn_err.c", + "base_name": "bn_err", + "extension": ".c", + "size": 4656, + "date": "2017-05-25", + "sha1": "7072d9005806d379d60b52d0d8afe69a4a62b088", + "md5": "467863744520a2c5fcf9a8d8794f4358", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_exp.c", + "type": "file", + "name": "bn_exp.c", + "base_name": "bn_exp", + "extension": ".c", + "size": 43618, + "date": "2017-05-25", + "sha1": "bdd40816afb5921fd931b4170c91f38b75cbeacd", + "md5": "2919cec82c9ba3e521861bcfea51ed07", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_exp2.c", + "type": "file", + "name": "bn_exp2.c", + "base_name": "bn_exp2", + "extension": ".c", + "size": 5961, + "date": "2017-05-25", + "sha1": "0f8b6bcc4d1b782d7cade4bc71de7f1c8bec8a68", + "md5": "edf5606c79e162c002ee8289b19e1f1d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_gcd.c", + "type": "file", + "name": "bn_gcd.c", + "base_name": "bn_gcd", + "extension": ".c", + "size": 17151, + "date": "2017-05-25", + "sha1": "40b9961d88026cc00a2471d78ff7d2be391a3e7e", + "md5": "3963a5946203235ff2c7adaedee99600", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_gf2m.c", + "type": "file", + "name": "bn_gf2m.c", + "base_name": "bn_gf2m", + "extension": ".c", + "size": 31344, + "date": "2017-05-25", + "sha1": "1fef9c3048e8f3311cb1c084d565d534459da381", + "md5": "33ccbb33f6720800a9d86eb60f0aae64", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_intern.c", + "type": "file", + "name": "bn_intern.c", + "base_name": "bn_intern", + "extension": ".c", + "size": 5625, + "date": "2017-05-25", + "sha1": "203171316bbee23bf8b9fb9bbddf1f6ac21702cd", + "md5": "b3c0cb046f0c7beb70e631ec44b6abb7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_kron.c", + "type": "file", + "name": "bn_kron.c", + "base_name": "bn_kron", + "extension": ".c", + "size": 3294, + "date": "2017-05-25", + "sha1": "b55d08c2f95c9c531c8fc237c99201d0cb7b8d08", + "md5": "fc6290a2e7439f2d5d5e068284486025", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_lcl.h", + "type": "file", + "name": "bn_lcl.h", + "base_name": "bn_lcl", + "extension": ".h", + "size": 25390, + "date": "2017-05-25", + "sha1": "84dac987fe5b910f162a53906e95ce6cd3f1ea01", + "md5": "817861adf11b6ff9c5c8491c556eef33", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_lib.c", + "type": "file", + "name": "bn_lib.c", + "base_name": "bn_lib", + "extension": ".c", + "size": 23462, + "date": "2017-05-25", + "sha1": "57e08e25051162345cf6a09acd3d9ff81c5186e2", + "md5": "1a47bdc39688eb0a87f710ed87aa4f29", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_mod.c", + "type": "file", + "name": "bn_mod.c", + "base_name": "bn_mod", + "extension": ".c", + "size": 4525, + "date": "2017-05-25", + "sha1": "c16bf0579e3aca22ee4ba56c9dc12ab1e2c71959", + "md5": "54a3b2e1d49dd2a2a2f29a0490167f2e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_mont.c", + "type": "file", + "name": "bn_mont.c", + "base_name": "bn_mont", + "extension": ".c", + "size": 11375, + "date": "2017-05-25", + "sha1": "94b6e0e3f172a2e2f670d9256d18d1beddf0a85a", + "md5": "bfa80679f1f9efaa9e1d562f7e80e8eb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_mpi.c", + "type": "file", + "name": "bn_mpi.c", + "base_name": "bn_mpi", + "extension": ".c", + "size": 1909, + "date": "2017-05-25", + "sha1": "15a17548aa479599c84f5ee836bab39fab9f0fff", + "md5": "c8a451ddbf8290fa93413d419010a61f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_mul.c", + "type": "file", + "name": "bn_mul.c", + "base_name": "bn_mul", + "extension": ".c", + "size": 28525, + "date": "2017-05-25", + "sha1": "0d8516485ec43821dd223fd790d318bddc289f67", + "md5": "d2a577aa59cc02571a7611e9cca32e11", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_nist.c", + "type": "file", + "name": "bn_nist.c", + "base_name": "bn_nist", + "extension": ".c", + "size": 38166, + "date": "2017-05-25", + "sha1": "c0ba9871f16522e6a7a9653cb1ddbbf55c000bb4", + "md5": "c7a38dab33103917a42361ae7574bae7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_prime.c", + "type": "file", + "name": "bn_prime.c", + "base_name": "bn_prime", + "extension": ".c", + "size": 17773, + "date": "2017-05-25", + "sha1": "a4ad773f2a7142ae2caa91d0b9f665a66ac32b35", + "md5": "fa7955d68b15384f793094f3e020582b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_prime.h", + "type": "file", + "name": "bn_prime.h", + "base_name": "bn_prime", + "extension": ".h", + "size": 14886, + "date": "2017-05-25", + "sha1": "e8c577c8245b592debb7b7c41aa651460372dda7", + "md5": "d85371e6b7c91799af69ec5897925ed3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 10, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_prime.pl", + "type": "file", + "name": "bn_prime.pl", + "base_name": "bn_prime", + "extension": ".pl", + "size": 1312, + "date": "2017-05-25", + "sha1": "077afac4f589cc8f68f9c8dbad6c3bf2d3d173bd", + "md5": "c5b48940185d84921321c4bb130db204", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 16, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 14, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_print.c", + "type": "file", + "name": "bn_print.c", + "base_name": "bn_print", + "extension": ".c", + "size": 7940, + "date": "2017-05-25", + "sha1": "75ac619b91f779133451411c853c929dad05e76f", + "md5": "c6fa69a086903f8c56a6695e8733a1b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_rand.c", + "type": "file", + "name": "bn_rand.c", + "base_name": "bn_rand", + "extension": ".c", + "size": 7378, + "date": "2017-05-25", + "sha1": "8017c637e0acff704cee894aed01b2c362bdd17a", + "md5": "7bee2df39e3a303705dc58dc9022e4f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_recp.c", + "type": "file", + "name": "bn_recp.c", + "base_name": "bn_recp", + "extension": ".c", + "size": 4663, + "date": "2017-05-25", + "sha1": "5026dff433384f34d6fb649cfb2460088760c9c6", + "md5": "7cb1f5d73038406549606778e0a0da87", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_shift.c", + "type": "file", + "name": "bn_shift.c", + "base_name": "bn_shift", + "extension": ".c", + "size": 3827, + "date": "2017-05-25", + "sha1": "c41c8108391419c9524a96899f40aaf7a3149562", + "md5": "59785e83dc70a6e2f78750de52348453", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_sqr.c", + "type": "file", + "name": "bn_sqr.c", + "base_name": "bn_sqr", + "extension": ".c", + "size": 5504, + "date": "2017-05-25", + "sha1": "90f68787cb3676233a306620b359fd221bc5d9c0", + "md5": "b459d15bd9efc3c88794e029e2f49db6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_sqrt.c", + "type": "file", + "name": "bn_sqrt.c", + "base_name": "bn_sqrt", + "extension": ".c", + "size": 9441, + "date": "2017-05-25", + "sha1": "c71a12b983998edb4936cc1de1d43f5a9cdb0758", + "md5": "aaa4bca79970b5bea3c86ce9e560c0f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_srp.c", + "type": "file", + "name": "bn_srp.c", + "base_name": "bn_srp", + "extension": ".c", + "size": 21875, + "date": "2017-05-25", + "sha1": "02b7a2c63636d6d6a000dc7b73012acbbccfaf1e", + "md5": "147ae8e7be81880cad701d45ebfaac8a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_word.c", + "type": "file", + "name": "bn_word.c", + "base_name": "bn_word", + "extension": ".c", + "size": 4525, + "date": "2017-05-25", + "sha1": "2bd10aee62e2875b2b1e94714075ad5c2c38d844", + "md5": "bd3ecbc27db42d54b4bc4907c0d6c136", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/bn_x931p.c", + "type": "file", + "name": "bn_x931p.c", + "base_name": "bn_x931p", + "extension": ".c", + "size": 5698, + "date": "2017-05-25", + "sha1": "4088061ccf61f0a4826c18451d61f6d78e5dab51", + "md5": "be24262d6f5b05c0e12ed9bb54c77653", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 3487, + "date": "2017-05-25", + "sha1": "73bbf61649eea89c7eb37f723ecf5e853fcdab7f", + "md5": "8f046762c03864ba6dcfeeb43debf1f1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/README.pod", + "type": "file", + "name": "README.pod", + "base_name": "README", + "extension": ".pod", + "size": 9830, + "date": "2017-05-25", + "sha1": "783325d89bd30a8c377d5c31f4ffb56cbcaffebb", + "md5": "feef15bc85cb3113fe14c9ca6d5e0dfb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 242, + "end_line": 244, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 238, + "end_line": 240 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/rsaz_exp.c", + "type": "file", + "name": "rsaz_exp.c", + "base_name": "rsaz_exp", + "extension": ".c", + "size": 14029, + "date": "2017-05-25", + "sha1": "f38ea2e959bed4de7257e1f280dd13282db7555e", + "md5": "8a5da9ae184ff21dbc1e2c79d6c8054e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 43, + "matched_rule": { + "identifier": "bsd-new_152.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012, Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 46, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/rsaz_exp.h", + "type": "file", + "name": "rsaz_exp.h", + "base_name": "rsaz_exp", + "extension": ".h", + "size": 4382, + "date": "2017-05-25", + "sha1": "c28e43cd491eda758aec866db429e84fc1b1f2d2", + "md5": "3fb3cc62081f9410eb223b1eb11f7173", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 43, + "matched_rule": { + "identifier": "bsd-new_152.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012, Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 46, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 38, + "dirs_count": 0, + "size_count": 900262, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/alpha-mont.pl", + "type": "file", + "name": "alpha-mont.pl", + "base_name": "alpha-mont", + "extension": ".pl", + "size": 5948, + "date": "2017-05-25", + "sha1": "e808abc9b7c14e22716449d6c5f16f71ee40fe68", + "md5": "f89314b192e3f957e0b5b10cf439cb47", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/armv4-gf2m.pl", + "type": "file", + "name": "armv4-gf2m.pl", + "base_name": "armv4-gf2m", + "extension": ".pl", + "size": 8385, + "date": "2017-05-25", + "sha1": "54d9727bd532f3c347f2a5e9e65eefb7a3a1ddd7", + "md5": "770a546d35074f1dec7d9eeb2b400782", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/armv4-mont.pl", + "type": "file", + "name": "armv4-mont.pl", + "base_name": "armv4-mont", + "extension": ".pl", + "size": 19690, + "date": "2017-05-25", + "sha1": "b12a1331c10b2d9ec03bfd857e535cfbc79e07cc", + "md5": "57779966b3899c754d080e467aecffb4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/armv8-mont.pl", + "type": "file", + "name": "armv8-mont.pl", + "base_name": "armv8-mont", + "extension": ".pl", + "size": 36761, + "date": "2017-05-25", + "sha1": "5b4da62a71ebc01f37b5f8bad7e79825170c73d1", + "md5": "13ebd0617fa724ac8b5c6cd9667c68e6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/bn-586.pl", + "type": "file", + "name": "bn-586.pl", + "base_name": "bn-586", + "extension": ".pl", + "size": 16794, + "date": "2017-05-25", + "sha1": "3be882d57adbc706c9156c895f8790ca3f28af6f", + "md5": "d0f399c0feeba930b90e77a11a5a53c0", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/bn-c64xplus.asm", + "type": "file", + "name": "bn-c64xplus.asm", + "base_name": "bn-c64xplus", + "extension": ".asm", + "size": 10129, + "date": "2017-05-25", + "sha1": "dc0b3ba93030285eadb549f6833f70a7e98aac9d", + "md5": "7e01af712f33c714d734d4f1e5caea4f", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "NASM", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 3, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 3, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 9, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/c64xplus-gf2m.pl", + "type": "file", + "name": "c64xplus-gf2m.pl", + "base_name": "c64xplus-gf2m", + "extension": ".pl", + "size": 4091, + "date": "2017-05-25", + "sha1": "cdc4de56b6e8a60f21eb0f67b33f2ed5d385feda", + "md5": "8ca025df74885c1bb3c916bf672d0116", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/co-586.pl", + "type": "file", + "name": "co-586.pl", + "base_name": "co-586", + "extension": ".pl", + "size": 6014, + "date": "2017-05-25", + "sha1": "16b26a5742a2dcf749d62cb1a028bb2a4b27717d", + "md5": "dc3ed1e7802b1d8d8b68856ea225f8ca", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/ia64-mont.pl", + "type": "file", + "name": "ia64-mont.pl", + "base_name": "ia64-mont", + "extension": ".pl", + "size": 26350, + "date": "2017-05-25", + "sha1": "5de7cbe46fe52e6a5d7a712dc8ed4e8d6b18da2c", + "md5": "aaf59f22c6652f45935fc7ff1895434b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/ia64.S", + "type": "file", + "name": "ia64.S", + "base_name": "ia64", + "extension": ".S", + "size": 45642, + "date": "2017-05-25", + "sha1": "cb5fbb6595820a6f456d916cd13d470f6aefcaa2", + "md5": "ba62c216d00c3960554050c0d97e43d1", + "mime_type": "text/x-asm", + "file_type": "assembler source, UTF-8 Unicode text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 8, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 8, + "end_line": 19, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 19, + "end_line": 19, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov " + ], + "start_line": 3, + "end_line": 4 + }, + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 6, + "end_line": 6 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 15, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/mips-mont.pl", + "type": "file", + "name": "mips-mont.pl", + "base_name": "mips-mont", + "extension": ".pl", + "size": 9207, + "date": "2017-05-25", + "sha1": "d5bfb87e7166812544bf1f1d19a98412f9e05624", + "md5": "fd7e2887e1c099f04e3ce3d422cf658d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/mips.pl", + "type": "file", + "name": "mips.pl", + "base_name": "mips", + "extension": ".pl", + "size": 45730, + "date": "2017-05-25", + "sha1": "276f549469a05448c3be74f66ef58d541b95775a", + "md5": "a55803c2ae50e6fc8dd195f82d19a935", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 15, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 15, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 15, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/pa-risc2.s", + "type": "file", + "name": "pa-risc2.s", + "base_name": "pa-risc2", + "extension": ".s", + "size": 48919, + "date": "2017-05-25", + "sha1": "de4425a019e5934a960dc7a0aaea376a814e3cd1", + "md5": "2c71c898c465d9ae218d732f5ed2e60f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Chris Ruemmler" + ], + "start_line": 23, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/pa-risc2W.s", + "type": "file", + "name": "pa-risc2W.s", + "base_name": "pa-risc2W", + "extension": ".s", + "size": 46995, + "date": "2017-05-25", + "sha1": "c4f9cff4d7f30fc953ab0d799cba8dfaebebda8b", + "md5": "127133ce30f7f7a50cccd1151f0a0c36", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Chris Ruemmler" + ], + "start_line": 18, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/parisc-mont.pl", + "type": "file", + "name": "parisc-mont.pl", + "base_name": "parisc-mont", + "extension": ".pl", + "size": 27348, + "date": "2017-05-25", + "sha1": "a8282e03d8bad03bef2ac98ca20746bf7002655c", + "md5": "feedeb09de65697bfe45d4a17e640ab1", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/ppc-mont.pl", + "type": "file", + "name": "ppc-mont.pl", + "base_name": "ppc-mont", + "extension": ".pl", + "size": 7950, + "date": "2017-05-25", + "sha1": "676962a37ca5fa91f666c0cdadacf8749544eae4", + "md5": "7e3438064fc728a3c91b0c9a35090eaa", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/ppc.pl", + "type": "file", + "name": "ppc.pl", + "base_name": "ppc", + "extension": ".pl", + "size": 45663, + "date": "2017-05-25", + "sha1": "98aa1a0ff52a59fdb3b8b243667c0aed6a7310ce", + "md5": "3ccd6e68f29f416713762cce8047b393", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/ppc64-mont.pl", + "type": "file", + "name": "ppc64-mont.pl", + "base_name": "ppc64-mont", + "extension": ".pl", + "size": 40493, + "date": "2017-05-25", + "sha1": "d6ab806f193aa17c65d415cefd801c249c55741d", + "md5": "99016aa9a5b005befad44965a1db71ce", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/rsaz-avx2.pl", + "type": "file", + "name": "rsaz-avx2.pl", + "base_name": "rsaz-avx2", + "extension": ".pl", + "size": 54456, + "date": "2017-05-25", + "sha1": "fd60f1565575d8d28cd88f98f32afe6a288d75fa", + "md5": "b562d72f9f6d82e2a115de84dcadc7c3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 43, + "matched_rule": { + "identifier": "bsd-new_152.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012, Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 46, + "end_line": 49 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 67, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/rsaz-x86_64.pl", + "type": "file", + "name": "rsaz-x86_64.pl", + "base_name": "rsaz-x86_64", + "extension": ".pl", + "size": 47931, + "date": "2017-05-25", + "sha1": "91e4510bd1b7738c6d27d2044664a29cb2e51fbc", + "md5": "a97f67baedf2a12487a8f0580049d71d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 43, + "matched_rule": { + "identifier": "bsd-new_152.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012, Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 46, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/s390x-gf2m.pl", + "type": "file", + "name": "s390x-gf2m.pl", + "base_name": "s390x-gf2m", + "extension": ".pl", + "size": 5463, + "date": "2017-05-25", + "sha1": "4646f1d02736eed0296daf033675fd2d0620b8e9", + "md5": "d78f07aa105510c5b065e323309e2fa8", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/s390x-mont.pl", + "type": "file", + "name": "s390x-mont.pl", + "base_name": "s390x-mont", + "extension": ".pl", + "size": 7000, + "date": "2017-05-25", + "sha1": "f7b866551e4237021da876a06479c48e71068da4", + "md5": "9755af1305fd21bad6552250494bac15", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/s390x.S", + "type": "file", + "name": "s390x.S", + "base_name": "s390x", + "extension": ".S", + "size": 13351, + "date": "2017-05-25", + "sha1": "5e67ea7c493b30c39abdc4ecd359ab4f50456fd1", + "md5": "261776f103d2142f9198697934f0b8e0", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/sparct4-mont.pl", + "type": "file", + "name": "sparct4-mont.pl", + "base_name": "sparct4-mont", + "extension": ".pl", + "size": 27929, + "date": "2017-05-25", + "sha1": "76eb2abd632d639ed8726e5fa4da1f349b97a0bd", + "md5": "b9d8d3c6f06ed226417311c15ebc0226", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 54.88, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 54.88, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 54.88, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller and Andy Polyakov " + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/sparcv8.S", + "type": "file", + "name": "sparcv8.S", + "base_name": "sparcv8", + "extension": ".S", + "size": 28335, + "date": "2017-05-25", + "sha1": "73008b2b0ed2f269b5f8adb5d76caf63e228bd0d", + "md5": "28e74ed83f1aafd82fef608aa253877c", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 8, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov " + ], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 6, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/sparcv8plus.S", + "type": "file", + "name": "sparcv8plus.S", + "base_name": "sparcv8plus", + "extension": ".S", + "size": 33288, + "date": "2017-05-25", + "sha1": "015f39a3b81f7db1b365225a7fef1089954c14e7", + "md5": "a58123879057107658529edd9aae744e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 8, + "end_line": 11, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov " + ], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 6, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/sparcv9-gf2m.pl", + "type": "file", + "name": "sparcv9-gf2m.pl", + "base_name": "sparcv9-gf2m", + "extension": ".pl", + "size": 4818, + "date": "2017-05-25", + "sha1": "ab9cc3b1eaa6980dac7b29e1059161e8a86bd6ca", + "md5": "b79e61dc54c18b2303133fb745732231", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/sparcv9-mont.pl", + "type": "file", + "name": "sparcv9-mont.pl", + "base_name": "sparcv9-mont", + "extension": ".pl", + "size": 14040, + "date": "2017-05-25", + "sha1": "079db2e8a67db47fbf36a6477288ddc545839281", + "md5": "2159f0c1c6fb2485975d02fcc7c305c4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/sparcv9a-mont.pl", + "type": "file", + "name": "sparcv9a-mont.pl", + "base_name": "sparcv9a-mont", + "extension": ".pl", + "size": 20965, + "date": "2017-05-25", + "sha1": "5ffa0fa20e108ea3685bbdee00dc4e0f91770daf", + "md5": "46fae0d06289faf47db5694a39206ba9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/via-mont.pl", + "type": "file", + "name": "via-mont.pl", + "base_name": "via-mont", + "extension": ".pl", + "size": 9367, + "date": "2017-05-25", + "sha1": "d17a9aa3972225e12580054d552b5d607e18029f", + "md5": "0cdb7724ba48da12e5aee7986fb5b301", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/vis3-mont.pl", + "type": "file", + "name": "vis3-mont.pl", + "base_name": "vis3-mont", + "extension": ".pl", + "size": 9279, + "date": "2017-05-25", + "sha1": "0181506d12d812dfcbab53fb178af0f15a0a5ba7", + "md5": "6dca2620f0340eeed6176e2be10f85a6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/x86-gf2m.pl", + "type": "file", + "name": "x86-gf2m.pl", + "base_name": "x86-gf2m", + "extension": ".pl", + "size": 8100, + "date": "2017-05-25", + "sha1": "623f892e7c656c6f15d0fa3a5a019ece8f594a3b", + "md5": "6a3db558215427313dadf4a5ccb97724", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/x86-mont.pl", + "type": "file", + "name": "x86-mont.pl", + "base_name": "x86-mont", + "extension": ".pl", + "size": 17648, + "date": "2017-05-25", + "sha1": "e203972a57fdffed3e58045a9cbbada0552ffbf1", + "md5": "82cacfe99ed146f32775065ea6770d97", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/x86.pl", + "type": "file", + "name": "x86.pl", + "base_name": "x86", + "extension": ".pl", + "size": 996, + "date": "2017-05-25", + "sha1": "fe16a6c5b781fea763d868bcf787949dd6bccee5", + "md5": "dbfbf2fc5fcb5e6e770b80b8ffee6e2d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/x86_64-gcc.c", + "type": "file", + "name": "x86_64-gcc.c", + "base_name": "x86_64-gcc", + "extension": ".c", + "size": 19083, + "date": "2017-05-25", + "sha1": "458fd0c2462eb2a4f97ad4fed4f7a163cfa85765", + "md5": "a48cee8487d3e57c6f70d3a73ae04716", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 21, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 21, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 21, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 21, + "end_line": 21, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/x86_64-gf2m.pl", + "type": "file", + "name": "x86_64-gf2m.pl", + "base_name": "x86_64-gf2m", + "extension": ".pl", + "size": 8917, + "date": "2017-05-25", + "sha1": "0db43f14adc1376e2c02a28ea63a07391a2e4106", + "md5": "4d52aff55f4081960f2e6c709ad340f9", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/x86_64-mont.pl", + "type": "file", + "name": "x86_64-mont.pl", + "base_name": "x86_64-mont", + "extension": ".pl", + "size": 31828, + "date": "2017-05-25", + "sha1": "0eb0ffd297b7b815cfe22c5e81d6c0d298562947", + "md5": "993506cab23d94da9f172d4b59865ca4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/bn/asm/x86_64-mont5.pl", + "type": "file", + "name": "x86_64-mont5.pl", + "base_name": "x86_64-mont5", + "extension": ".pl", + "size": 85359, + "date": "2017-05-25", + "sha1": "1f208c01aa7487f2382a7c2443f146e988b35efb", + "md5": "084554c3045ca4f31abf414703bdea8f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/buffer", + "type": "directory", + "name": "buffer", + "base_name": "buffer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 5340, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/buffer/buf_err.c", + "type": "file", + "name": "buf_err.c", + "base_name": "buf_err", + "extension": ".c", + "size": 1152, + "date": "2017-05-25", + "sha1": "40e423d2c9a6ee7e209fc0c0994ac2c9cbf3bd21", + "md5": "820728f2f09b826981bc83c932261deb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/buffer/buffer.c", + "type": "file", + "name": "buffer.c", + "base_name": "buffer", + "extension": ".c", + "size": 4124, + "date": "2017-05-25", + "sha1": "a7667ef9fef0125f734f46f1cce096d8486793f2", + "md5": "8b456247f683ffbdd35136516e8abfbc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/buffer/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 64, + "date": "2017-05-25", + "sha1": "54bde9e994b97dde16fce62313ad9199bc9614d5", + "md5": "0f1eaeb41744fbb3c6ae35ec24a714a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia", + "type": "directory", + "name": "camellia", + "base_name": "camellia", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 1, + "size_count": 118849, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 480, + "date": "2017-05-25", + "sha1": "949f0c9a72d95eefc9a7cb2eda351995a2570069", + "md5": "f99d88717a3321031ab49b12c950fc71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/camellia.c", + "type": "file", + "name": "camellia.c", + "base_name": "camellia", + "extension": ".c", + "size": 27311, + "date": "2017-05-25", + "sha1": "0e3bc2a5793f0f274b3534be4dcde5093f152c3b", + "md5": "10e9b29752efb651314bb88dbe42385f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation)" + ], + "holders": [ + "NTT (Nippon Telegraph and Telephone Corporation)" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/cmll_cbc.c", + "type": "file", + "name": "cmll_cbc.c", + "base_name": "cmll_cbc", + "extension": ".c", + "size": 849, + "date": "2017-05-25", + "sha1": "b510b5db4beeadb5732a5bca510f27fa44258537", + "md5": "2784b6b6acd418bfee3860133b2d141d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/cmll_cfb.c", + "type": "file", + "name": "cmll_cfb.c", + "base_name": "cmll_cfb", + "extension": ".c", + "size": 1675, + "date": "2017-05-25", + "sha1": "6dc268aade18d9567a058e41bd0b788d78f22cb5", + "md5": "6caf305f780f129fcc691463322e7cce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/cmll_ctr.c", + "type": "file", + "name": "cmll_ctr.c", + "base_name": "cmll_ctr", + "extension": ".c", + "size": 863, + "date": "2017-05-25", + "sha1": "a4053c26f5198103e428fcf31fc3d6d4feef0991", + "md5": "db6b7192eee5f567aa3993f8e8b1f7f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/cmll_ecb.c", + "type": "file", + "name": "cmll_ecb.c", + "base_name": "cmll_ecb", + "extension": ".c", + "size": 651, + "date": "2017-05-25", + "sha1": "7eba6da268270adf39d199dd7349108644254416", + "md5": "16be8b4a64824a7bc57ecdf42e81a13b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/cmll_locl.h", + "type": "file", + "name": "cmll_locl.h", + "base_name": "cmll_locl", + "extension": ".h", + "size": 1850, + "date": "2017-05-25", + "sha1": "dc3da24312fce5ece228db2677b070db9ca832d9", + "md5": "d7e89a362d23a84b8ec3d17e4d2f6cea", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation)" + ], + "holders": [ + "NTT (Nippon Telegraph and Telephone Corporation)" + ], + "authors": [], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/cmll_misc.c", + "type": "file", + "name": "cmll_misc.c", + "base_name": "cmll_misc", + "extension": ".c", + "size": 1122, + "date": "2017-05-25", + "sha1": "4823f718de4aa618cb335d916808f50e1b815608", + "md5": "0c1f1d643a7f81fcb300458e4504564e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/cmll_ofb.c", + "type": "file", + "name": "cmll_ofb.c", + "base_name": "cmll_ofb", + "extension": ".c", + "size": 906, + "date": "2017-05-25", + "sha1": "e227381071f921ab700ff772810deb7939d0acf9", + "md5": "b12f9dd2d4403426c2ed37d873ef97b8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 83142, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/asm/cmll-x86.pl", + "type": "file", + "name": "cmll-x86.pl", + "base_name": "cmll-x86", + "extension": ".pl", + "size": 33413, + "date": "2017-05-25", + "sha1": "262abb8e49c054997d18a2aed019149579c856f8", + "md5": "dff1a051cee0db21873c488d21ab0bb6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "gpl-2.0", + "score": 30.0, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 13, + "end_line": 14, + "matched_rule": { + "identifier": "gpl-2.0_39.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0" + ] + } + }, + { + "key": "lgpl-2.1", + "score": 40.0, + "short_name": "LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", + "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1", + "spdx_license_key": "LGPL-2.1", + "spdx_url": "https://spdx.org/licenses/LGPL-2.1", + "start_line": 14, + "end_line": 15, + "matched_rule": { + "identifier": "lgpl-2.1_36.RULE", + "license_choice": false, + "licenses": [ + "lgpl-2.1" + ] + } + }, + { + "key": "mpl-1.1", + "score": 30.0, + "short_name": "MPL 1.1", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/MPL-1.1.html", + "text_url": "http://www.mozilla.com/MPL/1.1/index.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mpl-1.1", + "spdx_license_key": "MPL-1.1", + "spdx_url": "https://spdx.org/licenses/MPL-1.1", + "start_line": 15, + "end_line": 16, + "matched_rule": { + "identifier": "mpl-1.1_16.RULE", + "license_choice": false, + "licenses": [ + "mpl-1.1" + ] + } + }, + { + "key": "bsd-new", + "score": 15.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "bsd-new_145.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2008 Andy Polyakov " + ], + "holders": [ + "Andy Polyakov" + ], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/asm/cmll-x86_64.pl", + "type": "file", + "name": "cmll-x86_64.pl", + "base_name": "cmll-x86_64", + "extension": ".pl", + "size": 26014, + "date": "2017-05-25", + "sha1": "c3f742e43dfbebddb524f5225a7f7b7635f94536", + "md5": "d0e752dcc45dfb4557af4eeb0e84ca4b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "gpl-2.0", + "score": 30.0, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 13, + "end_line": 14, + "matched_rule": { + "identifier": "gpl-2.0_39.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0" + ] + } + }, + { + "key": "lgpl-2.1", + "score": 40.0, + "short_name": "LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", + "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1", + "spdx_license_key": "LGPL-2.1", + "spdx_url": "https://spdx.org/licenses/LGPL-2.1", + "start_line": 14, + "end_line": 15, + "matched_rule": { + "identifier": "lgpl-2.1_36.RULE", + "license_choice": false, + "licenses": [ + "lgpl-2.1" + ] + } + }, + { + "key": "mpl-1.1", + "score": 30.0, + "short_name": "MPL 1.1", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/MPL-1.1.html", + "text_url": "http://www.mozilla.com/MPL/1.1/index.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mpl-1.1", + "spdx_license_key": "MPL-1.1", + "spdx_url": "https://spdx.org/licenses/MPL-1.1", + "start_line": 15, + "end_line": 16, + "matched_rule": { + "identifier": "mpl-1.1_16.RULE", + "license_choice": false, + "licenses": [ + "mpl-1.1" + ] + } + }, + { + "key": "bsd-new", + "score": 15.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "bsd-new_145.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2008 Andy Polyakov " + ], + "holders": [ + "Andy Polyakov" + ], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/camellia/asm/cmllt4-sparcv9.pl", + "type": "file", + "name": "cmllt4-sparcv9.pl", + "base_name": "cmllt4-sparcv9", + "extension": ".pl", + "size": 23715, + "date": "2017-05-25", + "sha1": "3a9e3d7292db6b0ee77f40fc432732aba2ec6b96", + "md5": "e0cd2d3794d15c7b4540fd63fda02af5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 54.88, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 54.88, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 54.88, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller and Andy Polyakov " + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast", + "type": "directory", + "name": "cast", + "base_name": "cast", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 1, + "size_count": 53143, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 271, + "date": "2017-05-25", + "sha1": "fdf2e2570fb39d0cb7dd6a0516e0cf14df398548", + "md5": "b2c782ebdf8dda21303c1b12abc259e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/c_cfb64.c", + "type": "file", + "name": "c_cfb64.c", + "base_name": "c_cfb64", + "extension": ".c", + "size": 2088, + "date": "2017-05-25", + "sha1": "79a8f929a72217de264109e3f218c6b02667052e", + "md5": "468ffd9511c12cbc68c4266b9ac84ec5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/c_ecb.c", + "type": "file", + "name": "c_ecb.c", + "base_name": "c_ecb", + "extension": ".c", + "size": 786, + "date": "2017-05-25", + "sha1": "5b230dc8bfe885881ef47322413a1a8f9eb23291", + "md5": "37f416265fcd710117e7a40928c741b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/c_enc.c", + "type": "file", + "name": "c_enc.c", + "base_name": "c_enc", + "extension": ".c", + "size": 4095, + "date": "2017-05-25", + "sha1": "05339d54026b15959dcdf47ddc2908d9e02a9030", + "md5": "3ac6b94cf7af9820ed8e1661709f8b23", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/c_ofb64.c", + "type": "file", + "name": "c_ofb64.c", + "base_name": "c_ofb64", + "extension": ".c", + "size": 1586, + "date": "2017-05-25", + "sha1": "2cb81078bebe6bd61a4a486a8b1b3858828c465d", + "md5": "a9dba63ce71972deb97e5f718336abbb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/c_skey.c", + "type": "file", + "name": "c_skey.c", + "base_name": "c_skey", + "extension": ".c", + "size": 4453, + "date": "2017-05-25", + "sha1": "4a3801aceaef21bd700428cda2cc55f5996ef947", + "md5": "f955a374f2a1c1643d09dd678c1553ff", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/cast_lcl.h", + "type": "file", + "name": "cast_lcl.h", + "base_name": "cast_lcl", + "extension": ".h", + "size": 7335, + "date": "2017-05-25", + "sha1": "7e5d35beaf9708dc2ad496def6809287c1659c23", + "md5": "c105ad0fa1235b0741374675292327e3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/cast_s.h", + "type": "file", + "name": "cast_s.h", + "base_name": "cast_s", + "extension": ".h", + "size": 27421, + "date": "2017-05-25", + "sha1": "9e8ad5d342a4c7745cedbc544e9393ee9a6b015e", + "md5": "cfd52bdc72601cc504ca38f188cc27e7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 5108, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cast/asm/cast-586.pl", + "type": "file", + "name": "cast-586.pl", + "base_name": "cast-586", + "extension": ".pl", + "size": 5108, + "date": "2017-05-25", + "sha1": "5104b919f71282fc1cc0f6f765ba218dad3ec2f6", + "md5": "099d4d188d52d97760edba2ac59aa7da", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha", + "type": "directory", + "name": "chacha", + "base_name": "chacha", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 1, + "size_count": 206534, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 670, + "date": "2017-05-25", + "sha1": "f5d911f96a2e12a7ca976c9cedd7127ef130ac06", + "md5": "2ce0b42f4cf5a7ecf10683a0b9d7a86b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/chacha_enc.c", + "type": "file", + "name": "chacha_enc.c", + "base_name": "chacha_enc", + "extension": ".c", + "size": 3702, + "date": "2017-05-25", + "sha1": "e638a9a64ecedb252b2a9d6ebc06adfd4b880b2e", + "md5": "39fa8aabb028db04445910c7909803b8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 202162, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-armv4.pl", + "type": "file", + "name": "chacha-armv4.pl", + "base_name": "chacha-armv4", + "extension": ".pl", + "size": 27559, + "date": "2017-05-25", + "sha1": "1f5b64784bb713c75b629de0cac35740459c635a", + "md5": "fe8280017e318be43e1b398a5e421e2d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-armv8.pl", + "type": "file", + "name": "chacha-armv8.pl", + "base_name": "chacha-armv8", + "extension": ".pl", + "size": 26836, + "date": "2017-05-25", + "sha1": "6f8f06ae693f80b355ff2e4ca0e5a1b088817b05", + "md5": "df20c1529c594301c21086b61bdab693", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-c64xplus.pl", + "type": "file", + "name": "chacha-c64xplus.pl", + "base_name": "chacha-c64xplus", + "extension": ".pl", + "size": 25899, + "date": "2017-05-25", + "sha1": "d628dc21e77fdd1e66415a8b24ca973e0a54447e", + "md5": "af90968a64c510f04e3d0ad8b5e3c6f0", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-ppc.pl", + "type": "file", + "name": "chacha-ppc.pl", + "base_name": "chacha-ppc", + "extension": ".pl", + "size": 23253, + "date": "2017-05-25", + "sha1": "c915316b38ae836a84c56caebb901205c9953720", + "md5": "ac32d0e2bf0b98550d6b27a2b2fc31f3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-s390x.pl", + "type": "file", + "name": "chacha-s390x.pl", + "base_name": "chacha-s390x", + "extension": ".pl", + "size": 8014, + "date": "2017-05-25", + "sha1": "2d01626028507ab40dc4792c989108060c39d44d", + "md5": "ef55aa0816f57dc40c2b21cc94197543", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-x86.pl", + "type": "file", + "name": "chacha-x86.pl", + "base_name": "chacha-x86", + "extension": ".pl", + "size": 33790, + "date": "2017-05-25", + "sha1": "64b894be14c60a5674aa4a5a571012b2d4ca8961", + "md5": "2226c31a19052877a8091d3a1e280d2e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/chacha/asm/chacha-x86_64.pl", + "type": "file", + "name": "chacha-x86_64.pl", + "base_name": "chacha-x86_64", + "extension": ".pl", + "size": 56811, + "date": "2017-05-25", + "sha1": "52a1411e1490aa22ca38514f20c30946ac5f75c0", + "md5": "a64472a35ebe2a0a9a620328f6ccd538", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cmac", + "type": "directory", + "name": "cmac", + "base_name": "cmac", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 11357, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cmac/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 74, + "date": "2017-05-25", + "sha1": "78cc9652682636a6c53f9f884b81e342109fb5d6", + "md5": "ca06eec3439222870bf39f8f8be36a01", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cmac/cm_ameth.c", + "type": "file", + "name": "cm_ameth.c", + "base_name": "cm_ameth", + "extension": ".c", + "size": 1038, + "date": "2017-05-25", + "sha1": "478805ba6838abd6a6e75abaeb72d8e158d5cb7d", + "md5": "aba312ba5250f0bf2649903e0b74a422", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cmac/cm_pmeth.c", + "type": "file", + "name": "cm_pmeth.c", + "base_name": "cm_pmeth", + "extension": ".c", + "size": 3649, + "date": "2017-05-25", + "sha1": "3efaee70738eaebfffc58e718e4194d1ce7a93b2", + "md5": "e8f95e050a6d4578da705c3d2dc48f26", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cmac/cmac.c", + "type": "file", + "name": "cmac.c", + "base_name": "cmac", + "extension": ".c", + "size": 6596, + "date": "2017-05-25", + "sha1": "029b5acbf5e4ba2954f66bffe85d7548ef3102fe", + "md5": "49f4dc4036a1fa6f84c5039d6c485ab7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms", + "type": "directory", + "name": "cms", + "base_name": "cms", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 0, + "size_count": 185810, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 217, + "date": "2017-05-25", + "sha1": "34dcdbdb662b534362e2d9a150b5158e174b4120", + "md5": "6646335865ada8fc8778a60c313381e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_asn1.c", + "type": "file", + "name": "cms_asn1.c", + "base_name": "cms_asn1", + "extension": ".c", + "size": 17683, + "date": "2017-05-25", + "sha1": "7ad89941caf33fb95a0545be3d23d8202e7cee39", + "md5": "0ab60b381e538488bbf4834805db57cf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_att.c", + "type": "file", + "name": "cms_att.c", + "base_name": "cms_att", + "extension": ".c", + "size": 4506, + "date": "2017-05-25", + "sha1": "03a3166add336c70c3c003fb64ef41d48139abce", + "md5": "a613a43e60990c47312d5f24b4cddb33", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_cd.c", + "type": "file", + "name": "cms_cd.c", + "base_name": "cms_cd", + "extension": ".c", + "size": 2263, + "date": "2017-05-25", + "sha1": "31db8b334574fbbff5330a99337aed151a939b71", + "md5": "75dd8fb31b43671bf06758f97b39f4e5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_dd.c", + "type": "file", + "name": "cms_dd.c", + "base_name": "cms_dd", + "extension": ".c", + "size": 2391, + "date": "2017-05-25", + "sha1": "9356ba3ae0e6b5530861db0554af57fb3461abd9", + "md5": "7fa6b94275b237fafc40cbadd6ffce3b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_enc.c", + "type": "file", + "name": "cms_enc.c", + "base_name": "cms_enc", + "extension": ".c", + "size": 6365, + "date": "2017-05-25", + "sha1": "ac8ffe088a5be6306cea49bc0b0a8e774b881e12", + "md5": "ce865ea97b88708ff867950e8e78b5f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_env.c", + "type": "file", + "name": "cms_env.c", + "base_name": "cms_env", + "extension": ".c", + "size": 23576, + "date": "2017-05-25", + "sha1": "40506749662219362cec4a95f4781c436e4589d2", + "md5": "0aa9d5999bb2867c944b6940b8151b77", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_err.c", + "type": "file", + "name": "cms_err.c", + "base_name": "cms_err", + "extension": ".c", + "size": 12834, + "date": "2017-05-25", + "sha1": "19aac1ca82b5b65fa1823a83d7bb40264227953b", + "md5": "fdca2fdd34390ad69fc61bf60a62519c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_ess.c", + "type": "file", + "name": "cms_ess.c", + "base_name": "cms_ess", + "extension": ".c", + "size": 9586, + "date": "2017-05-25", + "sha1": "b572e10fbc5b5f1999c9ed6033ae954597704554", + "md5": "613e480fbed6dc6cd139ce97bfe6edca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_io.c", + "type": "file", + "name": "cms_io.c", + "base_name": "cms_io", + "extension": ".c", + "size": 2782, + "date": "2017-05-25", + "sha1": "3b797e2b6270bfabd255afa10f28821120c5f868", + "md5": "4887a05a32c04c9ddcd43f73915ed62a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_kari.c", + "type": "file", + "name": "cms_kari.c", + "base_name": "cms_kari", + "extension": ".c", + "size": 12612, + "date": "2017-05-25", + "sha1": "5dc73eccb4e64e63a4ada5f65a879708b1d3d5eb", + "md5": "cd7ba017f5f908e70da2115c23e66751", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_lcl.h", + "type": "file", + "name": "cms_lcl.h", + "base_name": "cms_lcl", + "extension": ".h", + "size": 13721, + "date": "2017-05-25", + "sha1": "7584a7e20412ddb7394865ef46f41308473b8e8e", + "md5": "6a3817c4ef1ce9e4d338a71b4f5e227c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_lib.c", + "type": "file", + "name": "cms_lib.c", + "base_name": "cms_lib", + "extension": ".c", + "size": 15821, + "date": "2017-05-25", + "sha1": "157d41d96f53623b927591f8336043def46b2f0d", + "md5": "ab961d30e4b25b4019835ddf78622456", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_pwri.c", + "type": "file", + "name": "cms_pwri.c", + "base_name": "cms_pwri", + "extension": ".c", + "size": 11537, + "date": "2017-05-25", + "sha1": "c7b9fd87d28e98d10003a9e9ee3dbb22cbeefaa0", + "md5": "27c7b8b0b4320c2978d6da29d43aa9ee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_sd.c", + "type": "file", + "name": "cms_sd.c", + "base_name": "cms_sd", + "extension": ".c", + "size": 26750, + "date": "2017-05-25", + "sha1": "cc7583989752a9d254a220cfa805562587b9acc4", + "md5": "00f246fd70c04c64f1bc59709acbcc43", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/cms/cms_smime.c", + "type": "file", + "name": "cms_smime.c", + "base_name": "cms_smime", + "extension": ".c", + "size": 23166, + "date": "2017-05-25", + "sha1": "61bcc764126ca95c892c35fd2149bbd79c38b32f", + "md5": "fbb9cde122a7eb37209f5888c3b85819", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/comp", + "type": "directory", + "name": "comp", + "base_name": "comp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 21714, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/comp/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 97, + "date": "2017-05-25", + "sha1": "8007359b709a91efb54a90f8b1f7b110e5b94254", + "md5": "9090290d29626017501ed93781866969", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/comp/c_zlib.c", + "type": "file", + "name": "c_zlib.c", + "base_name": "c_zlib", + "extension": ".c", + "size": 17114, + "date": "2017-05-25", + "sha1": "a1e97b368b1884f83a7adadd0bd575e82470741d", + "md5": "5600af551051829dd3145937b22cdbaa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/comp/comp_err.c", + "type": "file", + "name": "comp_err.c", + "base_name": "comp_err", + "extension": ".c", + "size": 1415, + "date": "2017-05-25", + "sha1": "7eb2416bc044e5154b471ca79cddf0bf04e32a1f", + "md5": "022c5abecb9c6b15f887ff462f251504", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/comp/comp_lcl.h", + "type": "file", + "name": "comp_lcl.h", + "base_name": "comp_lcl", + "extension": ".h", + "size": 1074, + "date": "2017-05-25", + "sha1": "25e9b205f73d788f6ebe4b3613314129e697d35e", + "md5": "64f6f337abce3eafc3fc48f2266d1a1b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/comp/comp_lib.c", + "type": "file", + "name": "comp_lib.c", + "base_name": "comp_lib", + "extension": ".c", + "size": 2014, + "date": "2017-05-25", + "sha1": "6643e7e5ad746509a7f76f22eb50794ccd2d1a8c", + "md5": "5d81240dc037cc74a9976573648b97bf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf", + "type": "directory", + "name": "conf", + "base_name": "conf", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 62377, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 144, + "date": "2017-05-25", + "sha1": "88e9310accca7f7febf266150bdac6894a892647", + "md5": "a0874812bc86d331143981994d76c6cf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/conf_api.c", + "type": "file", + "name": "conf_api.c", + "base_name": "conf_api", + "extension": ".c", + "size": 5481, + "date": "2017-05-25", + "sha1": "dfebde7e4b1ec1baefb12f34d28924ee2f63e77f", + "md5": "17fc95af74f77afa58740beeaff826cb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/conf_def.c", + "type": "file", + "name": "conf_def.c", + "base_name": "conf_def", + "extension": ".c", + "size": 16683, + "date": "2017-05-25", + "sha1": "5eb281708a4539f7b3b9a9ee7cff69074a8e1326", + "md5": "41f4f4146a6506d5d3dfdceb23b465fb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/conf_def.h", + "type": "file", + "name": "conf_def.h", + "base_name": "conf_def", + "extension": ".h", + "size": 7538, + "date": "2017-05-25", + "sha1": "249e26de725931dd62e591488a76f436464abb94", + "md5": "818643173d68bc97a0c9bd33d053fde4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/conf_err.c", + "type": "file", + "name": "conf_err.c", + "base_name": "conf_err", + "extension": ".c", + "size": 3150, + "date": "2017-05-25", + "sha1": "0be1d17cd62a9d7fd84ee09a5868f55c847432d3", + "md5": "b8cb05f3b67bfae68bf8e9987811e23b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/conf_lib.c", + "type": "file", + "name": "conf_lib.c", + "base_name": "conf_lib", + "extension": ".c", + "size": 8386, + "date": "2017-05-25", + "sha1": "1960cb17b6712e10b4136bf2421bfa1a7425308c", + "md5": "2f869148a38450313f6d48829e23d095", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/conf_mall.c", + "type": "file", + "name": "conf_mall.c", + "base_name": "conf_mall", + "extension": ".c", + "size": 784, + "date": "2017-05-25", + "sha1": "d84eb7983efefb69d2f1798698b16853fb490688", + "md5": "049c3134af55e166d05b9a32df5d64c8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/conf_mod.c", + "type": "file", + "name": "conf_mod.c", + "base_name": "conf_mod", + "extension": ".c", + "size": 13645, + "date": "2017-05-25", + "sha1": "a5bf9399153d7c0f1810d0217c4e34f30fc48368", + "md5": "ebaeba951facfc0a0ba0f625e89980b2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/conf_sap.c", + "type": "file", + "name": "conf_sap.c", + "base_name": "conf_sap", + "extension": ".c", + "size": 1630, + "date": "2017-05-25", + "sha1": "818df60b35653575ba1edb119bbe7a5534147665", + "md5": "3fe35ca8d2b3be6ec3eff4d02b34dd5f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/conf/keysets.pl", + "type": "file", + "name": "keysets.pl", + "base_name": "keysets", + "extension": ".pl", + "size": 4936, + "date": "2017-05-25", + "sha1": "5465132247be0f679ff0816b4e08cdd8b872afac", + "md5": "10db201638c60f9ac36985ebf4370b38", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct", + "type": "directory", + "name": "ct", + "base_name": "ct", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 64163, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 173, + "date": "2017-05-25", + "sha1": "133c14b06f809f490791f7ec3afd8b0beac66fd9", + "md5": "e5a316c3661470d91f92a43ca7a6c27d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_b64.c", + "type": "file", + "name": "ct_b64.c", + "base_name": "ct_b64", + "extension": ".c", + "size": 4197, + "date": "2017-05-25", + "sha1": "a0afda0fcff2e245ac92b5b15767b45ef9c1476d", + "md5": "5ef7b038d625e30d5d8097a17e8bca3d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_err.c", + "type": "file", + "name": "ct_err.c", + "base_name": "ct_err", + "extension": ".c", + "size": 3734, + "date": "2017-05-25", + "sha1": "31f40f13d38f68568d3dbfc63de61668002fb35a", + "md5": "28f0151c1129a62846786ef990890d85", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_locl.h", + "type": "file", + "name": "ct_locl.h", + "base_name": "ct_locl", + "extension": ".h", + "size": 7893, + "date": "2017-05-25", + "sha1": "b4fd3611558b92dd6c46f3ef5f4eea4b2b085c97", + "md5": "fa2119b4eca84f82d4b7a80b112e3315", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_log.c", + "type": "file", + "name": "ct_log.c", + "base_name": "ct_log", + "extension": ".c", + "size": 7386, + "date": "2017-05-25", + "sha1": "60b1aac0f350d5595a35155bda12de970cbe17ed", + "md5": "95b73da2e3a17bdfa09af16f00e93134", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_oct.c", + "type": "file", + "name": "ct_oct.c", + "base_name": "ct_oct", + "extension": ".c", + "size": 9778, + "date": "2017-05-25", + "sha1": "c3b2b6d667323d8b70f5423f651f79352b30032b", + "md5": "9e68bb1450ea97b80b89f97bb11f3ce9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_policy.c", + "type": "file", + "name": "ct_policy.c", + "base_name": "ct_policy", + "extension": ".c", + "size": 2461, + "date": "2017-05-25", + "sha1": "113d568feb9111e17033b883f151d6be755d0177", + "md5": "3c65d6869d64dfaf48a700768258677a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_prn.c", + "type": "file", + "name": "ct_prn.c", + "base_name": "ct_prn", + "extension": ".c", + "size": 3938, + "date": "2017-05-25", + "sha1": "660ec0d192e54509c3644c2b0856ed317fc2025d", + "md5": "a52fe1d0a911a124aef5cf3d9f5afb9b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_sct.c", + "type": "file", + "name": "ct_sct.c", + "base_name": "ct_sct", + "extension": ".c", + "size": 10793, + "date": "2017-05-25", + "sha1": "05be7c29b6d3b10d841006f5f661ccb1116c5859", + "md5": "924c4eda350e2643b5e56a1998e17121", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_sct_ctx.c", + "type": "file", + "name": "ct_sct_ctx.c", + "base_name": "ct_sct_ctx", + "extension": ".c", + "size": 7054, + "date": "2017-05-25", + "sha1": "d457d6d812f5219b98ac3f30364cc6d7c884f97c", + "md5": "62bd65b9c27dc490342fdaa8c34cf261", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_vfy.c", + "type": "file", + "name": "ct_vfy.c", + "base_name": "ct_vfy", + "extension": ".c", + "size": 3892, + "date": "2017-05-25", + "sha1": "4db77ff9efc6cdfb571e771a9927a9baef8aae01", + "md5": "4caa7f3c4ff56d54f57c8dfb16538540", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ct/ct_x509v3.c", + "type": "file", + "name": "ct_x509v3.c", + "base_name": "ct_x509v3", + "extension": ".c", + "size": 2864, + "date": "2017-05-25", + "sha1": "c9fa37c7c709dbf86139271f1bc30c075eb841b9", + "md5": "849345c6df139b523c73906bdeb8b68b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des", + "type": "directory", + "name": "des", + "base_name": "des", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 30, + "dirs_count": 1, + "size_count": 171134, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 732, + "date": "2017-05-25", + "sha1": "0cf3ffda47b8775b1d727aae6010206bb47857aa", + "md5": "1e981ee961b117c7b73f0fe59b3478b2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/cbc_cksm.c", + "type": "file", + "name": "cbc_cksm.c", + "base_name": "cbc_cksm", + "extension": ".c", + "size": 1642, + "date": "2017-05-25", + "sha1": "b425d1e5aa4a96adab4ebbdd5e921199ab1c09fc", + "md5": "e6d89569c5e2cbfbfc82ca6b42082402", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/cbc_enc.c", + "type": "file", + "name": "cbc_enc.c", + "base_name": "cbc_enc", + "extension": ".c", + "size": 423, + "date": "2017-05-25", + "sha1": "71896dd1b7879c409d39b55b1e5e355d1fb1abf8", + "md5": "89789285c2b9596b20476894c166689f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/cfb64ede.c", + "type": "file", + "name": "cfb64ede.c", + "base_name": "cfb64ede", + "extension": ".c", + "size": 5532, + "date": "2017-05-25", + "sha1": "c08e3e9bce03a4483f586a870e2772305716d93d", + "md5": "cfc7fc280111f73c9d22f0f94ad810d9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/cfb64enc.c", + "type": "file", + "name": "cfb64enc.c", + "base_name": "cfb64enc", + "extension": ".c", + "size": 2092, + "date": "2017-05-25", + "sha1": "e8cbf8c15ab9468d6ab7c11e4aa459db3bb41ca5", + "md5": "c5bd5bbd0e269c303e01ecc003f09ecc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/cfb_enc.c", + "type": "file", + "name": "cfb_enc.c", + "base_name": "cfb_enc", + "extension": ".c", + "size": 4468, + "date": "2017-05-25", + "sha1": "2921e5953c632e60816e4eb8f5b432b137eff3a3", + "md5": "ed36617e6e63e68946ff4f3e72171522", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/des_enc.c", + "type": "file", + "name": "des_enc.c", + "base_name": "des_enc", + "extension": ".c", + "size": 8783, + "date": "2017-05-25", + "sha1": "8d5b096f4c71b8e5f50ecc76da86a81f3ef61707", + "md5": "9c8fc09004f92213e40354738f3a6e9f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/des_locl.h", + "type": "file", + "name": "des_locl.h", + "base_name": "des_locl", + "extension": ".h", + "size": 8254, + "date": "2017-05-25", + "sha1": "64d5bb659f9b59ddafbde76254892643c8aaf6fd", + "md5": "eebb5e57041c59da5b14ff8f332af4fc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/ecb3_enc.c", + "type": "file", + "name": "ecb3_enc.c", + "base_name": "ecb3_enc", + "extension": ".c", + "size": 923, + "date": "2017-05-25", + "sha1": "aeaf4c5af43d4108e57ff428745641fd0d6141d6", + "md5": "fab2a9202d0939b0fd3a36c0a6a9875c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/ecb_enc.c", + "type": "file", + "name": "ecb_enc.c", + "base_name": "ecb_enc", + "extension": ".c", + "size": 1188, + "date": "2017-05-25", + "sha1": "2c44a00ec90e025e0dc5443f78db4d6ac6c79006", + "md5": "d5a33d0ee14538a1c41d75d4fc9506e3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/fcrypt.c", + "type": "file", + "name": "fcrypt.c", + "base_name": "fcrypt", + "extension": ".c", + "size": 4129, + "date": "2017-05-25", + "sha1": "51d497017cf77ad9519c0ce847dc1f6282320f69", + "md5": "dfaee307ee3293050a59e934387cd4ab", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Bjorn Gronvall " + ], + "start_line": 25, + "end_line": 26 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/fcrypt_b.c", + "type": "file", + "name": "fcrypt_b.c", + "base_name": "fcrypt_b", + "extension": ".c", + "size": 1977, + "date": "2017-05-25", + "sha1": "3238d5780357979e6792181de8c4a00cec1e304a", + "md5": "637f0608b9651f15d7bf47368fb3895e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/ncbc_enc.c", + "type": "file", + "name": "ncbc_enc.c", + "base_name": "ncbc_enc", + "extension": ".c", + "size": 3022, + "date": "2017-05-25", + "sha1": "422a911e3a4049a8ff135991c9519a9f50f360bb", + "md5": "2e73ac1bb0f28f8276bd74699d11c571", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/ofb64ede.c", + "type": "file", + "name": "ofb64ede.c", + "base_name": "ofb64ede", + "extension": ".c", + "size": 1664, + "date": "2017-05-25", + "sha1": "14d641da240bacd0dc9db5bbb41005166bf56b5a", + "md5": "c25e586788369063ebabaf7200520cff", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/ofb64enc.c", + "type": "file", + "name": "ofb64enc.c", + "base_name": "ofb64enc", + "extension": ".c", + "size": 1573, + "date": "2017-05-25", + "sha1": "4a331056bc6e2eb15327795e2b0f1eb6f36e4ad0", + "md5": "1db6309b76745bca78419ccf7e0b0635", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/ofb_enc.c", + "type": "file", + "name": "ofb_enc.c", + "base_name": "ofb_enc", + "extension": ".c", + "size": 2447, + "date": "2017-05-25", + "sha1": "a360e52df7f87d0751e65dff9b7f064092f8f402", + "md5": "185918c2a928693c049a7dc9244a13b7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/pcbc_enc.c", + "type": "file", + "name": "pcbc_enc.c", + "base_name": "pcbc_enc", + "extension": ".c", + "size": 1996, + "date": "2017-05-25", + "sha1": "d2a8c712ae71d850d7e11cc5aef678477d7e43fe", + "md5": "294124818f5ce99e96c05fae083018ba", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/qud_cksm.c", + "type": "file", + "name": "qud_cksm.c", + "base_name": "qud_cksm", + "extension": ".c", + "size": 2445, + "date": "2017-05-25", + "sha1": "9264a12ab2776d03460e43bea4e6b63a9d4cfde4", + "md5": "d60ddcf09ccfefd8f662dc11db353977", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/rand_key.c", + "type": "file", + "name": "rand_key.c", + "base_name": "rand_key", + "extension": ".c", + "size": 611, + "date": "2017-05-25", + "sha1": "dc5577dadb8bdbf2c93c78e03977dc5896bb07af", + "md5": "ebca1b20b83525b4c635f32bcf80d31a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/rpc_des.h", + "type": "file", + "name": "rpc_des.h", + "base_name": "rpc_des", + "extension": ".h", + "size": 2769, + "date": "2017-05-25", + "sha1": "21ff29694fcc87d425aa5a2268c46a0c7f067b75", + "md5": "7d003045b036662331730725911045da", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "sun-rpc", + "score": 100.0, + "short_name": "Sun RPC License", + "category": "Permissive", + "owner": "Oracle (Sun)", + "homepage_url": "http://www.opensource.apple.com/license/sunrpc/", + "text_url": "http://www.opensource.apple.com/license/sunrpc/", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:sun-rpc", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 12, + "end_line": 37, + "matched_rule": { + "identifier": "sun-rpc.LICENSE", + "license_choice": false, + "licenses": [ + "sun-rpc" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 1986 by Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 41, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/rpc_enc.c", + "type": "file", + "name": "rpc_enc.c", + "base_name": "rpc_enc", + "extension": ".c", + "size": 979, + "date": "2017-05-25", + "sha1": "4b04a79055d2926d80cbba949cce10e9526f5dc9", + "md5": "15c0ba1ee53ea3ca3d1f751969ca4c2d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/set_key.c", + "type": "file", + "name": "set_key.c", + "base_name": "set_key", + "extension": ".c", + "size": 15556, + "date": "2017-05-25", + "sha1": "f46b5f33c40e5c8ca083a2e717e06dff63368bca", + "md5": "8924d0937a55265e2e4469f4f1a4d476", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/spr.h", + "type": "file", + "name": "spr.h", + "base_name": "spr", + "extension": ".h", + "size": 8357, + "date": "2017-05-25", + "sha1": "03dcc3b1113733fc28dc1336f63fc1deeadfdd26", + "md5": "5f2514c495e32dd67f4cccd7f6ecafaf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/str2key.c", + "type": "file", + "name": "str2key.c", + "base_name": "str2key", + "extension": ".c", + "size": 2954, + "date": "2017-05-25", + "sha1": "3c3d52ac477916952b623221b11bb481dd13dd7c", + "md5": "ee2279c91b60d3e86f3ebd19a10f3f3b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/xcbc_enc.c", + "type": "file", + "name": "xcbc_enc.c", + "base_name": "xcbc_enc", + "extension": ".c", + "size": 3006, + "date": "2017-05-25", + "sha1": "57c03eb23d23e44275227fd623c56600342e5573", + "md5": "a8c25cf9f4cea636141fdd82a73fbdb4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 83612, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/asm/crypt586.pl", + "type": "file", + "name": "crypt586.pl", + "base_name": "crypt586", + "extension": ".pl", + "size": 4633, + "date": "2017-05-25", + "sha1": "280ba9e4be531882ca75cd906da1a309e36952fe", + "md5": "d8040f21fa13108c3091b785f4493e60", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/asm/des-586.pl", + "type": "file", + "name": "des-586.pl", + "base_name": "des-586", + "extension": ".pl", + "size": 14925, + "date": "2017-05-25", + "sha1": "036cad40581751a6ff9a305113210478bff46475", + "md5": "6657e4e150a90eb90ccea8bfddc795fc", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/asm/des_enc.m4", + "type": "file", + "name": "des_enc.m4", + "base_name": "des_enc", + "extension": ".m4", + "size": 46725, + "date": "2017-05-25", + "sha1": "2f70dee7bb9cba1b9e8ec4b758df4849e49168bd", + "md5": "3ea8a8eec8addbc6b0f33a51b2fb13a6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/asm/desboth.pl", + "type": "file", + "name": "desboth.pl", + "base_name": "desboth", + "extension": ".pl", + "size": 1695, + "date": "2017-05-25", + "sha1": "06c023bd2cbf0f8da21ec3a7784d471f1466bfdf", + "md5": "8ed0a4586abdd770e05507f8ffdde92a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/des/asm/dest4-sparcv9.pl", + "type": "file", + "name": "dest4-sparcv9.pl", + "base_name": "dest4-sparcv9", + "extension": ".pl", + "size": 15634, + "date": "2017-05-25", + "sha1": "2045e3470f296d55529f880cf561a96e581adaa4", + "md5": "65d191aed2ea65dfa6f44527f48528d3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 54.88, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 54.88, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 54.88, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 12, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller and Andy Polyakov " + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh", + "type": "directory", + "name": "dh", + "base_name": "dh", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 20, + "dirs_count": 0, + "size_count": 75289, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 195, + "date": "2017-05-25", + "sha1": "6c262a217359337f781a53877846bb3371e44f7b", + "md5": "c32bfb61feda35b08490635e76028c13", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh1024.pem", + "type": "file", + "name": "dh1024.pem", + "base_name": "dh1024", + "extension": ".pem", + "size": 245, + "date": "2017-05-25", + "sha1": "da4ca87ebe296b9a3da0ce36416425cb28b4ec1c", + "md5": "b0096a85178a06119c05867670572313", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh192.pem", + "type": "file", + "name": "dh192.pem", + "base_name": "dh192", + "extension": ".pem", + "size": 103, + "date": "2017-05-25", + "sha1": "27f1581407a9ba4c0f209226c7cfb8d46e8cd717", + "md5": "e373b4cac0facb8b1f5f2955a2c92693", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh2048.pem", + "type": "file", + "name": "dh2048.pem", + "base_name": "dh2048", + "extension": ".pem", + "size": 848, + "date": "2017-05-25", + "sha1": "70de2a72fd6288024189d43c0797c2fbbd4dfc6d", + "md5": "8a7193ec85c2baecccf862f109ddce6f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh4096.pem", + "type": "file", + "name": "dh4096.pem", + "base_name": "dh4096", + "extension": ".pem", + "size": 770, + "date": "2017-05-25", + "sha1": "770c50e94578ac0e2b97c7d77796d28c23013f1c", + "md5": "85b04fff1538d2eb247db6841c95f935", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh512.pem", + "type": "file", + "name": "dh512.pem", + "base_name": "dh512", + "extension": ".pem", + "size": 156, + "date": "2017-05-25", + "sha1": "08a827918953f1c173a6b923113e40acf48257f5", + "md5": "4567f6709f7a315c2dbbc28dc797f62a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_ameth.c", + "type": "file", + "name": "dh_ameth.c", + "base_name": "dh_ameth", + "extension": ".c", + "size": 22140, + "date": "2017-05-25", + "sha1": "b6eef1b02742be51ec705af8fa42feebb057c00e", + "md5": "d18fdc4859b3f020557b03db99c3f01e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_asn1.c", + "type": "file", + "name": "dh_asn1.c", + "base_name": "dh_asn1", + "extension": ".c", + "size": 3694, + "date": "2017-05-25", + "sha1": "da44f28d29aad17ca9764aaaa980ceee4a99ffdb", + "md5": "c91e9a00899d78b73b48357bde6be41d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_check.c", + "type": "file", + "name": "dh_check.c", + "base_name": "dh_check", + "extension": ".c", + "size": 4597, + "date": "2017-05-25", + "sha1": "730a24bd0822e91d3c33a9052269036d82ef467f", + "md5": "4d600154b927b260c9eeac498e47374e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_depr.c", + "type": "file", + "name": "dh_depr.c", + "base_name": "dh_depr", + "extension": ".c", + "size": 1178, + "date": "2017-05-25", + "sha1": "3f72890c600a97c489d7ef2de6cb931226c0f186", + "md5": "570a83b76fc96cb360746e3523defba7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_err.c", + "type": "file", + "name": "dh_err.c", + "base_name": "dh_err", + "extension": ".c", + "size": 2812, + "date": "2017-05-25", + "sha1": "cb9f774720e51e87bbd9f180de00ebd8ff397c59", + "md5": "5a317e8fc5a9abc036aae8a06636511f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_gen.c", + "type": "file", + "name": "dh_gen.c", + "base_name": "dh_gen", + "extension": ".c", + "size": 3915, + "date": "2017-05-25", + "sha1": "3ed3a4b5df0e66d3a5852e722f993572f12b52a3", + "md5": "17f8bbb9089362d56e16610dd7b950e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_kdf.c", + "type": "file", + "name": "dh_kdf.c", + "base_name": "dh_kdf", + "extension": ".c", + "size": 4331, + "date": "2017-05-25", + "sha1": "124efd88350255131cd472ec6c1aa0591857ecd0", + "md5": "06bb739206b3dfd52106e65b5c65da14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_key.c", + "type": "file", + "name": "dh_key.c", + "base_name": "dh_key", + "extension": ".c", + "size": 5257, + "date": "2017-05-25", + "sha1": "f7136f88c46d6a67624e9fef86453d0e2037a756", + "md5": "a6e096dd42aef3bd9c6639cdcbd786ca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_lib.c", + "type": "file", + "name": "dh_lib.c", + "base_name": "dh_lib", + "extension": ".c", + "size": 5884, + "date": "2017-05-25", + "sha1": "c785d0299dba31ce752a926fe6ff7df317964a98", + "md5": "340d82bd5a1a64ea0ba78cd7d065fe82", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_locl.h", + "type": "file", + "name": "dh_locl.h", + "base_name": "dh_locl", + "extension": ".h", + "size": 1634, + "date": "2017-05-25", + "sha1": "da71417a785c935cb80c5e82ad560cfc7b85b22c", + "md5": "cdc8735e8cf4d926631ee9dcf7c81b53", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_meth.c", + "type": "file", + "name": "dh_meth.c", + "base_name": "dh_meth", + "extension": ".c", + "size": 3617, + "date": "2017-05-25", + "sha1": "cb3308d96f6f388671bcd48475935a6cfab6893d", + "md5": "3406d11972ecc97082fc903d1682d8ce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_pmeth.c", + "type": "file", + "name": "dh_pmeth.c", + "base_name": "dh_pmeth", + "extension": ".c", + "size": 12020, + "date": "2017-05-25", + "sha1": "b7adced9029ff8580e84ca52cd9f698f4805a386", + "md5": "21a9d89390e066f4f35766ed57dc7140", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_prn.c", + "type": "file", + "name": "dh_prn.c", + "base_name": "dh_prn", + "extension": ".c", + "size": 771, + "date": "2017-05-25", + "sha1": "ed0cf6080236b0f2856c6989440cd68496109efb", + "md5": "9a6459ba7f89db4830eb256c52789b77", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dh/dh_rfc5114.c", + "type": "file", + "name": "dh_rfc5114.c", + "base_name": "dh_rfc5114", + "extension": ".c", + "size": 1122, + "date": "2017-05-25", + "sha1": "acf71ac54bbea59bad00c9b34c42ab77f074d2a3", + "md5": "6af97ea36accb72e5448d179e0c32398", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa", + "type": "directory", + "name": "dsa", + "base_name": "dsa", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 15, + "dirs_count": 0, + "size_count": 76246, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 214, + "date": "2017-05-25", + "sha1": "e807066ce5b2e244ea92cbfaa03f560a18c7b37f", + "md5": "27a621fb0039fdc2b38472d3c4cabc59", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_ameth.c", + "type": "file", + "name": "dsa_ameth.c", + "base_name": "dsa_ameth", + "extension": ".c", + "size": 13830, + "date": "2017-05-25", + "sha1": "66b25d70ab1ee1d76781b0c94413863c619b9c8e", + "md5": "81446ff9f74ed49fad1de1cc95d48346", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_asn1.c", + "type": "file", + "name": "dsa_asn1.c", + "base_name": "dsa_asn1", + "extension": ".c", + "size": 4160, + "date": "2017-05-25", + "sha1": "f87bca9f4362cfab59bdf75a9b648c1f7eac63fa", + "md5": "0327baedcff19cc4a58ace204232ebac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_depr.c", + "type": "file", + "name": "dsa_depr.c", + "base_name": "dsa_depr", + "extension": ".c", + "size": 1651, + "date": "2017-05-25", + "sha1": "3442e6c77df1a1d5692a2e769ce4d50d0730b8b5", + "md5": "b1be2f0eb795c690b8c092f725219650", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_err.c", + "type": "file", + "name": "dsa_err.c", + "base_name": "dsa_err", + "extension": ".c", + "size": 2995, + "date": "2017-05-25", + "sha1": "6da7847cb7cca3bec9237886ba1f79f720c1ecdc", + "md5": "ed962eecb185a04f31b01d34358faf2f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_gen.c", + "type": "file", + "name": "dsa_gen.c", + "base_name": "dsa_gen", + "extension": ".c", + "size": 16564, + "date": "2017-05-25", + "sha1": "0ad381ef95bd426ac5da35b377e4db2959ddc082", + "md5": "6327b07ce70c23f9884c6acc073b9fdc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_key.c", + "type": "file", + "name": "dsa_key.c", + "base_name": "dsa_key", + "extension": ".c", + "size": 1822, + "date": "2017-05-25", + "sha1": "6496dde9862e978864b0c96f58c7ac20f65dd78f", + "md5": "729c07d5d2623065c9ae16f9e8f852da", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_lib.c", + "type": "file", + "name": "dsa_lib.c", + "base_name": "dsa_lib", + "extension": ".c", + "size": 7870, + "date": "2017-05-25", + "sha1": "1e303f93dd15e955449ee1858ec443438757b4a5", + "md5": "cfe9236c33a5c2f77c2850e524a6ae84", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_locl.h", + "type": "file", + "name": "dsa_locl.h", + "base_name": "dsa_locl", + "extension": ".h", + "size": 2884, + "date": "2017-05-25", + "sha1": "6c6cd4a7746f3c57e8509316198e7bf5342a1c32", + "md5": "12841b27a35bac02427e09fc7ace5998", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_meth.c", + "type": "file", + "name": "dsa_meth.c", + "base_name": "dsa_meth", + "extension": ".c", + "size": 5152, + "date": "2017-05-25", + "sha1": "d8a68669db7e50742dc89b87bee315c85fd54fc3", + "md5": "77d02f1ab56a2dba38078bb8f30fe223", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 11, + "end_line": 13, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_ossl.c", + "type": "file", + "name": "dsa_ossl.c", + "base_name": "dsa_ossl", + "extension": ".c", + "size": 9030, + "date": "2017-05-25", + "sha1": "6c14d009add6e035731f80e53217ac4c4f1884d6", + "md5": "d7b8eda06314e42816f7d7dfea8ffe91", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_pmeth.c", + "type": "file", + "name": "dsa_pmeth.c", + "base_name": "dsa_pmeth", + "extension": ".c", + "size": 7073, + "date": "2017-05-25", + "sha1": "11a2b74b3541bcf6a58b419b94dec11cc24809d3", + "md5": "a8d2eb11bb069b5f43a23b5907403e09", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_prn.c", + "type": "file", + "name": "dsa_prn.c", + "base_name": "dsa_prn", + "extension": ".c", + "size": 1626, + "date": "2017-05-25", + "sha1": "40dc111a508dda3ba7ebbcea1f3faf978fe1191e", + "md5": "dc4842316b95e16e8d0dc896f59f22e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_sign.c", + "type": "file", + "name": "dsa_sign.c", + "base_name": "dsa_sign", + "extension": ".c", + "size": 748, + "date": "2017-05-25", + "sha1": "4e56262bcc7d72151eb1d4b458373da0aa84cc95", + "md5": "1abe03762dfb2b88b02d37ffee4de305", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dsa/dsa_vrf.c", + "type": "file", + "name": "dsa_vrf.c", + "base_name": "dsa_vrf", + "extension": ".c", + "size": 627, + "date": "2017-05-25", + "sha1": "7a85d8fa75d8e0489b38a7c002b16e4d41cc5b28", + "md5": "7cbda96778b89fe594f10ef4f3d441fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso", + "type": "directory", + "name": "dso", + "base_name": "dso", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 0, + "size_count": 68444, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 142, + "date": "2017-05-25", + "sha1": "ab4fe924365881d653c114fa2287b0496a2fd2e3", + "md5": "10b8908e3f32b819ef5941bd2fe860dc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/dso_dl.c", + "type": "file", + "name": "dso_dl.c", + "base_name": "dso_dl", + "extension": ".c", + "size": 8335, + "date": "2017-05-25", + "sha1": "84fdd5c6208db2f1e4a1be73f293d598e42cd88a", + "md5": "edbefd1a676d966b0f787a6dfb4b8e4f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/dso_dlfcn.c", + "type": "file", + "name": "dso_dlfcn.c", + "base_name": "dso_dlfcn", + "extension": ".c", + "size": 10173, + "date": "2017-05-25", + "sha1": "a779db0a631e45eb047c4f12c2035d88db68765d", + "md5": "aad4589f5081de409b34a2c8eb560c4b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/dso_err.c", + "type": "file", + "name": "dso_err.c", + "base_name": "dso_err", + "extension": ".c", + "size": 3958, + "date": "2017-05-25", + "sha1": "fda42d27407e1846402b4fbe17296c1936c98f82", + "md5": "49163ba0635e32833fa3f588436a4330", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/dso_lib.c", + "type": "file", + "name": "dso_lib.c", + "base_name": "dso_lib", + "extension": ".c", + "size": 9502, + "date": "2017-05-25", + "sha1": "f9d47e43337c6842a9154dc0221ec098760bb24a", + "md5": "c5a558a363182f16e62cfcfa9d1e88f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/dso_locl.h", + "type": "file", + "name": "dso_locl.h", + "base_name": "dso_locl", + "extension": ".h", + "size": 4108, + "date": "2017-05-25", + "sha1": "e325cf958f06cb2c3707901b3166ac8e8ca8dab3", + "md5": "6c0209f52fd34bdf3c37caee3302d1ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/dso_openssl.c", + "type": "file", + "name": "dso_openssl.c", + "base_name": "dso_openssl", + "extension": ".c", + "size": 617, + "date": "2017-05-25", + "sha1": "bfe29379048b6236994d193e09a963a7aab4e2f3", + "md5": "cd88118106d0b4b1f4b676116845d3d9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/dso_vms.c", + "type": "file", + "name": "dso_vms.c", + "base_name": "dso_vms", + "extension": ".c", + "size": 14554, + "date": "2017-05-25", + "sha1": "3b807b837b48412fe950afb2787064110b2285aa", + "md5": "ba10dde083cc2aebe0f0b854390b38c3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/dso/dso_win32.c", + "type": "file", + "name": "dso_win32.c", + "base_name": "dso_win32", + "extension": ".c", + "size": 17055, + "date": "2017-05-25", + "sha1": "c3dd426b440cdc3c1ad497c78fd10fb02190a296", + "md5": "3f8cf61066a0ea7d619445c8ea3372f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec", + "type": "directory", + "name": "ec", + "base_name": "ec", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 42, + "dirs_count": 1, + "size_count": 1867147, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 1250, + "date": "2017-05-25", + "sha1": "844c873c5fcd3645df70acf2b3ba243e1b38124c", + "md5": "1a9e64b42cb555a0d228f09c687961a0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/curve25519.c", + "type": "file", + "name": "curve25519.c", + "base_name": "curve25519", + "extension": ".c", + "size": 141706, + "date": "2017-05-25", + "sha1": "df940d851f6258cbb0e824aa60c87c16c27c2bf5", + "md5": "f860fbf70b09c1d1686992f9745ab57e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec2_mult.c", + "type": "file", + "name": "ec2_mult.c", + "base_name": "ec2_mult", + "extension": ".c", + "size": 11852, + "date": "2017-05-25", + "sha1": "15edbbc63e52362e1ae094ca228ca5fea4758920", + "md5": "95ea4a8036359d0e1b307b4b4a8e6d0c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec2_oct.c", + "type": "file", + "name": "ec2_oct.c", + "base_name": "ec2_oct", + "extension": ".c", + "size": 10262, + "date": "2017-05-25", + "sha1": "b636a36aea57bef30b05cd41bfea5fdd8a3c471c", + "md5": "8f8357e7d577708f04550d324483aefe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec2_smpl.c", + "type": "file", + "name": "ec2_smpl.c", + "base_name": "ec2_smpl", + "extension": ".c", + "size": 19977, + "date": "2017-05-25", + "sha1": "cb28d7d992357bb1e0543ab0c721c01b50ac4163", + "md5": "64b560c744e5b842fc541cabca12227a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_ameth.c", + "type": "file", + "name": "ec_ameth.c", + "base_name": "ec_ameth", + "extension": ".c", + "size": 23772, + "date": "2017-05-25", + "sha1": "2b5d0039db246fb40b053dce862553e6e330e981", + "md5": "fdbf5a55d4785da762fb6745cb3ae4bf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_asn1.c", + "type": "file", + "name": "ec_asn1.c", + "base_name": "ec_asn1", + "extension": ".c", + "size": 36576, + "date": "2017-05-25", + "sha1": "5eed42982a2ca41ab48182ce28ed509cf073a992", + "md5": "03bafdc25ab1116ad176000a1ab86b7e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_check.c", + "type": "file", + "name": "ec_check.c", + "base_name": "ec_check", + "extension": ".c", + "size": 1937, + "date": "2017-05-25", + "sha1": "be9a9fefaae4fb52fab78732b53b0f92b33fb1e7", + "md5": "2baeed94f47775a219f180993151e04c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_curve.c", + "type": "file", + "name": "ec_curve.c", + "base_name": "ec_curve", + "extension": ".c", + "size": 136350, + "date": "2017-05-25", + "sha1": "ac960858565a230bbd1eaaa4906c31eb7c791051", + "md5": "769e221542e61e85a6158fe8bc29f25c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Annie Yousar " + ], + "start_line": 2220, + "end_line": 2222 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_cvt.c", + "type": "file", + "name": "ec_cvt.c", + "base_name": "ec_cvt", + "extension": ".c", + "size": 3179, + "date": "2017-05-25", + "sha1": "954945377f828b3c26cd1bfca3eebea2d1163d0d", + "md5": "f5fb439a929c1ea10f173ed276b9e257", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_err.c", + "type": "file", + "name": "ec_err.c", + "base_name": "ec_err", + "extension": ".c", + "size": 15563, + "date": "2017-05-25", + "sha1": "bf48e872d7815427cc914ab1c73d57e4c580ffa4", + "md5": "44f53bc986aa25d5ca2d2dbca1bed703", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_key.c", + "type": "file", + "name": "ec_key.c", + "base_name": "ec_key", + "extension": ".c", + "size": 17110, + "date": "2017-05-25", + "sha1": "8c4ca51f13459d6e2d617fc32fc694dc9fc530f4", + "md5": "fc64fe4999162ef9ab8acc50a42beb20", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_kmeth.c", + "type": "file", + "name": "ec_kmeth.c", + "base_name": "ec_kmeth", + "extension": ".c", + "size": 10569, + "date": "2017-05-25", + "sha1": "47017453d7e6b0c23195443f3efa9fd5f6d3cf57", + "md5": "ce9e43faced769115f3cdec3b774147d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_lcl.h", + "type": "file", + "name": "ec_lcl.h", + "base_name": "ec_lcl", + "extension": ".h", + "size": 29817, + "date": "2017-05-25", + "sha1": "9f0b5389b666c44a4cc687aa59958a4356f84256", + "md5": "0d474a4c3926217df2c3d10edccfaa0c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_lib.c", + "type": "file", + "name": "ec_lib.c", + "base_name": "ec_lib", + "extension": ".c", + "size": 27774, + "date": "2017-05-25", + "sha1": "2a92e56ffefeb31e04871f8cee774ae8cacdf7be", + "md5": "4b52542dd1441cebab2c68318e84d7c9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_mult.c", + "type": "file", + "name": "ec_mult.c", + "base_name": "ec_mult", + "extension": ".c", + "size": 21334, + "date": "2017-05-25", + "sha1": "2e28e27b89e77aa1c4ad05f5db9ad1499fd2f057", + "md5": "2989830d3a132d716958e0d7c0ce4b7b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_oct.c", + "type": "file", + "name": "ec_oct.c", + "base_name": "ec_oct", + "extension": ".c", + "size": 5968, + "date": "2017-05-25", + "sha1": "9e7fc5c1a4eab065ac0300076c01f5a0a0e2f354", + "md5": "758cb8c219b5d8cca433151de835adbb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_pmeth.c", + "type": "file", + "name": "ec_pmeth.c", + "base_name": "ec_pmeth", + "extension": ".c", + "size": 12113, + "date": "2017-05-25", + "sha1": "90005879606eb2e67f92daecd43781ca8c7d71bd", + "md5": "572b4420d8b5b03bbaf16ac2bc675173", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ec_print.c", + "type": "file", + "name": "ec_print.c", + "base_name": "ec_print", + "extension": ".c", + "size": 2832, + "date": "2017-05-25", + "sha1": "32a5e4079eff4835145e52d0f82bbfb36bf76f83", + "md5": "5c49cb4460a0c2db6646122ef589706a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecdh_kdf.c", + "type": "file", + "name": "ecdh_kdf.c", + "base_name": "ecdh_kdf", + "extension": ".c", + "size": 2029, + "date": "2017-05-25", + "sha1": "da8bdef3563382e439fd6fe70deead1a4035d274", + "md5": "f1de0fc9898cb1af22d10849818f6647", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecdh_ossl.c", + "type": "file", + "name": "ecdh_ossl.c", + "base_name": "ecdh_ossl", + "extension": ".c", + "size": 4054, + "date": "2017-05-25", + "sha1": "25bdd5bd4709e5ea4729e6747882e2be2dcd5946", + "md5": "ef7e759f549ac753280fdbadddb2dcc4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 17, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 20, + "end_line": 21 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecdsa_ossl.c", + "type": "file", + "name": "ecdsa_ossl.c", + "base_name": "ecdsa_ossl", + "extension": ".c", + "size": 14062, + "date": "2017-05-25", + "sha1": "2916fd6d145e6c7d85c124747bcbaa01ea2938b9", + "md5": "38a9ce972ef6723428f99933ea9c2677", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecdsa_sign.c", + "type": "file", + "name": "ecdsa_sign.c", + "base_name": "ecdsa_sign", + "extension": ".c", + "size": 1809, + "date": "2017-05-25", + "sha1": "82f94b65a3a673f9d5c4475b82c5b557f059ba92", + "md5": "e53103cb721bf5d9c26bc31af363974e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecdsa_vrf.c", + "type": "file", + "name": "ecdsa_vrf.c", + "base_name": "ecdsa_vrf", + "extension": ".c", + "size": 1279, + "date": "2017-05-25", + "sha1": "aeab859289f777b2180adf1c7a8d8b0a98faf35c", + "md5": "8e72b834489618e64342b96f177719dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/eck_prn.c", + "type": "file", + "name": "eck_prn.c", + "base_name": "eck_prn", + "extension": ".c", + "size": 7965, + "date": "2017-05-25", + "sha1": "0298aeef20f7a60bf96417cffaa6f177e299a09c", + "md5": "7490f96dbd6599f305105d8430b64374", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_mont.c", + "type": "file", + "name": "ecp_mont.c", + "base_name": "ecp_mont", + "extension": ".c", + "size": 6727, + "date": "2017-05-25", + "sha1": "7ac0b4fb0620069397b5a7e99785149d6ab075d5", + "md5": "94ebc99d217f26fd77fb9c3f81b11495", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_nist.c", + "type": "file", + "name": "ecp_nist.c", + "base_name": "ecp_nist", + "extension": ".c", + "size": 4860, + "date": "2017-05-25", + "sha1": "fa0112e8511e5aa6a3ea0f8db31171f40ed0eedb", + "md5": "e8002c2a7a42169f2bc55dcc560a295d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_nistp224.c", + "type": "file", + "name": "ecp_nistp224.c", + "base_name": "ecp_nistp224", + "extension": ".c", + "size": 60179, + "date": "2017-05-25", + "sha1": "d7548e0a3ea6e8ea9d2f9b2eb507b31c7f3ecab1", + "md5": "cd3c737389c3581c70b2f72e54409494", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 23, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 29, + "end_line": 29, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + }, + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 30, + "end_line": 30, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2011 Google Inc." + ], + "holders": [ + "Google Inc." + ], + "authors": [], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_nistp256.c", + "type": "file", + "name": "ecp_nistp256.c", + "base_name": "ecp_nistp256", + "extension": ".c", + "size": 74960, + "date": "2017-05-25", + "sha1": "6f0ff97f2fb8e8d87ebd628f8a38989473c2cf21", + "md5": "6d221d4f6391fa1fcbb3c3c78cfd8857", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 23, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2011 Google Inc." + ], + "holders": [ + "Google Inc." + ], + "authors": [], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_nistp521.c", + "type": "file", + "name": "ecp_nistp521.c", + "base_name": "ecp_nistp521", + "extension": ".c", + "size": 71773, + "date": "2017-05-25", + "sha1": "ba449a6eb6ad0886eacf250cd703ed70c1d63040", + "md5": "0c8c98db7e4260cfc46b091dbb761f88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 23, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2011 Google Inc." + ], + "holders": [ + "Google Inc." + ], + "authors": [], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_nistputil.c", + "type": "file", + "name": "ecp_nistputil.c", + "base_name": "ecp_nistputil", + "extension": ".c", + "size": 10022, + "date": "2017-05-25", + "sha1": "c3c015d4bbea466ca4499edd57a4db4184afd077", + "md5": "a5d857b2ea7c341d411121d7e450d00f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 23, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2011 Google Inc." + ], + "holders": [ + "Google Inc." + ], + "authors": [], + "start_line": 10, + "end_line": 10 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_nistz256.c", + "type": "file", + "name": "ecp_nistz256.c", + "base_name": "ecp_nistz256", + "extension": ".c", + "size": 53858, + "date": "2017-05-25", + "sha1": "32c7d4dc83fa67316d0cb89da966110e0e00f4b1", + "md5": "d096d311986ccc648b18a610fd9cc7fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 71.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 24, + "matched_rule": { + "identifier": "apache-2.0_12.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2014 Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 28, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_nistz256_table.c", + "type": "file", + "name": "ecp_nistz256_table.c", + "base_name": "ecp_nistz256_table", + "extension": ".c", + "size": 617448, + "date": "2017-05-25", + "sha1": "ebfce55249bc24ba0e9bcea7fcd502f13a52ae3f", + "md5": "5a298d7c9b9916e3f6edec1d82d5adb0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_oct.c", + "type": "file", + "name": "ecp_oct.c", + "base_name": "ecp_oct", + "extension": ".c", + "size": 10622, + "date": "2017-05-25", + "sha1": "fb25378a437e4002a2a9b320a7527864294a4b96", + "md5": "ab71c154fe1b08458610476a5dfaf787", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecp_smpl.c", + "type": "file", + "name": "ecp_smpl.c", + "base_name": "ecp_smpl", + "extension": ".c", + "size": 37282, + "date": "2017-05-25", + "sha1": "2671142589ba17022b7b6bc6a3f39cf0dacb9ad9", + "md5": "b112fc2354fc3fe57c1097ccbb142069", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/ecx_meth.c", + "type": "file", + "name": "ecx_meth.c", + "base_name": "ecx_meth", + "extension": ".c", + "size": 9567, + "date": "2017-05-25", + "sha1": "55c82aaddbe83bea5795297b28075e41522f7c65", + "md5": "da8795919f3b709b413415e596ee092e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 348710, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/asm/ecp_nistz256-armv4.pl", + "type": "file", + "name": "ecp_nistz256-armv4.pl", + "base_name": "ecp_nistz256-armv4", + "extension": ".pl", + "size": 45704, + "date": "2017-05-25", + "sha1": "132eac80c01eb0c0b79dc26909d6cd2aafd17936", + "md5": "f65963d597a634d2b949c1aed5ae35d9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/asm/ecp_nistz256-armv8.pl", + "type": "file", + "name": "ecp_nistz256-armv8.pl", + "base_name": "ecp_nistz256-armv8", + "extension": ".pl", + "size": 38725, + "date": "2017-05-25", + "sha1": "b0f3fb7799e1cb35482106f85278e923dab33207", + "md5": "35810d78a6839257d5fbd661389480d6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/asm/ecp_nistz256-avx2.pl", + "type": "file", + "name": "ecp_nistz256-avx2.pl", + "base_name": "ecp_nistz256-avx2", + "extension": ".pl", + "size": 57858, + "date": "2017-05-25", + "sha1": "d727ac6fc80cc2d5391febf672d6ab68b7a77046", + "md5": "69014a9c201c083fb35724a1ef7ce76b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "apache-2.0", + "score": 100.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 14, + "end_line": 24, + "matched_rule": { + "identifier": "apache-2.0_7.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2014 Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 28, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/asm/ecp_nistz256-sparcv9.pl", + "type": "file", + "name": "ecp_nistz256-sparcv9.pl", + "base_name": "ecp_nistz256-sparcv9", + "extension": ".pl", + "size": 78273, + "date": "2017-05-25", + "sha1": "f3d6278e0cf979f4474287e30150fa42494e7bd6", + "md5": "75c09b0e14087db3fdf2bf1290c6d7fb", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/asm/ecp_nistz256-x86.pl", + "type": "file", + "name": "ecp_nistz256-x86.pl", + "base_name": "ecp_nistz256-x86", + "extension": ".pl", + "size": 57331, + "date": "2017-05-25", + "sha1": "5410becec50c553885c28c7837bee2ea63af8e28", + "md5": "2ca812d918ec21a297ef875e6c08204b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ec/asm/ecp_nistz256-x86_64.pl", + "type": "file", + "name": "ecp_nistz256-x86_64.pl", + "base_name": "ecp_nistz256-x86_64", + "extension": ".pl", + "size": 70819, + "date": "2017-05-25", + "sha1": "194ff4d58af3cbf05368859c2880e86acf257323", + "md5": "6b13a6a7ea2f35d26c6f98d214257bbd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "apache-2.0", + "score": 100.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 14, + "end_line": 24, + "matched_rule": { + "identifier": "apache-2.0_7.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2014 Intel Corporation" + ], + "holders": [ + "Intel Corporation" + ], + "authors": [], + "start_line": 12, + "end_line": 12 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Shay Gueron" + ], + "start_line": 28, + "end_line": 32 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 38, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine", + "type": "directory", + "name": "engine", + "base_name": "engine", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 26, + "dirs_count": 0, + "size_count": 197994, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 359, + "date": "2017-05-25", + "sha1": "b5885f5876fccbb760e2f74b58f0d1f8d4ceeaff", + "md5": "2dbaafc8b9969e6d077bab96f5aece70", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_all.c", + "type": "file", + "name": "eng_all.c", + "base_name": "eng_all", + "extension": ".c", + "size": 958, + "date": "2017-05-25", + "sha1": "4d3036cda8a7cff8268063976139ffe036454d13", + "md5": "90a4e13ee6dc9a025ebc7e332e4a5370", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_cnf.c", + "type": "file", + "name": "eng_cnf.c", + "base_name": "eng_cnf", + "extension": ".c", + "size": 5689, + "date": "2017-05-25", + "sha1": "045cbd9405af9b18dbabbaaaad62ccd6c3d8c7f0", + "md5": "172f8282ed5b4a2026c1b9ee3302cb7e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_cryptodev.c", + "type": "file", + "name": "eng_cryptodev.c", + "base_name": "eng_cryptodev", + "extension": ".c", + "size": 53706, + "date": "2017-05-25", + "sha1": "2339ac1b64333287634acc39dbaeb7b24dc63982", + "md5": "ca9f4f886ae5dc22c17c57496482379f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-simplified", + "score": 100.0, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 16, + "end_line": 34, + "matched_rule": { + "identifier": "bsd-simplified_27.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2002 Bob Beck ", + "Copyright (c) 2002 Theo de Raadt", + "Copyright (c) 2002 Markus Friedl" + ], + "holders": [ + "Bob Beck", + "Theo de Raadt", + "Markus Friedl" + ], + "authors": [], + "start_line": 11, + "end_line": 14 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_ctrl.c", + "type": "file", + "name": "eng_ctrl.c", + "base_name": "eng_ctrl", + "extension": ".c", + "size": 11658, + "date": "2017-05-25", + "sha1": "c9e90aab12644cd1a50ede2cd03b10cbc47a3a8e", + "md5": "7e0c25d9537e2ffb1e8d1f633717e3e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_dyn.c", + "type": "file", + "name": "eng_dyn.c", + "base_name": "eng_dyn", + "extension": ".c", + "size": 17590, + "date": "2017-05-25", + "sha1": "15e5414b62b10778b505ab73a8e1ca2c73bf0e47", + "md5": "a3244d6fa227e144968436c379e331a2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_err.c", + "type": "file", + "name": "eng_err.c", + "base_name": "eng_err", + "extension": ".c", + "size": 5932, + "date": "2017-05-25", + "sha1": "ef7b96c3d29d553959ae7cdafc76e20ffe8c6596", + "md5": "c0e3604c79040baf99472b2a76077404", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_fat.c", + "type": "file", + "name": "eng_fat.c", + "base_name": "eng_fat", + "extension": ".c", + "size": 3887, + "date": "2017-05-25", + "sha1": "ae986d439b882d14e28c91afcc6a0ce9ee9e4f43", + "md5": "0ebb9f2442f541ef97829ddbf16321c9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_init.c", + "type": "file", + "name": "eng_init.c", + "base_name": "eng_init", + "extension": ".c", + "size": 3203, + "date": "2017-05-25", + "sha1": "66b186108129e9e95562046f70af7d408b022373", + "md5": "898d4b988f236bff49b05df9e9200bc0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_int.h", + "type": "file", + "name": "eng_int.h", + "base_name": "eng_int", + "extension": ".h", + "size": 6448, + "date": "2017-05-25", + "sha1": "e3763cb7bf0b765617a4994bea7757055bfe787e", + "md5": "2574e927a7a6b112a8bb3fd2daee00ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_lib.c", + "type": "file", + "name": "eng_lib.c", + "base_name": "eng_lib", + "extension": ".c", + "size": 6599, + "date": "2017-05-25", + "sha1": "f97ef371f35ae6e0366ba71f7354b9e5f7eda9f4", + "md5": "00d21e64eb49a096be0a5b8d98739e83", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_list.c", + "type": "file", + "name": "eng_list.c", + "base_name": "eng_list", + "extension": ".c", + "size": 10621, + "date": "2017-05-25", + "sha1": "e4165fbcb711eb502734a80d57cfa392748ca76f", + "md5": "22770f7abf0f62b9c152839b80c13e36", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_openssl.c", + "type": "file", + "name": "eng_openssl.c", + "base_name": "eng_openssl", + "extension": ".c", + "size": 18544, + "date": "2017-05-25", + "sha1": "7fc4150a5b6d0e79cb9fdb659de899203692bef9", + "md5": "a2e5b62140c143de1d5247548305b221", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_pkey.c", + "type": "file", + "name": "eng_pkey.c", + "base_name": "eng_pkey", + "extension": ".c", + "size": 4303, + "date": "2017-05-25", + "sha1": "bda4366af4528fcd291252ebf3f9906a04f689e8", + "md5": "c9064c7a8af0fdfe1bfe70242b0f7b48", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_rdrand.c", + "type": "file", + "name": "eng_rdrand.c", + "base_name": "eng_rdrand", + "extension": ".c", + "size": 2529, + "date": "2017-05-25", + "sha1": "3eaaf4ee60a5a1d5cc1b173255b1d700042bb182", + "md5": "213394c48a9f37e0ef8c12bd254dec89", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/eng_table.c", + "type": "file", + "name": "eng_table.c", + "base_name": "eng_table", + "extension": ".c", + "size": 8721, + "date": "2017-05-25", + "sha1": "f256cd9b01cb4fa89970e6c6982e9affcddb4f8e", + "md5": "20cc4e5fa3cae807725b2a7caf27f5a1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 13957, + "date": "2017-05-25", + "sha1": "524d881febbb1708a095d5afcc54d732c342929c", + "md5": "b69f80cfda35400226491c87b7f64224", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_asnmth.c", + "type": "file", + "name": "tb_asnmth.c", + "base_name": "tb_asnmth", + "extension": ".c", + "size": 6113, + "date": "2017-05-25", + "sha1": "076c2daa3107dabc620bf8512e5d98b70adf8721", + "md5": "29eb0a898211bd8542402cdc9c9336bb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_cipher.c", + "type": "file", + "name": "tb_cipher.c", + "base_name": "tb_cipher", + "extension": ".c", + "size": 2470, + "date": "2017-05-25", + "sha1": "2cb409f06e47f905ba345f107fa542ef002c7213", + "md5": "d9ed8ba20a55dd0f40deadf027b710f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_dh.c", + "type": "file", + "name": "tb_dh.c", + "base_name": "tb_dh", + "extension": ".c", + "size": 1800, + "date": "2017-05-25", + "sha1": "d7b4f2b3f0e1a081c9246ac9236018f835e33e40", + "md5": "6ae6bef72d61fdde871f8687cdbf3c7d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_digest.c", + "type": "file", + "name": "tb_digest.c", + "base_name": "tb_digest", + "extension": ".c", + "size": 2462, + "date": "2017-05-25", + "sha1": "35307bd82b5ac7837d6660c30edd56bd5f4f2605", + "md5": "6eeb64958d2ac1dd2516dd801dc7407b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_dsa.c", + "type": "file", + "name": "tb_dsa.c", + "base_name": "tb_dsa", + "extension": ".c", + "size": 1827, + "date": "2017-05-25", + "sha1": "d2123654976f18a78c3b78700984585fffad0822", + "md5": "5fc8b42c5f979f95983ec104a2fc964d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_eckey.c", + "type": "file", + "name": "tb_eckey.c", + "base_name": "tb_eckey", + "extension": ".c", + "size": 1832, + "date": "2017-05-25", + "sha1": "dbb74994e21efb685c4d58577626677fe3b66f33", + "md5": "6cf41d92d662465b6a1b31ebf19048bf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_pkmeth.c", + "type": "file", + "name": "tb_pkmeth.c", + "base_name": "tb_pkmeth", + "extension": ".c", + "size": 3105, + "date": "2017-05-25", + "sha1": "1992b3c1fc4897873632c4beec27c9892a5812ee", + "md5": "8c00e655f3fb2c3dbeb327737b210903", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_rand.c", + "type": "file", + "name": "tb_rand.c", + "base_name": "tb_rand", + "extension": ".c", + "size": 1854, + "date": "2017-05-25", + "sha1": "c461753a81905544d956c6766db24c4f5cd92f40", + "md5": "cc700a68211ff8194598652c04cd7e66", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/engine/tb_rsa.c", + "type": "file", + "name": "tb_rsa.c", + "base_name": "tb_rsa", + "extension": ".c", + "size": 1827, + "date": "2017-05-25", + "sha1": "ca1022fb8c7c70757e6a1a06f6dd0277e265a19a", + "md5": "b303f902ab8a252ea72d7c3dbb4bd8dd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/err", + "type": "directory", + "name": "err", + "base_name": "err", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 31582, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/err/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 81, + "date": "2017-05-25", + "sha1": "7ef862d9497f2edefde3d44e8bb7fd775bed230d", + "md5": "85b295ffb128405336fccbbf489d2450", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/err/err.c", + "type": "file", + "name": "err.c", + "base_name": "err", + "extension": ".c", + "size": 21008, + "date": "2017-05-25", + "sha1": "a54ee81a1a3898d9de77972a91514045504bf78a", + "md5": "622cb197d9d8c4269cdd5aaa454f08f7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/err/err_all.c", + "type": "file", + "name": "err_all.c", + "base_name": "err_all", + "extension": ".c", + "size": 3033, + "date": "2017-05-25", + "sha1": "633d572091e36223d6f5ac8ceb96f7c83af2f1e0", + "md5": "1a51e0583f120fc5c174ce63d4d407a4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/err/err_prn.c", + "type": "file", + "name": "err_prn.c", + "base_name": "err_prn", + "extension": ".c", + "size": 1810, + "date": "2017-05-25", + "sha1": "617bc7c8e556e08e83560f4f42581297e753a699", + "md5": "4c3b08e79238cb1464c040a1963a558a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/err/openssl.ec", + "type": "file", + "name": "openssl.ec", + "base_name": "openssl", + "extension": ".ec", + "size": 4254, + "date": "2017-05-25", + "sha1": "08554e36f5a2e686ec8e4a13ed1c52ceda08bbcf", + "md5": "0310ee6b5722072c81b37649a0e0e849", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/err/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 1396, + "date": "2017-05-25", + "sha1": "5b03cb20d789e664683cba17ff394f47f3c11ad8", + "md5": "b677e0f7cb67f87045e47a3d923c9e35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp", + "type": "directory", + "name": "evp", + "base_name": "evp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 60, + "dirs_count": 0, + "size_count": 485983, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/bio_b64.c", + "type": "file", + "name": "bio_b64.c", + "base_name": "bio_b64", + "extension": ".c", + "size": 15794, + "date": "2017-05-25", + "sha1": "9785ff2f1e91076bfefd5884dc6810e693f238f9", + "md5": "4f6b9a6a03033449e4dc6f4c3533b7a6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/bio_enc.c", + "type": "file", + "name": "bio_enc.c", + "base_name": "bio_enc", + "extension": ".c", + "size": 11957, + "date": "2017-05-25", + "sha1": "8b6c6e18183f8b67d434cf3dd097a8c595b9732d", + "md5": "1c358cad0c4be555c304f9c9c44e2371", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/bio_md.c", + "type": "file", + "name": "bio_md.c", + "base_name": "bio_md", + "extension": ".c", + "size": 5014, + "date": "2017-05-25", + "sha1": "4d4fdff8d8864afa5a1255e7f5cdf3922e74e2b0", + "md5": "afc8c9a1695a6653309260eb3ebd0364", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/bio_ok.c", + "type": "file", + "name": "bio_ok.c", + "base_name": "bio_ok", + "extension": ".c", + "size": 16102, + "date": "2017-05-25", + "sha1": "66d302bc1c82a93a6d6f93c302972a95d1d5a834", + "md5": "a576d65dddf6d8c5bfc72eaa57bef196", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 954, + "date": "2017-05-25", + "sha1": "3ae1ab14687926ca99502d56449cd61d25a2f46c", + "md5": "bb157574a5a517593db520716cc61cb6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/c_allc.c", + "type": "file", + "name": "c_allc.c", + "base_name": "c_allc", + "extension": ".c", + "size": 7793, + "date": "2017-05-25", + "sha1": "1196d9dc54192439241b906977c30f13bd6f5eb4", + "md5": "b30b0686b9c112ec975d740170beca2c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/c_alld.c", + "type": "file", + "name": "c_alld.c", + "base_name": "c_alld", + "extension": ".c", + "size": 1477, + "date": "2017-05-25", + "sha1": "3c8b4e5e67b40fde872bbac8b2353c1eeb5c9c81", + "md5": "5e174efe918383358891f6949cf81c70", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/cmeth_lib.c", + "type": "file", + "name": "cmeth_lib.c", + "base_name": "cmeth_lib", + "extension": ".c", + "size": 4676, + "date": "2017-05-25", + "sha1": "14fe7fbfa4145542d89a31d56d3c7f098223b152", + "md5": "4fac1da645ff27c76de5b92c8c5e2f0b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/digest.c", + "type": "file", + "name": "digest.c", + "base_name": "digest", + "extension": ".c", + "size": 8035, + "date": "2017-05-25", + "sha1": "1d94f092dffcc9019a32cbb9168a88975204b7ae", + "md5": "d3c402e965070e1ab8267369693b1590", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_aes.c", + "type": "file", + "name": "e_aes.c", + "base_name": "e_aes", + "extension": ".c", + "size": 98295, + "date": "2017-05-25", + "sha1": "49f3e110627c4d26b3bc37d0a9cce94e84a58ee4", + "md5": "2a196202b6f30309fa7de32c94446da3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_aes_cbc_hmac_sha1.c", + "type": "file", + "name": "e_aes_cbc_hmac_sha1.c", + "base_name": "e_aes_cbc_hmac_sha1", + "extension": ".c", + "size": 31520, + "date": "2017-05-25", + "sha1": "72981362e2712182ccec419dacc7ed1edb73bde2", + "md5": "6f724e00aadd4275d5169a5c98ded9dc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_aes_cbc_hmac_sha256.c", + "type": "file", + "name": "e_aes_cbc_hmac_sha256.c", + "base_name": "e_aes_cbc_hmac_sha256", + "extension": ".c", + "size": 31196, + "date": "2017-05-25", + "sha1": "24a7d2b2584acbfc51017571b81247d022c3236d", + "md5": "32a5ab8c4b8f79f1dc1b22529cc27e55", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_bf.c", + "type": "file", + "name": "e_bf.c", + "base_name": "e_bf", + "extension": ".c", + "size": 1191, + "date": "2017-05-25", + "sha1": "68f7db2368dbf7786002fddd27d58dd7508334ed", + "md5": "d3faefa400c1b7ccb53fec1218105cf3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_camellia.c", + "type": "file", + "name": "e_camellia.c", + "base_name": "e_camellia", + "extension": ".c", + "size": 13914, + "date": "2017-05-25", + "sha1": "5858e4db7dc80d36b257adf9e4b58d3583792075", + "md5": "55c915ed4a5bf5cabfa3265bab8958a7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_cast.c", + "type": "file", + "name": "e_cast.c", + "base_name": "e_cast", + "extension": ".c", + "size": 1254, + "date": "2017-05-25", + "sha1": "e7a03a141a8047373127f6c76aac7719c01b5e3c", + "md5": "e83c376556b6c8938ed8140e7838f3ca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_chacha20_poly1305.c", + "type": "file", + "name": "e_chacha20_poly1305.c", + "base_name": "e_chacha20_poly1305", + "extension": ".c", + "size": 14821, + "date": "2017-05-25", + "sha1": "2348095c52781173ae3ac5d07c068c2c87b4ac98", + "md5": "af6b7ef897b8709cc817733306534d0f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_des.c", + "type": "file", + "name": "e_des.c", + "base_name": "e_des", + "extension": ".c", + "size": 8324, + "date": "2017-05-25", + "sha1": "f2647b8136b1339c44b7bfa401014657e3d53e4b", + "md5": "33577eee7a3b16dcd660c30a1f03679d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_des3.c", + "type": "file", + "name": "e_des3.c", + "base_name": "e_des3", + "extension": ".c", + "size": 14526, + "date": "2017-05-25", + "sha1": "81f402d017a2bed0329333d577e09e607d2ba53e", + "md5": "4d6db5d64008051ce0ea4bd4fc70afbf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_idea.c", + "type": "file", + "name": "e_idea.c", + "base_name": "e_idea", + "extension": ".c", + "size": 2164, + "date": "2017-05-25", + "sha1": "30a3a82e27eef611baff26c0425ac27670b14b36", + "md5": "133ad1daaa43dbc009216cd0f4c14d3d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_null.c", + "type": "file", + "name": "e_null.c", + "base_name": "e_null", + "extension": ".c", + "size": 1297, + "date": "2017-05-25", + "sha1": "09ea61dc1cc65cf43362a53a4d4c0bc7250a9e2d", + "md5": "9c41ab8459a3ac2b9400daca1fae6d93", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_old.c", + "type": "file", + "name": "e_old.c", + "base_name": "e_old", + "extension": ".c", + "size": 2445, + "date": "2017-05-25", + "sha1": "994bcebec5772626e36c8e0bf973d83608ae39d3", + "md5": "70513d6a7dc930824be74ec938bb9ba1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_rc2.c", + "type": "file", + "name": "e_rc2.c", + "base_name": "e_rc2", + "extension": ".c", + "size": 5059, + "date": "2017-05-25", + "sha1": "f81cb512d2f719dd93b600a1197a7353ccd41297", + "md5": "a14b0d806816d9430562dd58f4c232e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_rc4.c", + "type": "file", + "name": "e_rc4.c", + "base_name": "e_rc4", + "extension": ".c", + "size": 1914, + "date": "2017-05-25", + "sha1": "074d27e447605208b3192d44516cad38ead29c72", + "md5": "e06687948fd57afbfaba265490646500", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_rc4_hmac_md5.c", + "type": "file", + "name": "e_rc4_hmac_md5.c", + "base_name": "e_rc4_hmac_md5", + "extension": ".c", + "size": 7897, + "date": "2017-05-25", + "sha1": "0863e024f6a5c1d102cf1b4d2e44694f14a28254", + "md5": "b0520dd59d91ae61d824fc97270e08b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_rc5.c", + "type": "file", + "name": "e_rc5.c", + "base_name": "e_rc5", + "extension": ".c", + "size": 2128, + "date": "2017-05-25", + "sha1": "1300aea2610578336da2d2d3572693460e5cb094", + "md5": "b4a202246ca9ff7033873d4e48bc7ac1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_seed.c", + "type": "file", + "name": "e_seed.c", + "base_name": "e_seed", + "extension": ".c", + "size": 1166, + "date": "2017-05-25", + "sha1": "c6867b167087a328206cd4e44b41dd23b080c2ff", + "md5": "cdbce367fb7b9c61778ccac186a2e2ce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/e_xcbc_d.c", + "type": "file", + "name": "e_xcbc_d.c", + "base_name": "e_xcbc_d", + "extension": ".c", + "size": 2449, + "date": "2017-05-25", + "sha1": "eb8ebc2346734658d33e749dca3509d43e811051", + "md5": "d6ab54aceabb871c23f0bec1901401a3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/encode.c", + "type": "file", + "name": "encode.c", + "base_name": "encode", + "extension": ".c", + "size": 11073, + "date": "2017-05-25", + "sha1": "164d5ba819165ed0fd4b2eb1ca34b4df3ca94a61", + "md5": "602619711de3a53c0576cf754542492d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/evp_cnf.c", + "type": "file", + "name": "evp_cnf.c", + "base_name": "evp_cnf", + "extension": ".c", + "size": 1956, + "date": "2017-05-25", + "sha1": "81aaf38a6b1670df63e51295ab42a32a3671e819", + "md5": "697c01111177e9db610889e8d43cbcf5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/evp_enc.c", + "type": "file", + "name": "evp_enc.c", + "base_name": "evp_enc", + "extension": ".c", + "size": 18706, + "date": "2017-05-25", + "sha1": "81b890a8a7634136b42809afb474d7a2b7878dd8", + "md5": "de88c6c3f0c2431852d1253fdde57c39", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/evp_err.c", + "type": "file", + "name": "evp_err.c", + "base_name": "evp_err", + "extension": ".c", + "size": 9528, + "date": "2017-05-25", + "sha1": "16796091f60fb866376c82503c94f6b0fb6b184b", + "md5": "632f9aab3502f54dd08b3c91e0ab9bb9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/evp_key.c", + "type": "file", + "name": "evp_key.c", + "base_name": "evp_key", + "extension": ".c", + "size": 4167, + "date": "2017-05-25", + "sha1": "31eb63c50261c045cd12fd362efc037320cff880", + "md5": "e4e970c4403b94d810453c1658faa31a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/evp_lib.c", + "type": "file", + "name": "evp_lib.c", + "base_name": "evp_lib", + "extension": ".c", + "size": 10825, + "date": "2017-05-25", + "sha1": "082a8a939de9e19a6525495c8a83832724322482", + "md5": "72ecc22958d0d8b5932180aae1aff510", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/evp_locl.h", + "type": "file", + "name": "evp_locl.h", + "base_name": "evp_locl", + "extension": ".h", + "size": 2632, + "date": "2017-05-25", + "sha1": "a748e20b03738f875cfddfdd7491a50b352a9a17", + "md5": "46b7cdff083d70c57e07c62ceea3b7f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/evp_pbe.c", + "type": "file", + "name": "evp_pbe.c", + "base_name": "evp_pbe", + "extension": ".c", + "size": 7461, + "date": "2017-05-25", + "sha1": "970b065555d6349cf4691174349e4ffe9ae5ca82", + "md5": "782e8510d5eaed98528faf80e85d545b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/evp_pkey.c", + "type": "file", + "name": "evp_pkey.c", + "base_name": "evp_pkey", + "extension": ".c", + "size": 4162, + "date": "2017-05-25", + "sha1": "bc5d50102481be6f0007dc3a2a2b7a2127a722e4", + "md5": "8aa37f4780ee4ab585485235ce2f13f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_md2.c", + "type": "file", + "name": "m_md2.c", + "base_name": "m_md2", + "extension": ".c", + "size": 1177, + "date": "2017-05-25", + "sha1": "a35e29f9fc759bfc41e1044258beeeddafbc7dd3", + "md5": "485576a8150194d8940ab808524f1850", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_md4.c", + "type": "file", + "name": "m_md4.c", + "base_name": "m_md4", + "extension": ".c", + "size": 1180, + "date": "2017-05-25", + "sha1": "a2d33a06986711fc3b22f88f2d435a559a1433c9", + "md5": "b293a0cfc3844d025bd32bfec8f9cabe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_md5.c", + "type": "file", + "name": "m_md5.c", + "base_name": "m_md5", + "extension": ".c", + "size": 1180, + "date": "2017-05-25", + "sha1": "6610a2a25cc82ab1d9d5180be29e59b79b955dda", + "md5": "8a67e1717a3879ad5d376be642689e9a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_md5_sha1.c", + "type": "file", + "name": "m_md5_sha1.c", + "base_name": "m_md5_sha1", + "extension": ".c", + "size": 3281, + "date": "2017-05-25", + "sha1": "37d6a2ff0f3b085c1428e377d727adb928e9a497", + "md5": "e0037e8a3971e530587bcf7d596d683c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_mdc2.c", + "type": "file", + "name": "m_mdc2.c", + "base_name": "m_mdc2", + "extension": ".c", + "size": 1182, + "date": "2017-05-25", + "sha1": "61f9359c97704961a914ec11bd48e46f5c8af22d", + "md5": "6f2603f284579d2b920b3f127ce99171", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_null.c", + "type": "file", + "name": "m_null.c", + "base_name": "m_null", + "extension": ".c", + "size": 926, + "date": "2017-05-25", + "sha1": "bc742146352936f94fcadbd416647e1123c414c5", + "md5": "f323a18e18c31fff220e6fa3cb56e556", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_ripemd.c", + "type": "file", + "name": "m_ripemd.c", + "base_name": "m_ripemd", + "extension": ".c", + "size": 1242, + "date": "2017-05-25", + "sha1": "4d9d560df077fe79b6bfc689f1836fa96f686958", + "md5": "ac968cc87277a5c45a152d08c3a47157", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_sha1.c", + "type": "file", + "name": "m_sha1.c", + "base_name": "m_sha1", + "extension": ".c", + "size": 4859, + "date": "2017-05-25", + "sha1": "788436fdc5a9ba55c87d13034692d6b18a0cdb7c", + "md5": "773f99a30a43c62b479e5cf8d7956f68", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_sigver.c", + "type": "file", + "name": "m_sigver.c", + "base_name": "m_sigver", + "extension": ".c", + "size": 5490, + "date": "2017-05-25", + "sha1": "aac1bd5363c2320b4c3f384dfa26e5776b00ddf4", + "md5": "9f168f68306533032ca3cddd11ff2d9c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/m_wp.c", + "type": "file", + "name": "m_wp.c", + "base_name": "m_wp", + "extension": ".c", + "size": 1206, + "date": "2017-05-25", + "sha1": "4469efeca4febc31dca098f77fc2045e3d247d6e", + "md5": "e8efae3972104c99092977e88239d254", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/names.c", + "type": "file", + "name": "names.c", + "base_name": "names", + "extension": ".c", + "size": 4849, + "date": "2017-05-25", + "sha1": "775f842f79265261f9a4d3ce76cca75a517749b4", + "md5": "4654743f915bf725372ee5d2e563e28b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p5_crpt.c", + "type": "file", + "name": "p5_crpt.c", + "base_name": "p5_crpt", + "extension": ".c", + "size": 2975, + "date": "2017-05-25", + "sha1": "067dfb988964fe9ed802bb2afbdda87db5cd240c", + "md5": "6f23747b61882d499dd9f8fe55730641", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p5_crpt2.c", + "type": "file", + "name": "p5_crpt2.c", + "base_name": "p5_crpt2", + "extension": ".c", + "size": 8382, + "date": "2017-05-25", + "sha1": "751cbd360afca0058c95a5a7e5e91c6f52dee3be", + "md5": "59d32bc8c7b6349e65d528aaff946d87", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Peter Gutmann " + ], + "start_line": 27, + "end_line": 29 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p_dec.c", + "type": "file", + "name": "p_dec.c", + "base_name": "p_dec", + "extension": ".c", + "size": 982, + "date": "2017-05-25", + "sha1": "a4abbb3b98d6f2a761df52041524f13099b4af2e", + "md5": "b27ef18a89400a9001a8290ee93ce52f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p_enc.c", + "type": "file", + "name": "p_enc.c", + "base_name": "p_enc", + "extension": ".c", + "size": 986, + "date": "2017-05-25", + "sha1": "967318a67943238d5d2aee189c096c11becf253b", + "md5": "6219573966bebf73ea8e3e7a5d1f3116", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p_lib.c", + "type": "file", + "name": "p_lib.c", + "base_name": "p_lib", + "extension": ".c", + "size": 11485, + "date": "2017-05-25", + "sha1": "6d620cef997ed413754ee1b9b3736bcee092da3e", + "md5": "0335e2fd60ef2d775777e585e9aec563", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p_open.c", + "type": "file", + "name": "p_open.c", + "base_name": "p_open", + "extension": ".c", + "size": 1819, + "date": "2017-05-25", + "sha1": "de92e5abb5102f4a01b6a8acdfff6f3abbc343ab", + "md5": "5f4601f53d454a459599cb51dc13a3fb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p_seal.c", + "type": "file", + "name": "p_seal.c", + "base_name": "p_seal", + "extension": ".c", + "size": 1865, + "date": "2017-05-25", + "sha1": "210fe7eab9db4f4606c6ebc9c556d2e512dd8021", + "md5": "e50f5879866cb6a114ba1cde2f8fa3ab", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p_sign.c", + "type": "file", + "name": "p_sign.c", + "base_name": "p_sign", + "extension": ".c", + "size": 1747, + "date": "2017-05-25", + "sha1": "4db33d4779af27a34b7c61a9964ab0e284bd2de2", + "md5": "902a7f358d0ec49e4d0cb0557d7e464e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/p_verify.c", + "type": "file", + "name": "p_verify.c", + "base_name": "p_verify", + "extension": ".c", + "size": 1632, + "date": "2017-05-25", + "sha1": "3c19db61e39ef39b073754b34fa592106a930f4d", + "md5": "0eb7f1e6d583ca88d96ad42cd6a57fe6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/pmeth_fn.c", + "type": "file", + "name": "pmeth_fn.c", + "base_name": "pmeth_fn", + "extension": ".c", + "size": 9848, + "date": "2017-05-25", + "sha1": "78deaa1cc39cfabb82f5ebf377e4d7c6cff6e325", + "md5": "07b77d3cfd7f118d508ba159e017bba8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/pmeth_gn.c", + "type": "file", + "name": "pmeth_gn.c", + "base_name": "pmeth_gn", + "extension": ".c", + "size": 4260, + "date": "2017-05-25", + "sha1": "7c7a416e8e6521a1171b5aca502eaea2bbe536f1", + "md5": "a21d0c2799dbd7bd007b354298cde85b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/pmeth_lib.c", + "type": "file", + "name": "pmeth_lib.c", + "base_name": "pmeth_lib", + "extension": ".c", + "size": 22668, + "date": "2017-05-25", + "sha1": "e5d13dc191c8c6dd4bddfc5d71a0130d50918208", + "md5": "acc4d01e0a4d93a98be1a9df003638bb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/evp/scrypt.c", + "type": "file", + "name": "scrypt.c", + "base_name": "scrypt", + "extension": ".c", + "size": 6890, + "date": "2017-05-25", + "sha1": "b8743009eeab13d96cac93aedb2656cf83090dae", + "md5": "1c2d94d8e65892c48e9e1bc7db192250", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/hmac", + "type": "directory", + "name": "hmac", + "base_name": "hmac", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 14663, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/hmac/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 84, + "date": "2017-05-25", + "sha1": "57d8274e0704f63a7d97f5d632cb8e1f818bd921", + "md5": "ea0ece49c5be54dec033729fd8d4b29d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/hmac/hm_ameth.c", + "type": "file", + "name": "hm_ameth.c", + "base_name": "hm_ameth", + "extension": ".c", + "size": 2756, + "date": "2017-05-25", + "sha1": "4cc7055e7aa52c482bce4a58257dc2c2a5aa1465", + "md5": "4eda4370b8e4941da3a58b6acbb55755", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/hmac/hm_pmeth.c", + "type": "file", + "name": "hm_pmeth.c", + "base_name": "hm_pmeth", + "extension": ".c", + "size": 4922, + "date": "2017-05-25", + "sha1": "be927f02603b3bb8ef2256066ca7801dabe4266a", + "md5": "38e5227c29acb6afca7370fa148e07d5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/hmac/hmac.c", + "type": "file", + "name": "hmac.c", + "base_name": "hmac", + "extension": ".c", + "size": 6160, + "date": "2017-05-25", + "sha1": "046fa1a402988a699c40c192505a0416a559b77a", + "md5": "fb708b75ca41b4b68070f6bb972803ce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/hmac/hmac_lcl.h", + "type": "file", + "name": "hmac_lcl.h", + "base_name": "hmac_lcl", + "extension": ".h", + "size": 741, + "date": "2017-05-25", + "sha1": "be5202f0971bc95075387a6304655a4d3864fe68", + "md5": "99fe2a6e6581706895914207471313fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/idea", + "type": "directory", + "name": "idea", + "base_name": "idea", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 14699, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/idea/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 100, + "date": "2017-05-25", + "sha1": "a449049f98e0cc2ec4b040e37aa65dc4c5623e12", + "md5": "295ec1b670c9006592977750a031c2a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/idea/i_cbc.c", + "type": "file", + "name": "i_cbc.c", + "base_name": "i_cbc", + "extension": ".c", + "size": 3074, + "date": "2017-05-25", + "sha1": "a2e49c8feb10316cab4992a56adbbcd8dfb45b6c", + "md5": "42e79cdd2ce4b992eef5eed498dd786b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/idea/i_cfb64.c", + "type": "file", + "name": "i_cfb64.c", + "base_name": "i_cfb64", + "extension": ".c", + "size": 2200, + "date": "2017-05-25", + "sha1": "d0b7c9f51015220694768a63d19a8ba8978371eb", + "md5": "ffbf779168d03c3b86f2e083f6195122", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/idea/i_ecb.c", + "type": "file", + "name": "i_ecb.c", + "base_name": "i_ecb", + "extension": ".c", + "size": 810, + "date": "2017-05-25", + "sha1": "ab444141f83dbc0031eb3282d1a9338374716b8f", + "md5": "c836f4d80d75b228f53b07081fd7efaa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/idea/i_ofb64.c", + "type": "file", + "name": "i_ofb64.c", + "base_name": "i_ofb64", + "extension": ".c", + "size": 1635, + "date": "2017-05-25", + "sha1": "dacbd9b11b4ebafe518e49dc5ee1580b7f8f00f6", + "md5": "4692db7489869a81eca9c510fca690d4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/idea/i_skey.c", + "type": "file", + "name": "i_skey.c", + "base_name": "i_skey", + "extension": ".c", + "size": 2739, + "date": "2017-05-25", + "sha1": "e3c0406857b55a8e17acc7d64719ff0f013c4921", + "md5": "0dcd155c762c701f90a320b8b1dbe45c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/idea/idea_lcl.h", + "type": "file", + "name": "idea_lcl.h", + "base_name": "idea_lcl", + "extension": ".h", + "size": 4141, + "date": "2017-05-25", + "sha1": "10fcb78b4e0240c831a9d2128a6c2b797367fe5f", + "md5": "25d71d6cc9b70e4baad15c66dc1de4cc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Colin Plumb " + ], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include", + "type": "directory", + "name": "include", + "base_name": "include", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 1, + "size_count": 55455, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 0, + "size_count": 55455, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/asn1_int.h", + "type": "file", + "name": "asn1_int.h", + "base_name": "asn1_int", + "extension": ".h", + "size": 3929, + "date": "2017-05-25", + "sha1": "b58cdaaae457b1b2e35e4c3d47833f8ec56a228e", + "md5": "d7509d45e8aa6c34902cd0ceeefd8d27", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/async.h", + "type": "file", + "name": "async.h", + "base_name": "async", + "extension": ".h", + "size": 405, + "date": "2017-05-25", + "sha1": "ec08f4c4400b7a3e800cd0da6026908bb9c631df", + "md5": "3ec92e613e16922d849a5633f78a8f1e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/bn_conf.h.in", + "type": "file", + "name": "bn_conf.h.in", + "base_name": "bn_conf.h", + "extension": ".in", + "size": 873, + "date": "2017-05-25", + "sha1": "36cf6ba9d1e1ce0ec080a65ae6755e3ac7add193", + "md5": "b3df608d34fed500572af25f1b41483a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/bn_dh.h", + "type": "file", + "name": "bn_dh.h", + "base_name": "bn_dh", + "extension": ".h", + "size": 593, + "date": "2017-05-25", + "sha1": "19b6d26c6f2b5728fed54b81b928c4e5ae4ff4f8", + "md5": "898f6c34bcfb6621daa90794d5dfbf2a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/bn_int.h", + "type": "file", + "name": "bn_int.h", + "base_name": "bn_int", + "extension": ".h", + "size": 2287, + "date": "2017-05-25", + "sha1": "28a4bff50d3b03e1123ec410d27976444b8af5d1", + "md5": "5994a76bf0bff7a30d00dd741feb7f56", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/bn_srp.h", + "type": "file", + "name": "bn_srp.h", + "base_name": "bn_srp", + "extension": ".h", + "size": 729, + "date": "2017-05-25", + "sha1": "e0646c0a9fec1f79dc2d207a4acd078de5e463c5", + "md5": "591a5ab2c41fb83fbce6a880d70b5dbe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/chacha.h", + "type": "file", + "name": "chacha.h", + "base_name": "chacha", + "extension": ".h", + "size": 1713, + "date": "2017-05-25", + "sha1": "113f9b7606fac67a3fff51d3bf4711ae84cadfb4", + "md5": "80dca06edcf6b526802980045c402d4b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/cryptlib.h", + "type": "file", + "name": "cryptlib.h", + "base_name": "cryptlib", + "extension": ".h", + "size": 2289, + "date": "2017-05-25", + "sha1": "751c34394e07fe481300eef0339975b3b6b69acd", + "md5": "a156c6040d86fbae22b4d622289e4a3e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/cryptlib_int.h", + "type": "file", + "name": "cryptlib_int.h", + "base_name": "cryptlib_int", + "extension": ".h", + "size": 900, + "date": "2017-05-25", + "sha1": "4af1cb9429561386478473aa86e0cbf52dc37250", + "md5": "b106f477e8c68dcc93ba213ecac3711a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/dso_conf.h.in", + "type": "file", + "name": "dso_conf.h.in", + "base_name": "dso_conf.h", + "extension": ".in", + "size": 494, + "date": "2017-05-25", + "sha1": "ac9160b287f74c2a010fb93187f9ee48256bb05f", + "md5": "aab46435a8ec9c703fa292d5ebf4a700", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/engine.h", + "type": "file", + "name": "engine.h", + "base_name": "engine", + "extension": ".h", + "size": 672, + "date": "2017-05-25", + "sha1": "1af998d83ed7fdaad8d5da6f01d09f693f6de631", + "md5": "7214964a985a83de36098309e409e765", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/err_int.h", + "type": "file", + "name": "err_int.h", + "base_name": "err_int", + "extension": ".h", + "size": 492, + "date": "2017-05-25", + "sha1": "df71aa2df2b32d360ee6a37b6b40936f5ed634d6", + "md5": "342d3ba8ecaddfa74d7cafd228054803", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/evp_int.h", + "type": "file", + "name": "evp_int.h", + "base_name": "evp_int", + "extension": ".h", + "size": 15461, + "date": "2017-05-25", + "sha1": "c4059315b329db91b81305293b8c9a0c02e698c2", + "md5": "dc83648ea617f3b5e81562e1c884bf2a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/md32_common.h", + "type": "file", + "name": "md32_common.h", + "base_name": "md32_common", + "extension": ".h", + "size": 13837, + "date": "2017-05-25", + "sha1": "578d381cef7591b1d1b35dc318c8a6bff3696db9", + "md5": "dc2b0e9d4c3558aef11b3107d24a97ad", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/objects.h", + "type": "file", + "name": "objects.h", + "base_name": "objects", + "extension": ".h", + "size": 387, + "date": "2017-05-25", + "sha1": "63345d12fa70ba3f4b50bec413e4af9af2bef1aa", + "md5": "51c1e47f6432d8f24d7a04562eef8bac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/poly1305.h", + "type": "file", + "name": "poly1305.h", + "base_name": "poly1305", + "extension": ".h", + "size": 660, + "date": "2017-05-25", + "sha1": "7138bb74363053b99ddfd88627976c5bc18c833b", + "md5": "f54905a2b90399e72c042d92aae5428b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/rand.h", + "type": "file", + "name": "rand.h", + "base_name": "rand", + "extension": ".h", + "size": 662, + "date": "2017-05-25", + "sha1": "45870e28a0d2a899bd744a9e12e3a5da609fa537", + "md5": "38a866532b39ad06972c379698554c19", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 11, + "end_line": 13, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/include/internal/x509_int.h", + "type": "file", + "name": "x509_int.h", + "base_name": "x509_int", + "extension": ".h", + "size": 9072, + "date": "2017-05-25", + "sha1": "874a41f075ca5b348baa60f802da50a4ca176104", + "md5": "cc339c9d568a872501f34d8dff068c85", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/kdf", + "type": "directory", + "name": "kdf", + "base_name": "kdf", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 16272, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/kdf/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 83, + "date": "2017-05-25", + "sha1": "8f81fa52030d75c46a295e95cf6a0fe3cb58b443", + "md5": "963b9de0d9443a8c84e7194d047850e3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/kdf/hkdf.c", + "type": "file", + "name": "hkdf.c", + "base_name": "hkdf", + "extension": ".c", + "size": 7458, + "date": "2017-05-25", + "sha1": "2051455c504f8a0a640d7e88d917398f3e1f3f0d", + "md5": "4c4beec3841fe9a29277317cca696178", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/kdf/kdf_err.c", + "type": "file", + "name": "kdf_err.c", + "base_name": "kdf_err", + "extension": ".c", + "size": 1301, + "date": "2017-05-25", + "sha1": "c01afa1f059ea9aa4de07ac496d52597b0e9b19a", + "md5": "fdd4d60cc85cce631f8bf4f3bf3eb9c3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/kdf/tls1_prf.c", + "type": "file", + "name": "tls1_prf.c", + "base_name": "tls1_prf", + "extension": ".c", + "size": 7430, + "date": "2017-05-25", + "sha1": "81322f2db84c33833a4edc49998a0f8f786c25d5", + "md5": "97380ab24bf9a899a4205eeae9b1b86b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/lhash", + "type": "directory", + "name": "lhash", + "base_name": "lhash", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 14038, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/lhash/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 74, + "date": "2017-05-25", + "sha1": "184afc4cd92b8397aa70663d9e7cf436cab42fd9", + "md5": "c81f6bb56f49a705482f715fbd6c0a3a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/lhash/lh_stats.c", + "type": "file", + "name": "lh_stats.c", + "base_name": "lh_stats", + "extension": ".c", + "size": 3741, + "date": "2017-05-25", + "sha1": "c97abd5f9540e0af483555262f3731b544d102fe", + "md5": "bce3e96e87d28fa4e82fb91692723f43", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/lhash/lhash.c", + "type": "file", + "name": "lhash.c", + "base_name": "lhash", + "extension": ".c", + "size": 8425, + "date": "2017-05-25", + "sha1": "81fc59f0bbf14791b4c1287d44b43cd4361a0672", + "md5": "97c1527f5e47d5fe0a1035dc6fa71fa2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/lhash/lhash_lcl.h", + "type": "file", + "name": "lhash_lcl.h", + "base_name": "lhash_lcl", + "extension": ".h", + "size": 1234, + "date": "2017-05-25", + "sha1": "17763ccc5cd7ab652ad422b79992cb4f48cbcd46", + "md5": "f09ea887bd63c7c9d2da96f433034bea", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/lhash/num.pl", + "type": "file", + "name": "num.pl", + "base_name": "num", + "extension": ".pl", + "size": 564, + "date": "2017-05-25", + "sha1": "4a6161fd890c286e26f2ec2abc1ce32f700b3463", + "md5": "41d1e0128a55be2e40e915dd06b81406", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md2", + "type": "directory", + "name": "md2", + "base_name": "md2", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 6379, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md2/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 76, + "date": "2017-05-25", + "sha1": "ad68626f62b653e3570dcb0e22774b91da611bfe", + "md5": "812e535f75f67d90e95925b35d48e4dd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md2/md2_dgst.c", + "type": "file", + "name": "md2_dgst.c", + "base_name": "md2_dgst", + "extension": ".c", + "size": 5104, + "date": "2017-05-25", + "sha1": "bb924726bd3e556a3224bee11ad2fca8720c723f", + "md5": "22863a072a9a078af6f376dc5bd9b1f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md2/md2_one.c", + "type": "file", + "name": "md2_one.c", + "base_name": "md2_one", + "extension": ".c", + "size": 1199, + "date": "2017-05-25", + "sha1": "6f9cde5ed297f2080b63202e69ab0fe4165e7ae6", + "md5": "da313e65344efbb9097b19903d439dfa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md4", + "type": "directory", + "name": "md4", + "base_name": "md4", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 7726, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md4/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 76, + "date": "2017-05-25", + "sha1": "ae663bac35d5745ff567573c916670ca3f355c0b", + "md5": "42fab72cd8a9dd38f2c1bed2ae285d64", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md4/md4_dgst.c", + "type": "file", + "name": "md4_dgst.c", + "base_name": "md4_dgst", + "extension": ".c", + "size": 4500, + "date": "2017-05-25", + "sha1": "a093692cee567e7ca343f964ea4c9051098dbb68", + "md5": "cdb82afa4a74cf9c9364b5896b335d83", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md4/md4_locl.h", + "type": "file", + "name": "md4_locl.h", + "base_name": "md4_locl", + "extension": ".h", + "size": 1987, + "date": "2017-05-25", + "sha1": "337725f5b050a7a60470a598fc0a7a316a129956", + "md5": "7abc39f9e48897f02c85be70e34c63ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Wei Dai " + ], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md4/md4_one.c", + "type": "file", + "name": "md4_one.c", + "base_name": "md4_one", + "extension": ".c", + "size": 1163, + "date": "2017-05-25", + "sha1": "32298152896105758d70e59c0afeff9b446827e2", + "md5": "326e8a50fd3d840701c186aa119a2dc2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5", + "type": "directory", + "name": "md5", + "base_name": "md5", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 1, + "size_count": 62609, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 720, + "date": "2017-05-25", + "sha1": "58baf4b21d9548569ac5fb2fc52582810cf3d78c", + "md5": "f2d9d662be74fd0db305f289bc4976cf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/md5_dgst.c", + "type": "file", + "name": "md5_dgst.c", + "base_name": "md5_dgst", + "extension": ".c", + "size": 5448, + "date": "2017-05-25", + "sha1": "f2d80158be9328866e2f71950c14da1b0944a377", + "md5": "c96fbd7e7d95bb9a8a1d7e107ae830b6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/md5_locl.h", + "type": "file", + "name": "md5_locl.h", + "base_name": "md5_locl", + "extension": ".h", + "size": 2621, + "date": "2017-05-25", + "sha1": "d1b145ac09105664a998e454b1eb395bf0e6b2de", + "md5": "57ca60520e35d9f21898f56ceac4d230", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Wei Dai " + ], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/md5_one.c", + "type": "file", + "name": "md5_one.c", + "base_name": "md5_one", + "extension": ".c", + "size": 1163, + "date": "2017-05-25", + "sha1": "d5ba036ea3b3e574c57434eed7d48218c06fe43e", + "md5": "57e8f63be24bb3b2d18516d5250d258b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 52657, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/asm/md5-586.pl", + "type": "file", + "name": "md5-586.pl", + "base_name": "md5-586", + "extension": ".pl", + "size": 7984, + "date": "2017-05-25", + "sha1": "b53f079a0da77ad3fd0cc1d8c6e0da3b6b563a7d", + "md5": "ae27ca5c2498064dd2fb117b54fa4337", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/asm/md5-ia64.S", + "type": "file", + "name": "md5-ia64.S", + "base_name": "md5-ia64", + "extension": ".S", + "size": 21881, + "date": "2017-05-25", + "sha1": "9a0eed09a6af30794b84e8ba2f99dcb0ca97be89", + "md5": "190b85ce86b821bef9d6552f45bd3e58", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "GAS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 95.4, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 5, + "end_line": 30, + "matched_rule": { + "identifier": "mit_104.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + }, + { + "statements": [ + "Copyright (c) 2005 Hewlett-Packard Development Company, L.P." + ], + "holders": [ + "Hewlett-Packard Development Company, L.P." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/asm/md5-sparcv9.pl", + "type": "file", + "name": "md5-sparcv9.pl", + "base_name": "md5-sparcv9", + "extension": ".pl", + "size": 10118, + "date": "2017-05-25", + "sha1": "e04e9edd4d860fef88ec8b19e6c874827084f033", + "md5": "2d51c8bf7695fb4f5424ee92b6acc7cd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller " + ], + "start_line": 16, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/md5/asm/md5-x86_64.pl", + "type": "file", + "name": "md5-x86_64.pl", + "base_name": "md5-x86_64", + "extension": ".pl", + "size": 12674, + "date": "2017-05-25", + "sha1": "d80cfc3e672fc3311e031b8b0d953c6e56b5f956", + "md5": "9cdc8b387fa35c3745ce36de608f3309", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [ + "Marc Bevand" + ], + "start_line": 1, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/mdc2", + "type": "directory", + "name": "mdc2", + "base_name": "mdc2", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 4535, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/mdc2/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 77, + "date": "2017-05-25", + "sha1": "00a3ba4d4f390b870661b94ea6741a3e6ae2ff08", + "md5": "8497622ad8d62ce89e3e1d004fd06194", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/mdc2/mdc2_one.c", + "type": "file", + "name": "mdc2_one.c", + "base_name": "mdc2_one", + "extension": ".c", + "size": 767, + "date": "2017-05-25", + "sha1": "d565e47aedb2a4cf418d9c6bacc6a2445f2f993d", + "md5": "d5075a860b017b301026800e1ed55c0d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/mdc2/mdc2dgst.c", + "type": "file", + "name": "mdc2dgst.c", + "base_name": "mdc2dgst", + "extension": ".c", + "size": 3691, + "date": "2017-05-25", + "sha1": "1f0fa50ffe9df3b7a56a99abf89e960828e41fd4", + "md5": "8d4ad3235b1497d1ce8cea57000c2bea", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes", + "type": "directory", + "name": "modes", + "base_name": "modes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 24, + "dirs_count": 1, + "size_count": 385188, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 1129, + "date": "2017-05-25", + "sha1": "d483a5c43d1bc7a459681ca34f2ca88a8028290a", + "md5": "10fb76c23bebbfc2a312b4c1368b95d0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/cbc128.c", + "type": "file", + "name": "cbc128.c", + "base_name": "cbc128", + "extension": ".c", + "size": 4629, + "date": "2017-05-25", + "sha1": "4ddf620a484275c0cbbd54aeb092a3e256137845", + "md5": "c88f0f530dfbcc165d92e14cd1677947", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/ccm128.c", + "type": "file", + "name": "ccm128.c", + "base_name": "ccm128", + "extension": ".c", + "size": 11725, + "date": "2017-05-25", + "sha1": "bd1c56c3cad710b6a03860762ae65f9d81358f67", + "md5": "d932fc5e5127271559eaa289a795c3b0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/cfb128.c", + "type": "file", + "name": "cfb128.c", + "base_name": "cfb128", + "extension": ".c", + "size": 6638, + "date": "2017-05-25", + "sha1": "0d81d7873fbd6f588ed673ff7fc37f112a452567", + "md5": "8fa0cf79f4e74b7b5896eaba83102a90", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/ctr128.c", + "type": "file", + "name": "ctr128.c", + "base_name": "ctr128", + "extension": ".c", + "size": 5964, + "date": "2017-05-25", + "sha1": "bedb4ed76c363d33dd06c648029dd8b426a66d61", + "md5": "dd847647ad21f3023474ef7583e173dc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/cts128.c", + "type": "file", + "name": "cts128.c", + "base_name": "cts128", + "extension": ".c", + "size": 15480, + "date": "2017-05-25", + "sha1": "68e95f8502feb4d00bf400f14efd178180d1c6e8", + "md5": "6dc68c56e3b25648d734c5c35dc5a982", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/gcm128.c", + "type": "file", + "name": "gcm128.c", + "base_name": "gcm128", + "extension": ".c", + "size": 71370, + "date": "2017-05-25", + "sha1": "5ee3908cb341c334d83614eba821c4e6278b2fde", + "md5": "8c6227571b186c5347dc983de45f4459", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/modes_lcl.h", + "type": "file", + "name": "modes_lcl.h", + "base_name": "modes_lcl", + "extension": ".h", + "size": 5989, + "date": "2017-05-25", + "sha1": "5c6d24c3cda1eadf9dd4aa735ec958365bbfaa80", + "md5": "c88cb67baac844ea764da23d72d3955a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/ocb128.c", + "type": "file", + "name": "ocb128.c", + "base_name": "ocb128", + "extension": ".c", + "size": 17155, + "date": "2017-05-25", + "sha1": "714d3cc36b72df6634800bd1642bd1ece67a7f3d", + "md5": "39e1add45d735bcaa8cf96a763570a54", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/ofb128.c", + "type": "file", + "name": "ofb128.c", + "base_name": "ofb128", + "extension": ".c", + "size": 2170, + "date": "2017-05-25", + "sha1": "09da16688c4dbd82790ef10bcdf821b3d5e49fe4", + "md5": "a74195bf16b30371f2d06a516e75664f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/wrap128.c", + "type": "file", + "name": "wrap128.c", + "base_name": "wrap128", + "extension": ".c", + "size": 11857, + "date": "2017-05-25", + "sha1": "f54742e635391a7e32ed14b1add7b38c0b87704d", + "md5": "27872fe4157964548a67a46925c87477", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/xts128.c", + "type": "file", + "name": "xts128.c", + "base_name": "xts128", + "extension": ".c", + "size": 4447, + "date": "2017-05-25", + "sha1": "3bdda11cc483b34a8b7c339b4cd0af4e159343c7", + "md5": "c04b1f6a05205b105fba210edbbaa1ee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 226635, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/aesni-gcm-x86_64.pl", + "type": "file", + "name": "aesni-gcm-x86_64.pl", + "base_name": "aesni-gcm-x86_64", + "extension": ".pl", + "size": 30924, + "date": "2017-05-25", + "sha1": "25555442ccc8e22bfdfa2eaf3a8e325023df3145", + "md5": "de96395e6263b37e0f1c71c31c92ab80", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-alpha.pl", + "type": "file", + "name": "ghash-alpha.pl", + "base_name": "ghash-alpha", + "extension": ".pl", + "size": 7970, + "date": "2017-05-25", + "sha1": "0fef4ee882cc4497e8b7b416cc4bb3dba63537ad", + "md5": "ba5ec2740f5adb7be3fdcfe21f1bc622", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-armv4.pl", + "type": "file", + "name": "ghash-armv4.pl", + "base_name": "ghash-armv4", + "extension": ".pl", + "size": 14216, + "date": "2017-05-25", + "sha1": "037a34a23f05d4d9ea2547057ce72a5e150f2f21", + "md5": "648127395f6db8482ee37da969d30b83", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-c64xplus.pl", + "type": "file", + "name": "ghash-c64xplus.pl", + "base_name": "ghash-c64xplus", + "extension": ".pl", + "size": 7451, + "date": "2017-05-25", + "sha1": "8f6098914590e129393a0a7646f90cdeb0129eaf", + "md5": "3b83a886109b9db4e5acdb96c0bbc9e1", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-ia64.pl", + "type": "file", + "name": "ghash-ia64.pl", + "base_name": "ghash-ia64", + "extension": ".pl", + "size": 18352, + "date": "2017-05-25", + "sha1": "fe4bd309c69bacd96dc09f22131b9519895222bd", + "md5": "49a4ad2d1dc8f6d71e84b1f2202b4cfc", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-parisc.pl", + "type": "file", + "name": "ghash-parisc.pl", + "base_name": "ghash-parisc", + "extension": ".pl", + "size": 16765, + "date": "2017-05-25", + "sha1": "e031b4a9434a2812ba89635d91f6c9b99c49c3f6", + "md5": "a861bcbe1146cd1ff3076f325b4e1851", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-s390x.pl", + "type": "file", + "name": "ghash-s390x.pl", + "base_name": "ghash-s390x", + "extension": ".pl", + "size": 6462, + "date": "2017-05-25", + "sha1": "6d4016db414824a824d2a23a9fa6e7b5dd475128", + "md5": "cd74f2a603535ae18b442fb3d399c148", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-sparcv9.pl", + "type": "file", + "name": "ghash-sparcv9.pl", + "base_name": "ghash-sparcv9", + "extension": ".pl", + "size": 12974, + "date": "2017-05-25", + "sha1": "77dca75217077abf18ab4bc608b30728b655687b", + "md5": "3887a78be08e949a636927d1a7c928de", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-x86.pl", + "type": "file", + "name": "ghash-x86.pl", + "base_name": "ghash-x86", + "extension": ".pl", + "size": 41631, + "date": "2017-05-25", + "sha1": "a5379c4cb48ee846a21e207b149ffeda3c6ea4ef", + "md5": "f82fcd3d8fa685d6744eedfeac4f9fc3", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghash-x86_64.pl", + "type": "file", + "name": "ghash-x86_64.pl", + "base_name": "ghash-x86_64", + "extension": ".pl", + "size": 43251, + "date": "2017-05-25", + "sha1": "8b53c657cf67b50c581e4399d609c9a3ce981a45", + "md5": "075e484f2629c40765747844156e9843", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghashp8-ppc.pl", + "type": "file", + "name": "ghashp8-ppc.pl", + "base_name": "ghashp8-ppc", + "extension": ".pl", + "size": 14788, + "date": "2017-05-25", + "sha1": "a1a6a0eec40e9c6ac3e246d0e13e7d6aa60666b2", + "md5": "c3fb270716147665254301fae6cc80f5", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/modes/asm/ghashv8-armx.pl", + "type": "file", + "name": "ghashv8-armx.pl", + "base_name": "ghashv8-armx", + "extension": ".pl", + "size": 11851, + "date": "2017-05-25", + "sha1": "00bcd5bec64d199f99a886052228b235bfa967be", + "md5": "e356dbb098b1d5d5387f5b29ce8fd1ce", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects", + "type": "directory", + "name": "objects", + "base_name": "objects", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 0, + "size_count": 449249, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 106, + "date": "2017-05-25", + "sha1": "56dfb66b7186c34574f061a953621e9bbeb8d9e9", + "md5": "9e78c5203474756a73611ecfcd17ac91", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/o_names.c", + "type": "file", + "name": "o_names.c", + "base_name": "o_names", + "extension": ".c", + "size": 10036, + "date": "2017-05-25", + "sha1": "ab8c1b0ecd3608c5cc6b597feee9d53ec26739eb", + "md5": "172425917f613854ff3e6ab93083c5ef", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_dat.c", + "type": "file", + "name": "obj_dat.c", + "base_name": "obj_dat", + "extension": ".c", + "size": 18206, + "date": "2017-05-25", + "sha1": "75b74a6d99b09e4abd9fd98058f3818926154cf2", + "md5": "1c0c6c9c2d0fef9dfc7d2b4e2091aa8f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_dat.h", + "type": "file", + "name": "obj_dat.h", + "base_name": "obj_dat", + "extension": ".h", + "size": 317044, + "date": "2017-05-25", + "sha1": "be59de278c8704ca083fff45d08af7245bb77979", + "md5": "b1270c4ffce200ac21b17fd67d3086ca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_dat.pl", + "type": "file", + "name": "obj_dat.pl", + "base_name": "obj_dat", + "extension": ".pl", + "size": 6095, + "date": "2017-05-25", + "sha1": "b84ec0045bea949171d41ac0b6d97c78480a0e84", + "md5": "22150bc1f9a61c228c3dd7b5bb18c236", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 158, + "end_line": 161, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 157, + "end_line": 157 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_err.c", + "type": "file", + "name": "obj_err.c", + "base_name": "obj_err", + "extension": ".c", + "size": 1445, + "date": "2017-05-25", + "sha1": "1de85125ddf33db182fb5d27db233d8207d18303", + "md5": "f15052a4335645fffbf3d2af0bfaee02", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_lcl.h", + "type": "file", + "name": "obj_lcl.h", + "base_name": "obj_lcl", + "extension": ".h", + "size": 492, + "date": "2017-05-25", + "sha1": "917b7d8c68b34573563f78a9863f7e596a647bad", + "md5": "a63de7ebef5a8b5b04609e9b66076b4e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_lib.c", + "type": "file", + "name": "obj_lib.c", + "base_name": "obj_lib", + "extension": ".c", + "size": 1760, + "date": "2017-05-25", + "sha1": "15ea7ae06ade0e8cb83afa010747eed792e4222c", + "md5": "535632da15f80f74a55909364d99564c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_mac.num", + "type": "file", + "name": "obj_mac.num", + "base_name": "obj_mac", + "extension": ".num", + "size": 23433, + "date": "2017-05-25", + "sha1": "73d09cab1e1ca2def3342c1410d408204a461d56", + "md5": "aa405044a4b4b4ca3bc3a1dcf7b617f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_xref.c", + "type": "file", + "name": "obj_xref.c", + "base_name": "obj_xref", + "extension": ".c", + "size": 3998, + "date": "2017-05-25", + "sha1": "d2dc39b58c36d90ec59aca9f75609a0029f01bb2", + "md5": "c5623a6ef106360a11e6ccf6a535ca82", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_xref.h", + "type": "file", + "name": "obj_xref.h", + "base_name": "obj_xref", + "extension": ".h", + "size": 4347, + "date": "2017-05-25", + "sha1": "6dca726e9570e7c115498b998ca1e2ede30b2be3", + "md5": "b365cfc6694d8c399fee39d9c232719d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 10, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/obj_xref.txt", + "type": "file", + "name": "obj_xref.txt", + "base_name": "obj_xref", + "extension": ".txt", + "size": 2488, + "date": "2017-05-25", + "sha1": "66c4b413d3d01bf4de4faf2b2f5a3bac3a212054", + "md5": "e870604b9071bf9c7a70efa3141579c4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/objects.pl", + "type": "file", + "name": "objects.pl", + "base_name": "objects", + "extension": ".pl", + "size": 4805, + "date": "2017-05-25", + "sha1": "f03fd8865cff5bc3b457d8bc109ec3502b721c52", + "md5": "ef781d3aec566cc0be57cc6f415c4fd3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 133, + "end_line": 136, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 132, + "end_line": 132 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/objects.txt", + "type": "file", + "name": "objects.txt", + "base_name": "objects", + "extension": ".txt", + "size": 51031, + "date": "2017-05-25", + "sha1": "a03d48403e2d220042a7a5bb5cc39a10604df4a6", + "md5": "522f41d4c8aaac3ac2cfaae873aae631", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/objxref.pl", + "type": "file", + "name": "objxref.pl", + "base_name": "objxref", + "extension": ".pl", + "size": 2691, + "date": "2017-05-25", + "sha1": "94b70dbfec6d3c3bbe0f7d61cbac9b60846873aa", + "md5": "4a45750fa215da86ad427976af8b75c9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 74, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/objects/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 1272, + "date": "2017-05-25", + "sha1": "d5935fb3b0a6fd9be88635c94d167cef48f96235", + "md5": "4cd7405fa63b45e829e24d85b7c4f2ee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp", + "type": "directory", + "name": "ocsp", + "base_name": "ocsp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 95294, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 172, + "date": "2017-05-25", + "sha1": "0c214cc648aca310d8fe33574b74fe5bb9d18b3c", + "md5": "dfafa6b0e41c7607a3480e1820601cf3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_asn.c", + "type": "file", + "name": "ocsp_asn.c", + "base_name": "ocsp_asn", + "extension": ".c", + "size": 5226, + "date": "2017-05-25", + "sha1": "cecf6f388e4cf7dbc228c58578d966def37b855b", + "md5": "844d2d4c2ae9b35a757503270e8543e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_cl.c", + "type": "file", + "name": "ocsp_cl.c", + "base_name": "ocsp_cl", + "extension": ".c", + "size": 10180, + "date": "2017-05-25", + "sha1": "23cb56e033c7982b254ec240cb5bba6884d4413f", + "md5": "6cdd740e7cb93a453eab12fd11864657", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_err.c", + "type": "file", + "name": "ocsp_err.c", + "base_name": "ocsp_err", + "extension": ".c", + "size": 3914, + "date": "2017-05-25", + "sha1": "f627b938e648d824aa3a3e261b9308091550aed3", + "md5": "3c942aa8d2428dd57c9a401809882aec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_ext.c", + "type": "file", + "name": "ocsp_ext.c", + "base_name": "ocsp_ext", + "extension": ".c", + "size": 14297, + "date": "2017-05-25", + "sha1": "d87d37717c6fb12d9ecab55072ceff4a3589cb66", + "md5": "f27d7362febfe5d92dbff603e5a2eb6d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_ht.c", + "type": "file", + "name": "ocsp_ht.c", + "base_name": "ocsp_ht", + "extension": ".c", + "size": 12858, + "date": "2017-05-25", + "sha1": "3c5345efdc65f8323adeab16072162b5e6268cc7", + "md5": "4d37efd8b1205d8cfb564fcf245376ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_lcl.h", + "type": "file", + "name": "ocsp_lcl.h", + "base_name": "ocsp_lcl", + "extension": ".h", + "size": 7346, + "date": "2017-05-25", + "sha1": "6856ae8ac945b8213d1c46b5bf54e8991b217191", + "md5": "1513892fe92bb34fe82337e4bded150a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_lib.c", + "type": "file", + "name": "ocsp_lib.c", + "base_name": "ocsp_lib", + "extension": ".c", + "size": 5270, + "date": "2017-05-25", + "sha1": "4c469e8192f047fdf9483f8a3d591c6aef53a656", + "md5": "8a3053f0ec38c2ba65d745c22fe761c4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_prn.c", + "type": "file", + "name": "ocsp_prn.c", + "base_name": "ocsp_prn", + "extension": ".c", + "size": 8446, + "date": "2017-05-25", + "sha1": "24480648db921db64ccb5168bc5a60ee7964c765", + "md5": "d462dc75f5cc99f7d30dc3923a82c588", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_srv.c", + "type": "file", + "name": "ocsp_srv.c", + "base_name": "ocsp_srv", + "extension": ".c", + "size": 7560, + "date": "2017-05-25", + "sha1": "a46e61301fb54dd60ef391c524963cd316fdd728", + "md5": "c93a1ec442817240131094a71414fa03", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/ocsp_vfy.c", + "type": "file", + "name": "ocsp_vfy.c", + "base_name": "ocsp_vfy", + "extension": ".c", + "size": 13040, + "date": "2017-05-25", + "sha1": "439d215124ebcc72a66244889d8e293d17c51c88", + "md5": "f76419035a1cc054c94c618643c300ca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ocsp/v3_ocsp.c", + "type": "file", + "name": "v3_ocsp.c", + "base_name": "v3_ocsp", + "extension": ".c", + "size": 6985, + "date": "2017-05-25", + "sha1": "0541e48493e769737333e0cb169a048fa7a476f8", + "md5": "3ef0de71bc0d9bb7ba99531fac3866b1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem", + "type": "directory", + "name": "pem", + "base_name": "pem", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 85816, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 179, + "date": "2017-05-25", + "sha1": "7f8fdefe6cc8d13221e5dc7510cf7f35a239040c", + "md5": "18a7977778bcf4824034cd72d0c45a01", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_all.c", + "type": "file", + "name": "pem_all.c", + "base_name": "pem_all", + "extension": ".c", + "size": 5145, + "date": "2017-05-25", + "sha1": "931ef41bdaafc32732b7968326749e1457680e0d", + "md5": "84160e0e8d9deb0dee138874c75a45a8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_err.c", + "type": "file", + "name": "pem_err.c", + "base_name": "pem_err", + "extension": ".c", + "size": 5123, + "date": "2017-05-25", + "sha1": "61c5652fbd5a66dbd8c22fa41eebfbff6158df16", + "md5": "df09132db6140a40ea37073d97be5b1e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_info.c", + "type": "file", + "name": "pem_info.c", + "base_name": "pem_info", + "extension": ".c", + "size": 10545, + "date": "2017-05-25", + "sha1": "19e01b2432006901d623641a34a8c96b4b24c3b0", + "md5": "c467c60581c62c576c81b302d2c89840", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_lib.c", + "type": "file", + "name": "pem_lib.c", + "base_name": "pem_lib", + "extension": ".c", + "size": 24097, + "date": "2017-05-25", + "sha1": "28561ca5aeb7d239e29c1764920e1d48843cd016", + "md5": "8f351472d4195a7ea874fbb8d9dd8b3d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_oth.c", + "type": "file", + "name": "pem_oth.c", + "base_name": "pem_oth", + "extension": ".c", + "size": 1051, + "date": "2017-05-25", + "sha1": "64d29808edb4ff8f66435f93210ab2fe3856514f", + "md5": "b3b3297d54cd642497ef2caee18d4460", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_pk8.c", + "type": "file", + "name": "pem_pk8.c", + "base_name": "pem_pk8", + "extension": ".c", + "size": 6662, + "date": "2017-05-25", + "sha1": "d1ac8a68edb21332338ed9fdde7e633a940ac756", + "md5": "61ffe02d0e4274428690d500eccb9a2a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_pkey.c", + "type": "file", + "name": "pem_pkey.c", + "base_name": "pem_pkey", + "extension": ".c", + "size": 7014, + "date": "2017-05-25", + "sha1": "cb91fcc5dd47996b2f1a13eb33b494e4db475338", + "md5": "bbafd465f138e2babbe68e26b3222429", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_sign.c", + "type": "file", + "name": "pem_sign.c", + "base_name": "pem_sign", + "extension": ".c", + "size": 1294, + "date": "2017-05-25", + "sha1": "9f3106b53af8a5babe83e6cfc4a1fe7f8be17ad5", + "md5": "67466d6a5b70b7aea75500d2f5bbbc5a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_x509.c", + "type": "file", + "name": "pem_x509.c", + "base_name": "pem_x509", + "extension": ".c", + "size": 565, + "date": "2017-05-25", + "sha1": "7f3d962bdeae311b9b06c5e43e42ec3275603c93", + "md5": "ade44954c17814796e9b6a9f7372df6e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pem_xaux.c", + "type": "file", + "name": "pem_xaux.c", + "base_name": "pem_xaux", + "extension": ".c", + "size": 581, + "date": "2017-05-25", + "sha1": "191b6f336febb63fd2e169583fdfa0140365cebd", + "md5": "b199e428a2110cfbcde5fbe415bfbef5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pem/pvkfmt.c", + "type": "file", + "name": "pvkfmt.c", + "base_name": "pvkfmt", + "extension": ".c", + "size": 23560, + "date": "2017-05-25", + "sha1": "9298d36fa5c7f1917d5ce32f2782cf4643b5c998", + "md5": "4329899de2c7ee7576a0e1a55c2b4076", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm", + "type": "directory", + "name": "perlasm", + "base_name": "perlasm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 124286, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/arm-xlate.pl", + "type": "file", + "name": "arm-xlate.pl", + "base_name": "arm-xlate", + "extension": ".pl", + "size": 4141, + "date": "2017-05-25", + "sha1": "ca3d800da2241eee7aaf09c6118c82214896defa", + "md5": "d48c28f345a27bfd4c31d5b9b436483d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/cbc.pl", + "type": "file", + "name": "cbc.pl", + "base_name": "cbc", + "extension": ".pl", + "size": 9400, + "date": "2017-05-25", + "sha1": "e3fd53a9abd123cfdfcb5b92c3ddbc74d19629f1", + "md5": "6c3400681ae9355812b5d2f680a4731a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/ppc-xlate.pl", + "type": "file", + "name": "ppc-xlate.pl", + "base_name": "ppc-xlate", + "extension": ".pl", + "size": 7722, + "date": "2017-05-25", + "sha1": "a51d748c2810b00d3a55ce92d4ea8664c7d65ea0", + "md5": "372fe925ac4775940e0994774f92c63c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 3423, + "date": "2017-05-25", + "sha1": "8bd945ad09f03df6342be5529b8d60b37e90d7f8", + "md5": "929322c13f7c049076a23d247d712a0a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/sparcv9_modes.pl", + "type": "file", + "name": "sparcv9_modes.pl", + "base_name": "sparcv9_modes", + "extension": ".pl", + "size": 39385, + "date": "2017-05-25", + "sha1": "420e4dc636d225ef5a83fd1c0246910478a319dc", + "md5": "1e03cc1f26caf74761819e7009652452", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/x86_64-xlate.pl", + "type": "file", + "name": "x86_64-xlate.pl", + "base_name": "x86_64-xlate", + "extension": ".pl", + "size": 37007, + "date": "2017-05-25", + "sha1": "8fba5defb72e5bafc19eb0313aeab392e6df7771", + "md5": "f803831c8e8453836cf86707bbd6a727", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/x86asm.pl", + "type": "file", + "name": "x86asm.pl", + "base_name": "x86asm", + "extension": ".pl", + "size": 7447, + "date": "2017-05-25", + "sha1": "9099a512a130de06cc2f66b797910cab970e035a", + "md5": "65c34733a3d2f84cb7edebc6f1507461", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/x86gas.pl", + "type": "file", + "name": "x86gas.pl", + "base_name": "x86gas", + "extension": ".pl", + "size": 6458, + "date": "2017-05-25", + "sha1": "a151c661e288d2cafd43e9b0a8d272d6eb3b5bf5", + "md5": "5843f1bd7d266d4c998ffd17bef26c2c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/x86masm.pl", + "type": "file", + "name": "x86masm.pl", + "base_name": "x86masm", + "extension": ".pl", + "size": 4788, + "date": "2017-05-25", + "sha1": "46889eb121784ef174fbdbf4387302e9865b1725", + "md5": "d5ad57eb9916a518f16b5e6c14702522", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/perlasm/x86nasm.pl", + "type": "file", + "name": "x86nasm.pl", + "base_name": "x86nasm", + "extension": ".pl", + "size": 4515, + "date": "2017-05-25", + "sha1": "20c6ea7eb450bb61d06358016b86eaee5a4d3dc7", + "md5": "e9987cc157a110448a77e73124da4515", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12", + "type": "directory", + "name": "pkcs12", + "base_name": "pkcs12", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 0, + "size_count": 73331, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 243, + "date": "2017-05-25", + "sha1": "058e9c10e5e5e74b70fe8ad32cec508dddaa3df1", + "md5": "006fc223a9e249240c9b03bf6a343370", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_add.c", + "type": "file", + "name": "p12_add.c", + "base_name": "p12_add", + "extension": ".c", + "size": 5132, + "date": "2017-05-25", + "sha1": "1ef2c14eb4251d91c31956f5cf45ad6daae3245a", + "md5": "11f92178b1bd3cac332fc0be4dbd013a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_asn.c", + "type": "file", + "name": "p12_asn.c", + "base_name": "p12_asn", + "extension": ".c", + "size": 3080, + "date": "2017-05-25", + "sha1": "17bd0e07da3943c5a57b9c1bac51747b8d0282a1", + "md5": "82f8675ab915f7263e2da4c8cf5f92fa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_attr.c", + "type": "file", + "name": "p12_attr.c", + "base_name": "p12_attr", + "extension": ".c", + "size": 3050, + "date": "2017-05-25", + "sha1": "7e5ffbbfa20bea90bb63ab950e8b660809b99620", + "md5": "d18bb05ff3af4ae5e622dad9da172543", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_crpt.c", + "type": "file", + "name": "p12_crpt.c", + "base_name": "p12_crpt", + "extension": ".c", + "size": 2305, + "date": "2017-05-25", + "sha1": "18f2ed15aa514d35d40b70974777f42945701d37", + "md5": "455a070508b527f1baffe0ef95ae23db", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_crt.c", + "type": "file", + "name": "p12_crt.c", + "base_name": "p12_crt", + "extension": ".c", + "size": 6971, + "date": "2017-05-25", + "sha1": "9ee0f9b743203113e6e610fb6b4b497f636cf4f8", + "md5": "a5067111647ebeefb8ed70513014fe8a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_decr.c", + "type": "file", + "name": "p12_decr.c", + "base_name": "p12_decr", + "extension": ".c", + "size": 4414, + "date": "2017-05-25", + "sha1": "f7e036bbee7b284dc6ccb93d336b577743c95397", + "md5": "f2e79f1685614b370c55a6611b950cdf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_init.c", + "type": "file", + "name": "p12_init.c", + "base_name": "p12_init", + "extension": ".c", + "size": 1179, + "date": "2017-05-25", + "sha1": "338f831f05b88bced1e718749a931184bf47371c", + "md5": "6b158bb877bbb393412d1e815e8103d5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_key.c", + "type": "file", + "name": "p12_key.c", + "base_name": "p12_key", + "extension": ".c", + "size": 6017, + "date": "2017-05-25", + "sha1": "7ff634ac4026389761e5c30b06c01bee4b0c3765", + "md5": "4530d7d9827e0c8eb10c74da8f249925", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_kiss.c", + "type": "file", + "name": "p12_kiss.c", + "base_name": "p12_kiss", + "extension": ".c", + "size": 7011, + "date": "2017-05-25", + "sha1": "e28860c5815ad36ecfc704bbaee2219f0667c87a", + "md5": "efef6a5c16e00ef58ecd5574832300f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_lcl.h", + "type": "file", + "name": "p12_lcl.h", + "base_name": "p12_lcl", + "extension": ".h", + "size": 1198, + "date": "2017-05-25", + "sha1": "a2abf9b9f98bfba018fb094503befa15f30ba22d", + "md5": "c87c069fdfcf6903c4a072da72938b79", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_mutl.c", + "type": "file", + "name": "p12_mutl.c", + "base_name": "p12_mutl", + "extension": ".c", + "size": 7790, + "date": "2017-05-25", + "sha1": "f90507ea4ba05513f53915b81572b996cbaea3a1", + "md5": "76fa110108753c4978b4462fcca7ca78", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_npas.c", + "type": "file", + "name": "p12_npas.c", + "base_name": "p12_npas", + "extension": ".c", + "size": 5749, + "date": "2017-05-25", + "sha1": "de7ce4ce2b5074beb369b2aa4277548b6c2b422b", + "md5": "909a6be5a80659ef65acb55603d00c22", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_p8d.c", + "type": "file", + "name": "p12_p8d.c", + "base_name": "p12_p8d", + "extension": ".c", + "size": 811, + "date": "2017-05-25", + "sha1": "b27ec296cf575029a72b817bb7d6b3b725974850", + "md5": "08dac86d03d351b9b96bb2c646b693cd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_p8e.c", + "type": "file", + "name": "p12_p8e.c", + "base_name": "p12_p8e", + "extension": ".c", + "size": 2010, + "date": "2017-05-25", + "sha1": "464a11107a906f8985cca9caf72b4b584f9172c4", + "md5": "068eb5fdd69e40bf9f3dfb20282a2bec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_sbag.c", + "type": "file", + "name": "p12_sbag.c", + "base_name": "p12_sbag", + "extension": ".c", + "size": 4857, + "date": "2017-05-25", + "sha1": "880c469e157c77047b0b876acef06ac66b6ebf0b", + "md5": "61ac251bdd27fd8a1c79725063a1a4f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/p12_utl.c", + "type": "file", + "name": "p12_utl.c", + "base_name": "p12_utl", + "extension": ".c", + "size": 7256, + "date": "2017-05-25", + "sha1": "55a74ccb2774a8fb33699d409ca00bd170a8d787", + "md5": "2b460253114806921e295cbb732947a7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs12/pk12err.c", + "type": "file", + "name": "pk12err.c", + "base_name": "pk12err", + "extension": ".c", + "size": 4258, + "date": "2017-05-25", + "sha1": "bb072f7a45c592cfb07ab53861c42cc67a80c668", + "md5": "ecbc928443e6f730d8807d1eacf5a0a3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7", + "type": "directory", + "name": "pkcs7", + "base_name": "pkcs7", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 0, + "size_count": 87587, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/bio_pk7.c", + "type": "file", + "name": "bio_pk7.c", + "base_name": "bio_pk7", + "extension": ".c", + "size": 653, + "date": "2017-05-25", + "sha1": "db00f7bdbb56c1fb0d0fc6821e3058e47095928a", + "md5": "f3b226e24e7a07f3190134bd04432512", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 152, + "date": "2017-05-25", + "sha1": "07348d1551a3d40cd291752212559825dfeb2247", + "md5": "37f86d63a3e805552e871daa66df3941", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pk7_asn1.c", + "type": "file", + "name": "pk7_asn1.c", + "base_name": "pk7_asn1", + "extension": ".c", + "size": 7525, + "date": "2017-05-25", + "sha1": "9f014d78a9c2292478babe3d181e21422f51c773", + "md5": "0f53888d58431f2bfbcd75002c9c3617", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pk7_attr.c", + "type": "file", + "name": "pk7_attr.c", + "base_name": "pk7_attr", + "extension": ".c", + "size": 3741, + "date": "2017-05-25", + "sha1": "e8ba63b1c2879b3a4d944d7a3d2e4bc872bb42a0", + "md5": "111d65992b4583e3d8e4bef28925206a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pk7_dgst.c", + "type": "file", + "name": "pk7_dgst.c", + "base_name": "pk7_dgst", + "extension": ".c", + "size": 491, + "date": "2017-05-25", + "sha1": "fcc13e4d61c33f3c68df905cab24d96cd28a2e86", + "md5": "256cc7ead5bce656206f64b0261dad87", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pk7_doit.c", + "type": "file", + "name": "pk7_doit.c", + "base_name": "pk7_doit", + "extension": ".c", + "size": 34553, + "date": "2017-05-25", + "sha1": "9a0041a784caf34f7677ae24bfe79c3af51cad52", + "md5": "061e019b476f5f0d57b277b1ec12f134", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pk7_enc.c", + "type": "file", + "name": "pk7_enc.c", + "base_name": "pk7_enc", + "extension": ".c", + "size": 738, + "date": "2017-05-25", + "sha1": "c3c27007ded720ae6dbed38865ef300825f21846", + "md5": "b8b78328189c6046e7c6bc4ad11fe59e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pk7_lib.c", + "type": "file", + "name": "pk7_lib.c", + "base_name": "pk7_lib", + "extension": ".c", + "size": 15625, + "date": "2017-05-25", + "sha1": "080b70b60b3d1b79b1f9e01563944a6a743c5700", + "md5": "4727837fe3d9f99d2d925d44b53f6f3e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pk7_mime.c", + "type": "file", + "name": "pk7_mime.c", + "base_name": "pk7_mime", + "extension": ".c", + "size": 1514, + "date": "2017-05-25", + "sha1": "23211b1eda5a761e81fa4f7f3a156f90547579e3", + "md5": "c86ab8fa200601a9af9d53d0e33dccac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pk7_smime.c", + "type": "file", + "name": "pk7_smime.c", + "base_name": "pk7_smime", + "extension": ".c", + "size": 16340, + "date": "2017-05-25", + "sha1": "cc08e24a0deed576bce5b399f368af32a0ff09ff", + "md5": "91ed5640f12caa218af8a7a375a0ab10", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/pkcs7/pkcs7err.c", + "type": "file", + "name": "pkcs7err.c", + "base_name": "pkcs7err", + "extension": ".c", + "size": 6255, + "date": "2017-05-25", + "sha1": "23bb0dfd93c1f448ee11196e8c02172639a7839f", + "md5": "03bf99ba680dcba01b075edfa97111e3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305", + "type": "directory", + "name": "poly1305", + "base_name": "poly1305", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 1, + "size_count": 284689, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 915, + "date": "2017-05-25", + "sha1": "ee36dfeed8c06450f6c8349f60fa4b7f9047a552", + "md5": "7c0a63adbeb9f0175086805477273fca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/poly1305.c", + "type": "file", + "name": "poly1305.c", + "base_name": "poly1305", + "extension": ".c", + "size": 36535, + "date": "2017-05-25", + "sha1": "ce01b26dfbe0430b87ff5dac3f2a47719894d740", + "md5": "9a9735b944f2b9ae3f517ad7ebd55b37", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/poly1305_ieee754.c", + "type": "file", + "name": "poly1305_ieee754.c", + "base_name": "poly1305_ieee754", + "extension": ".c", + "size": 13663, + "date": "2017-05-25", + "sha1": "ca94c4e5c3a4a4ec3d4e0ffa43adcd6871a5bf2a", + "md5": "99f7f413df4dca181e145fbaea9228e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 233576, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-armv4.pl", + "type": "file", + "name": "poly1305-armv4.pl", + "base_name": "poly1305-armv4", + "extension": ".pl", + "size": 29748, + "date": "2017-05-25", + "sha1": "dda8fd6ec865acbfa3641dec250d99aa7f6ec14a", + "md5": "c44329c60173e4f3640d7b9a442648cd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-armv8.pl", + "type": "file", + "name": "poly1305-armv8.pl", + "base_name": "poly1305-armv8", + "extension": ".pl", + "size": 21476, + "date": "2017-05-25", + "sha1": "db31e24a21488e704b5b512346341e701a1adf9d", + "md5": "4d8fd7744dfd7e132d09fe48205b0034", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-c64xplus.pl", + "type": "file", + "name": "poly1305-c64xplus.pl", + "base_name": "poly1305-c64xplus", + "extension": ".pl", + "size": 8696, + "date": "2017-05-25", + "sha1": "de630ead18fe84e0ace789b8b7c0db7807222d60", + "md5": "cf3cc7b1d03d172460afc8d99366d7ae", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-mips.pl", + "type": "file", + "name": "poly1305-mips.pl", + "base_name": "poly1305-mips", + "extension": ".pl", + "size": 8744, + "date": "2017-05-25", + "sha1": "43271d2e01b5dee82de1eb7665cd768b0a2129e9", + "md5": "b303d863ef5b60b42513b4d77ca850d3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-ppc.pl", + "type": "file", + "name": "poly1305-ppc.pl", + "base_name": "poly1305-ppc", + "extension": ".pl", + "size": 13608, + "date": "2017-05-25", + "sha1": "f6cf8da22340b5c5132271e01ef5886b43573774", + "md5": "fba2eccf3cb63c0edcddcb12b0f7442b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-ppcfp.pl", + "type": "file", + "name": "poly1305-ppcfp.pl", + "base_name": "poly1305-ppcfp", + "extension": ".pl", + "size": 17531, + "date": "2017-05-25", + "sha1": "94a80a6f63544a425fcb58bb8655665507ed244a", + "md5": "9a36f31bf0a86a4cda3fbaaccc9ff712", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-s390x.pl", + "type": "file", + "name": "poly1305-s390x.pl", + "base_name": "poly1305-s390x", + "extension": ".pl", + "size": 4609, + "date": "2017-05-25", + "sha1": "d4eb7bf3f86c09193aa2236c9261d8dc75aa8aae", + "md5": "51b3f0adb10acc958775cea4d2de119c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-sparcv9.pl", + "type": "file", + "name": "poly1305-sparcv9.pl", + "base_name": "poly1305-sparcv9", + "extension": ".pl", + "size": 24273, + "date": "2017-05-25", + "sha1": "588c7db1f72cdc43f3262ee6f5eabdb67656f670", + "md5": "f6ef31761560da47d017650e77caa975", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-x86.pl", + "type": "file", + "name": "poly1305-x86.pl", + "base_name": "poly1305-x86", + "extension": ".pl", + "size": 51671, + "date": "2017-05-25", + "sha1": "0af5382772e74d4695d26317a69fe559087db8cd", + "md5": "c015c7ca0456d12d1b2b19142274c84e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/poly1305/asm/poly1305-x86_64.pl", + "type": "file", + "name": "poly1305-x86_64.pl", + "base_name": "poly1305-x86_64", + "extension": ".pl", + "size": 53220, + "date": "2017-05-25", + "sha1": "867700c35c2ae058e0a0edef85673e942bc8af9a", + "md5": "b45f319efe8224b41ba6006280bdec09", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand", + "type": "directory", + "name": "rand", + "base_name": "rand", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 60919, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 153, + "date": "2017-05-25", + "sha1": "41e67928f3567ee91658afd4e74e2bb24d4ba16a", + "md5": "a6d7936384da8dd9f721c1a5fe9a3245", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/md_rand.c", + "type": "file", + "name": "md_rand.c", + "base_name": "md_rand", + "extension": ".c", + "size": 18938, + "date": "2017-05-25", + "sha1": "24a41529456299ccaf4f41e92d5fb46ce6f96ac0", + "md5": "67297235ac6925e5a7849d0b6c34edf8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/rand_egd.c", + "type": "file", + "name": "rand_egd.c", + "base_name": "rand_egd", + "extension": ".c", + "size": 7122, + "date": "2017-05-25", + "sha1": "71c0875546630b460f3f6a71c48132ee16633945", + "md5": "c206d111b8c79ad7bc1fb3473f7b364f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/rand_err.c", + "type": "file", + "name": "rand_err.c", + "base_name": "rand_err", + "extension": ".c", + "size": 1102, + "date": "2017-05-25", + "sha1": "e82e67ea5d7929b575341da6fd356268fe971556", + "md5": "d7f5d1a9ea86947594b516f2c822aca8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/rand_lcl.h", + "type": "file", + "name": "rand_lcl.h", + "base_name": "rand_lcl", + "extension": ".h", + "size": 1836, + "date": "2017-05-25", + "sha1": "3638d379326cf00b422d5128382554788f981601", + "md5": "70777724039ddf9b2c9288155825e2d0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/rand_lib.c", + "type": "file", + "name": "rand_lib.c", + "base_name": "rand_lib", + "extension": ".c", + "size": 4168, + "date": "2017-05-25", + "sha1": "3d2aaf030ab4fb653941fb0d42295f95d2e8722a", + "md5": "6e25b1401c06faf5f4603c983c8a5056", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/rand_unix.c", + "type": "file", + "name": "rand_unix.c", + "base_name": "rand_unix", + "extension": ".c", + "size": 9654, + "date": "2017-05-25", + "sha1": "774fda97132236720997c806c959f28257f048dd", + "md5": "943212a938d29ae63c91d2254e3b4b00", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/rand_vms.c", + "type": "file", + "name": "rand_vms.c", + "base_name": "rand_vms", + "extension": ".c", + "size": 3865, + "date": "2017-05-25", + "sha1": "c8ddaa7e430f9751babd766e1d5b472ac2c308a6", + "md5": "4f3f22b1f14a372687236b10da4a369b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "modified by VMS Software, Inc" + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/rand_win.c", + "type": "file", + "name": "rand_win.c", + "base_name": "rand_win", + "extension": ".c", + "size": 3488, + "date": "2017-05-25", + "sha1": "6317f9f005ace589057ad61f981d286f7d99597d", + "md5": "588a5c8827efb10e5d16fdfb4895329f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rand/randfile.c", + "type": "file", + "name": "randfile.c", + "base_name": "randfile", + "extension": ".c", + "size": 10593, + "date": "2017-05-25", + "sha1": "328a680640439714d921fef5a73fc48016d19bac", + "md5": "61b9ddd60f3cf82d0d464645e984c9c8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2", + "type": "directory", + "name": "rc2", + "base_name": "rc2", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 22542, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 108, + "date": "2017-05-25", + "sha1": "eaa9ae9270654e3b146b0c77a44fe3aa17c14cc6", + "md5": "4adb567ec157843f3bccab4f05510c57", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2/rc2_cbc.c", + "type": "file", + "name": "rc2_cbc.c", + "base_name": "rc2_cbc", + "extension": ".c", + "size": 4957, + "date": "2017-05-25", + "sha1": "178728f613112f0529e09e22c15eb2ec0482f5ca", + "md5": "00fb8b740e4db82d1498a8cf6c207ccf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2/rc2_ecb.c", + "type": "file", + "name": "rc2_ecb.c", + "base_name": "rc2_ecb", + "extension": ".c", + "size": 1048, + "date": "2017-05-25", + "sha1": "20ab6340ba97458b8a7df028979d653b189a2eb4", + "md5": "eaad2da7cffb14d243819726e01b9ef6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2/rc2_locl.h", + "type": "file", + "name": "rc2_locl.h", + "base_name": "rc2_locl", + "extension": ".h", + "size": 5085, + "date": "2017-05-25", + "sha1": "a9449efe089cfe9501a44b578617781631d45156", + "md5": "79be97a4913ac746ae5f9470c3a60c27", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2/rc2_skey.c", + "type": "file", + "name": "rc2_skey.c", + "base_name": "rc2_skey", + "extension": ".c", + "size": 3565, + "date": "2017-05-25", + "sha1": "8bdb694e04d2d5d20630bdd9ae0185372fa1e069", + "md5": "b0b1b2059422f1e508fded8923fe8023", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2/rc2cfb64.c", + "type": "file", + "name": "rc2cfb64.c", + "base_name": "rc2cfb64", + "extension": ".c", + "size": 2184, + "date": "2017-05-25", + "sha1": "c797f59a53f7a6013e840bc25eb4669b79640108", + "md5": "2ccade916377a4789edecd132155baeb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2/rc2ofb64.c", + "type": "file", + "name": "rc2ofb64.c", + "base_name": "rc2ofb64", + "extension": ".c", + "size": 1620, + "date": "2017-05-25", + "sha1": "9ac6d472b2f0b119167ae435e1da1b26b65f7394", + "md5": "8742f94e853ff6dc2edc9af2a34e937e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc2/tab.c", + "type": "file", + "name": "tab.c", + "base_name": "tab", + "extension": ".c", + "size": 3975, + "date": "2017-05-25", + "sha1": "eaaffee79b5ee29f409cfff9970fa7846dd09836", + "md5": "3429a2d35f44b9cf1a0ebae28a05e76a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4", + "type": "directory", + "name": "rc4", + "base_name": "rc4", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 1, + "size_count": 89169, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 1218, + "date": "2017-05-25", + "sha1": "2ae56d1ced767822109dea612874791a92af74a9", + "md5": "1c8114a9fca1e695d6df77061d9c31b2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/rc4_enc.c", + "type": "file", + "name": "rc4_enc.c", + "base_name": "rc4_enc", + "extension": ".c", + "size": 2301, + "date": "2017-05-25", + "sha1": "e3989f33bec912571d3b22e7796dc38cd7119e64", + "md5": "852095901c5695c438cda9a386a8a46e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/rc4_locl.h", + "type": "file", + "name": "rc4_locl.h", + "base_name": "rc4_locl", + "extension": ".h", + "size": 462, + "date": "2017-05-25", + "sha1": "e161b137803b2449b5520a22820a57e21a4e7a4f", + "md5": "a9ce1ceec4744983ce2827bf85152205", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/rc4_skey.c", + "type": "file", + "name": "rc4_skey.c", + "base_name": "rc4_skey", + "extension": ".c", + "size": 1450, + "date": "2017-05-25", + "sha1": "95e144675c8b0cbfe16eff0fe1c153523d9802b5", + "md5": "e1879ea91df68a29f7ce99514b295962", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 83738, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-586.pl", + "type": "file", + "name": "rc4-586.pl", + "base_name": "rc4-586", + "extension": ".pl", + "size": 12509, + "date": "2017-05-25", + "sha1": "7182f6e37dce1777dd5578e269012d55e8f11b8f", + "md5": "5868b23178396061c0221cdaeaaf8e14", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 87.8, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 87.8, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 87.8, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-c64xplus.pl", + "type": "file", + "name": "rc4-c64xplus.pl", + "base_name": "rc4-c64xplus", + "extension": ".pl", + "size": 4276, + "date": "2017-05-25", + "sha1": "5ef52684554c8c4b0b1c23ca18bd2c6e6cbc325a", + "md5": "3752005e56da28cb021a8ccafe634a33", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-ia64.pl", + "type": "file", + "name": "rc4-ia64.pl", + "base_name": "rc4-ia64", + "extension": ".pl", + "size": 22633, + "date": "2017-05-25", + "sha1": "17414c6d7de7c42eb145e90e7a6fd6941a83944a", + "md5": "82beab1f126875b988f8fce33f703c5e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "mit", + "score": 95.4, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 34, + "matched_rule": { + "identifier": "mit_104.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David Mosberger " + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [ + "Copyright (c) 2005 Hewlett-Packard Development Company, L.P." + ], + "holders": [ + "Hewlett-Packard Development Company, L.P." + ], + "authors": [], + "start_line": 15, + "end_line": 15 + }, + { + "statements": [ + "Copyright (c) 2005 Hewlett-Packard Development Company, L.P." + ], + "holders": [ + "Hewlett-Packard Development Company, L.P." + ], + "authors": [], + "start_line": 325, + "end_line": 326 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-md5-x86_64.pl", + "type": "file", + "name": "rc4-md5-x86_64.pl", + "base_name": "rc4-md5-x86_64", + "extension": ".pl", + "size": 16497, + "date": "2017-05-25", + "sha1": "035d61eff9c6128b373d781ed2bd70c90c4a7675", + "md5": "b0425a8e08100fa028b4aef7cd059e22", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-parisc.pl", + "type": "file", + "name": "rc4-parisc.pl", + "base_name": "rc4-parisc", + "extension": ".pl", + "size": 7029, + "date": "2017-05-25", + "sha1": "9a715a2411b73b6aed4a90f4a10383a2207f1762", + "md5": "95776c322fdfcab0467c267c6a62004a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-s390x.pl", + "type": "file", + "name": "rc4-s390x.pl", + "base_name": "rc4-s390x", + "extension": ".pl", + "size": 4658, + "date": "2017-05-25", + "sha1": "eae9b5c5f90755c850eb7dcd00afe7eacf122e6d", + "md5": "8d67925351cbac2e6daec774f8eefd9c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc4/asm/rc4-x86_64.pl", + "type": "file", + "name": "rc4-x86_64.pl", + "base_name": "rc4-x86_64", + "extension": ".pl", + "size": 16136, + "date": "2017-05-25", + "sha1": "5fcc1e87b2b623f75b4e250039371d5b7578a44a", + "md5": "c3753d747e78cdb429a494a9cc3ad5f9", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5", + "type": "directory", + "name": "rc5", + "base_name": "rc5", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 1, + "size_count": 20120, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 260, + "date": "2017-05-25", + "sha1": "4b69cea9f5bebb4836f11c843c8891b36bda4a15", + "md5": "2b1266c35da537a45da7191bb175e6ed", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/rc5_ecb.c", + "type": "file", + "name": "rc5_ecb.c", + "base_name": "rc5_ecb", + "extension": ".c", + "size": 801, + "date": "2017-05-25", + "sha1": "de26bda32c583981bfd196ccbaf070dedefc0cfd", + "md5": "d979cb9ba1e0e57275094c9adeddb4e9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/rc5_enc.c", + "type": "file", + "name": "rc5_enc.c", + "base_name": "rc5_enc", + "extension": ".c", + "size": 4239, + "date": "2017-05-25", + "sha1": "ba418c400f54f2a0650e6a4b50bdf76964914359", + "md5": "15bd870acb514f05a2f24e211ac5d602", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/rc5_locl.h", + "type": "file", + "name": "rc5_locl.h", + "base_name": "rc5_locl", + "extension": ".h", + "size": 7044, + "date": "2017-05-25", + "sha1": "5376f793dfb2ba1f1e750f6fcd1ad52ac5024cff", + "md5": "16a5f8e822ac63c51edbb92a61457d80", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/rc5_skey.c", + "type": "file", + "name": "rc5_skey.c", + "base_name": "rc5_skey", + "extension": ".c", + "size": 1560, + "date": "2017-05-25", + "sha1": "b26bd1eb490334ff31cced237e2c6cfe73b97dd9", + "md5": "cadd0616e2eaf6397c8e576473cdc584", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/rc5cfb64.c", + "type": "file", + "name": "rc5cfb64.c", + "base_name": "rc5cfb64", + "extension": ".c", + "size": 2202, + "date": "2017-05-25", + "sha1": "698492fe7f3dc49ee4a07ab6a103ab4e7febc417", + "md5": "75fe42d80eff736ceea3f9e0b8864661", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/rc5ofb64.c", + "type": "file", + "name": "rc5ofb64.c", + "base_name": "rc5ofb64", + "extension": ".c", + "size": 1635, + "date": "2017-05-25", + "sha1": "1e5ee86ce9848eadaf92ed330d94c6bd6612c877", + "md5": "648f590c7a8aa0e8559b18c5398a4e29", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2379, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rc5/asm/rc5-586.pl", + "type": "file", + "name": "rc5-586.pl", + "base_name": "rc5-586", + "extension": ".pl", + "size": 2379, + "date": "2017-05-25", + "sha1": "ec27148acb261cc98f78dc257f1526c95c53f2c9", + "md5": "62323afbe118b6a464225a68b3c97e40", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ripemd", + "type": "directory", + "name": "ripemd", + "base_name": "ripemd", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 36056, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ripemd/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 223, + "date": "2017-05-25", + "sha1": "f39d9ef2d1e5a91e0844f6930a0bee447af09ab7", + "md5": "cbf94ffc940a52b9c6a23edc936c8db0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ripemd/rmd_dgst.c", + "type": "file", + "name": "rmd_dgst.c", + "base_name": "rmd_dgst", + "extension": ".c", + "size": 9946, + "date": "2017-05-25", + "sha1": "f9a71c60f6c02ccfcde28c31a8b126bc31355c8c", + "md5": "b8d9ff6cd95dab01da05cfb19c3fceb0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ripemd/rmd_locl.h", + "type": "file", + "name": "rmd_locl.h", + "base_name": "rmd_locl", + "extension": ".h", + "size": 2750, + "date": "2017-05-25", + "sha1": "09e4264dff06f51795b91b6c4c5c52f418121335", + "md5": "eb0fd445ba7221354b84aa76e7f806b6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ripemd/rmd_one.c", + "type": "file", + "name": "rmd_one.c", + "base_name": "rmd_one", + "extension": ".c", + "size": 816, + "date": "2017-05-25", + "sha1": "76b68c6dd5655fcdd993a8a2683ac619a1265b78", + "md5": "9eba5a059de2e7c84d00ae3d645358c4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ripemd/rmdconst.h", + "type": "file", + "name": "rmdconst.h", + "base_name": "rmdconst", + "extension": ".h", + "size": 5705, + "date": "2017-05-25", + "sha1": "65c32a03556b59e9a1977ada2a1696ca221c89f2", + "md5": "9fc2acdd63cee791dd64a33143746bef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ripemd/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 16616, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ripemd/asm/rmd-586.pl", + "type": "file", + "name": "rmd-586.pl", + "base_name": "rmd-586", + "extension": ".pl", + "size": 16616, + "date": "2017-05-25", + "sha1": "7adc1297723b0217285fcff9ad872990d9a1f8b1", + "md5": "16cf5251a4f2dc7e7bf1d4e408c60bac", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa", + "type": "directory", + "name": "rsa", + "base_name": "rsa", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 24, + "dirs_count": 0, + "size_count": 160887, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 322, + "date": "2017-05-25", + "sha1": "174d79849aa011a095285ab97f3bf457eb82c5cb", + "md5": "65d3e0efd3244de6f952decd437212c4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_ameth.c", + "type": "file", + "name": "rsa_ameth.c", + "base_name": "rsa_ameth", + "extension": ".c", + "size": 23971, + "date": "2017-05-25", + "sha1": "ef766c2badb7c084649a6f1589ac0bab182321fd", + "md5": "752815fb4c5a39df8fae92d1329d390c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_asn1.c", + "type": "file", + "name": "rsa_asn1.c", + "base_name": "rsa_asn1", + "extension": ".c", + "size": 2581, + "date": "2017-05-25", + "sha1": "329540c90b330cd0e306b76fb5685e79c4a1c890", + "md5": "da0f114d9ff88368d10aeee66b0474c5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_chk.c", + "type": "file", + "name": "rsa_chk.c", + "base_name": "rsa_chk", + "extension": ".c", + "size": 3877, + "date": "2017-05-25", + "sha1": "d086267424736acb83137dbf4a665931c42e2120", + "md5": "b958f64d34b5656e66c0dc83d052975c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_crpt.c", + "type": "file", + "name": "rsa_crpt.c", + "base_name": "rsa_crpt", + "extension": ".c", + "size": 4382, + "date": "2017-05-25", + "sha1": "7ba6643b2e9f4e572fbfe61abaaedff120504020", + "md5": "0c51f777f3d304c6707c95e4ce71f2a0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_depr.c", + "type": "file", + "name": "rsa_depr.c", + "base_name": "rsa_depr", + "extension": ".c", + "size": 1498, + "date": "2017-05-25", + "sha1": "65d25c4866c3a482283382994330c45cc827f79f", + "md5": "6f04ab9daa98ca8fd1e8c99ae499579e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_err.c", + "type": "file", + "name": "rsa_err.c", + "base_name": "rsa_err", + "extension": ".c", + "size": 9394, + "date": "2017-05-25", + "sha1": "03a3327c0b3cbba2d116c7e862e91bcb6cf7b80e", + "md5": "9bb162833772cf991688dd00e7875190", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_gen.c", + "type": "file", + "name": "rsa_gen.c", + "base_name": "rsa_gen", + "extension": ".c", + "size": 5664, + "date": "2017-05-25", + "sha1": "7b03c3843b077d8c8b71a4067bd5026bd145760f", + "md5": "fb025fc00f4670b9a45154b6fa4083ae", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_lib.c", + "type": "file", + "name": "rsa_lib.c", + "base_name": "rsa_lib", + "extension": ".c", + "size": 6703, + "date": "2017-05-25", + "sha1": "01077098e37e7986ce40170496982e7dfbecf97b", + "md5": "2e0c50e47228c5f9ee5ccd7026ee953a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_locl.h", + "type": "file", + "name": "rsa_locl.h", + "base_name": "rsa_locl", + "extension": ".h", + "size": 3587, + "date": "2017-05-25", + "sha1": "2f4123c1edd2fef6a96d29282e5de3231485dac7", + "md5": "a599ac2288dfa65abf75eff0e68a1e66", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_meth.c", + "type": "file", + "name": "rsa_meth.c", + "base_name": "rsa_meth", + "extension": ".c", + "size": 6996, + "date": "2017-05-25", + "sha1": "c4ed19ff2db7988b7fe58c12b76877a59aabbf69", + "md5": "2c5dd6f8f12ae6a06b704d7cf981f6d7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_none.c", + "type": "file", + "name": "rsa_none.c", + "base_name": "rsa_none", + "extension": ".c", + "size": 1198, + "date": "2017-05-25", + "sha1": "2ebda8df93087c3ef902a9c3e15a8328040e881b", + "md5": "980f7db19ead50658c2c30fa1ee08d9c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_null.c", + "type": "file", + "name": "rsa_null.c", + "base_name": "rsa_null", + "extension": ".c", + "size": 2959, + "date": "2017-05-25", + "sha1": "4dbffa07881bc0975e50905e6f776cc6014598e5", + "md5": "ac15e9ef0bd96858983cd791816ec7e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_oaep.c", + "type": "file", + "name": "rsa_oaep.c", + "base_name": "rsa_oaep", + "extension": ".c", + "size": 9135, + "date": "2017-05-25", + "sha1": "10ebb11e86af7491b54183e18e9af93329431d27", + "md5": "8e3059faf461700f1f6f09cbab846246", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_ossl.c", + "type": "file", + "name": "rsa_ossl.c", + "base_name": "rsa_ossl", + "extension": ".c", + "size": 23295, + "date": "2017-05-25", + "sha1": "9e3ccb7e97dbc5a37a30f1e335ac8473b4e4d27f", + "md5": "5ebbb06738b4892febd0c37d9f96368d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_pk1.c", + "type": "file", + "name": "rsa_pk1.c", + "base_name": "rsa_pk1", + "extension": ".c", + "size": 6689, + "date": "2017-05-25", + "sha1": "59b62f7d8501bede89ff5884672a09afc037c3c4", + "md5": "915dc8d16cc677bc95f1541f3a6b78c1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_pmeth.c", + "type": "file", + "name": "rsa_pmeth.c", + "base_name": "rsa_pmeth", + "extension": ".c", + "size": 20023, + "date": "2017-05-25", + "sha1": "4ea3934b8edb7e790afc1aa0a65787586da8562f", + "md5": "b72bae0b4a174f8cc2e6020921897308", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_prn.c", + "type": "file", + "name": "rsa_prn.c", + "base_name": "rsa_prn", + "extension": ".c", + "size": 1047, + "date": "2017-05-25", + "sha1": "0fcdc28bc660d20de1af03ff407c2a3487f7443a", + "md5": "6bbaaf5e3154694f2b892ff7de619c3f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_pss.c", + "type": "file", + "name": "rsa_pss.c", + "base_name": "rsa_pss", + "extension": ".c", + "size": 7013, + "date": "2017-05-25", + "sha1": "08db0b55cb1d1b5f3bf2c5e0b5a4a57fa54dea1e", + "md5": "009fc6c3589d5d2c3fd828d15543cb6f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_saos.c", + "type": "file", + "name": "rsa_saos.c", + "base_name": "rsa_saos", + "extension": ".c", + "size": 2749, + "date": "2017-05-25", + "sha1": "b15a755be2201fd940e6ec05a2d4a16dec423309", + "md5": "161c1af28c6bc7fa6f9d9798aa355979", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_sign.c", + "type": "file", + "name": "rsa_sign.c", + "base_name": "rsa_sign", + "extension": ".c", + "size": 7930, + "date": "2017-05-25", + "sha1": "19b0ee5d256f8b9f7a8e42fe48c1a92e6b8a18fe", + "md5": "b92c3ffcba476eb56ede1d106483d14e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_ssl.c", + "type": "file", + "name": "rsa_ssl.c", + "base_name": "rsa_ssl", + "extension": ".c", + "size": 2547, + "date": "2017-05-25", + "sha1": "271af45a99d3936b4c8a7f34b6c6c246798999d5", + "md5": "98b49fa3e8636db68fa37ce5d4daf179", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_x931.c", + "type": "file", + "name": "rsa_x931.c", + "base_name": "rsa_x931", + "extension": ".c", + "size": 2607, + "date": "2017-05-25", + "sha1": "3051e0d75afd1c69644d15f5162146119fbfb7af", + "md5": "632b2657ac38f265ebb3e7d4e633c69d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/rsa/rsa_x931g.c", + "type": "file", + "name": "rsa_x931g.c", + "base_name": "rsa_x931g", + "extension": ".c", + "size": 4720, + "date": "2017-05-25", + "sha1": "2c926970cb84c36a55def096c462ae461ef333cf", + "md5": "d1a536fb41f445c23f4f7ffc4bdd2188", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/seed", + "type": "directory", + "name": "seed", + "base_name": "seed", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 33499, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/seed/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 96, + "date": "2017-05-25", + "sha1": "e2beacf58ba2dd33737a64bd9aaaabddd611825e", + "md5": "2e0dfe778f5041e00e9b6dcdf8b7f43f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/seed/seed.c", + "type": "file", + "name": "seed.c", + "base_name": "seed", + "extension": ".c", + "size": 25912, + "date": "2017-05-25", + "sha1": "816ba880c54a7de17354234361c2452b68699ff5", + "md5": "8ed99bb36edb37571d5befc4dbdf6678", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 84.58, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 13, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-new_181.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2007" + ], + "holders": [], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/seed/seed_cbc.c", + "type": "file", + "name": "seed_cbc.c", + "base_name": "seed_cbc", + "extension": ".c", + "size": 836, + "date": "2017-05-25", + "sha1": "4f4e6bc17fcc9e78bd5c2e5dc7c8f82d93a54f32", + "md5": "83401c2e9a4e04ee03ec0e008976aa4e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/seed/seed_cfb.c", + "type": "file", + "name": "seed_cfb.c", + "base_name": "seed_cfb", + "extension": ".c", + "size": 748, + "date": "2017-05-25", + "sha1": "9f57adf9ce22edc7ef716c8d4bffc7e70d1f44a3", + "md5": "629e41749664b0f2657d5b3c2f473aaf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/seed/seed_ecb.c", + "type": "file", + "name": "seed_ecb.c", + "base_name": "seed_ecb", + "extension": ".c", + "size": 584, + "date": "2017-05-25", + "sha1": "0c28c8f40ddaf90153f82954a3dfad24ece1f078", + "md5": "4fe18e7d329d2b072ac03f2bd1d7d5c8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/seed/seed_locl.h", + "type": "file", + "name": "seed_locl.h", + "base_name": "seed_locl", + "extension": ".h", + "size": 4614, + "date": "2017-05-25", + "sha1": "f2600dbea893bf8514d71d59dc5e2c5e0c8c43fb", + "md5": "ece7258328b9b7407706a6b64409e4b5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 84.58, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 13, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-new_181.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2007" + ], + "holders": [], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/seed/seed_ofb.c", + "type": "file", + "name": "seed_ofb.c", + "base_name": "seed_ofb", + "extension": ".c", + "size": 709, + "date": "2017-05-25", + "sha1": "898fe5928c5b155acde45f4c0afd61789c61d735", + "md5": "58dba895273fee136ba78131d714c1c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha", + "type": "directory", + "name": "sha", + "base_name": "sha", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 37, + "dirs_count": 1, + "size_count": 658346, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 3043, + "date": "2017-05-25", + "sha1": "110b6d934d897064d8c206052c2a5b03ba44ba70", + "md5": "0643b9546832b4eb4316d9d13c3dfeb5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/sha1_one.c", + "type": "file", + "name": "sha1_one.c", + "base_name": "sha1_one", + "extension": ".c", + "size": 752, + "date": "2017-05-25", + "sha1": "c6c74664b6502d0c74e992007c5f9b6c5941d939", + "md5": "a1dfdd9a66a473d9865cc30ddac873cb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/sha1dgst.c", + "type": "file", + "name": "sha1dgst.c", + "base_name": "sha1dgst", + "extension": ".c", + "size": 500, + "date": "2017-05-25", + "sha1": "0dd5422267d893dc9347efbdcaf6764c208da654", + "md5": "4cbb371b1073ce4a5422e6a31a9842ed", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/sha256.c", + "type": "file", + "name": "sha256.c", + "base_name": "sha256", + "extension": ".c", + "size": 12436, + "date": "2017-05-25", + "sha1": "67a8f8e9d03f2b13fb91f444c864ccb3bf128261", + "md5": "6ca8a6c0afa8513c6a018c667e0e75d4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/sha512.c", + "type": "file", + "name": "sha512.c", + "base_name": "sha512", + "extension": ".c", + "size": 23182, + "date": "2017-05-25", + "sha1": "7aeffd7de529db7156065df82f455fc4539c6b9e", + "md5": "788b71184f1a470ffdda0c0ed2570f07", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/sha_locl.h", + "type": "file", + "name": "sha_locl.h", + "base_name": "sha_locl", + "extension": ".h", + "size": 15590, + "date": "2017-05-25", + "sha1": "20e9e6300d6e98c023352a20ed9c3e023a78cf86", + "md5": "662494692577f84f0400875700d90a9b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Wei Dai " + ], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 31, + "dirs_count": 0, + "size_count": 602843, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-586.pl", + "type": "file", + "name": "sha1-586.pl", + "base_name": "sha1-586", + "extension": ".pl", + "size": 44372, + "date": "2017-05-25", + "sha1": "07587966c4aa18aed8877f1ae6cf2016f107ffa1", + "md5": "856f95a862da6000b388ff85b7277c4e", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 87.8, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 87.8, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 87.8, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-alpha.pl", + "type": "file", + "name": "sha1-alpha.pl", + "base_name": "sha1-alpha", + "extension": ".pl", + "size": 6278, + "date": "2017-05-25", + "sha1": "781c551e7ea2fd121c1f10884be283f07b4a1900", + "md5": "e61f2f33cc33d94c0aabe618edb7186f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-armv4-large.pl", + "type": "file", + "name": "sha1-armv4-large.pl", + "base_name": "sha1-armv4-large", + "extension": ".pl", + "size": 19097, + "date": "2017-05-25", + "sha1": "1aec10c9758533ae83bf61c2fbfc2cc491d6fdf2", + "md5": "1d48b3932d25540f268dc925da8b654c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-armv8.pl", + "type": "file", + "name": "sha1-armv8.pl", + "base_name": "sha1-armv8", + "extension": ".pl", + "size": 8239, + "date": "2017-05-25", + "sha1": "dc88b81f57633455cc30e0a1499ff6120576405f", + "md5": "9515eb203a2f2dd33503ddf4145ce43b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-c64xplus.pl", + "type": "file", + "name": "sha1-c64xplus.pl", + "base_name": "sha1-c64xplus", + "extension": ".pl", + "size": 8197, + "date": "2017-05-25", + "sha1": "b51f98b271605b78538e5ffe579473a3d6f9745e", + "md5": "1711a8ee664f1e41b03022b7a8e97c9a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-ia64.pl", + "type": "file", + "name": "sha1-ia64.pl", + "base_name": "sha1-ia64", + "extension": ".pl", + "size": 9151, + "date": "2017-05-25", + "sha1": "6b5bd1778e347700dd382b70e537dfa8c13dd0c5", + "md5": "588787b13beafdc492b492a123fb8147", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-mb-x86_64.pl", + "type": "file", + "name": "sha1-mb-x86_64.pl", + "base_name": "sha1-mb-x86_64", + "extension": ".pl", + "size": 38096, + "date": "2017-05-25", + "sha1": "ebf80aad63c05d5eda6f1d4e187e82d1b4664d36", + "md5": "8d6d2f1e124aed95eb605b0d8bd99605", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-mips.pl", + "type": "file", + "name": "sha1-mips.pl", + "base_name": "sha1-mips", + "extension": ".pl", + "size": 10610, + "date": "2017-05-25", + "sha1": "b438ae7a124676ac5813af161bf56689d4d71fd9", + "md5": "c1f6d4efeaebe0cf3b217163e29db64d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-parisc.pl", + "type": "file", + "name": "sha1-parisc.pl", + "base_name": "sha1-parisc", + "extension": ".pl", + "size": 6566, + "date": "2017-05-25", + "sha1": "97000e21502b2bb06378f99c67a4d6178da7ca92", + "md5": "609158b243bfe30c12296bec8d7d4791", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-ppc.pl", + "type": "file", + "name": "sha1-ppc.pl", + "base_name": "sha1-ppc", + "extension": ".pl", + "size": 8180, + "date": "2017-05-25", + "sha1": "cc949cd36da353bd5dcd9e49ec2170f66e0de40c", + "md5": "dcd2b7087e418c3ad1d17bfac6c361c3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-s390x.pl", + "type": "file", + "name": "sha1-s390x.pl", + "base_name": "sha1-s390x", + "extension": ".pl", + "size": 5476, + "date": "2017-05-25", + "sha1": "c380a56d99521e3fdd815472edb95aef8037d7a3", + "md5": "2e6336e703538904c460d6638028ac3f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-sparcv9.pl", + "type": "file", + "name": "sha1-sparcv9.pl", + "base_name": "sha1-sparcv9", + "extension": ".pl", + "size": 9437, + "date": "2017-05-25", + "sha1": "059d8c0890b241252e2bc607e111cd1bb5ac11e4", + "md5": "045caaf1f6bf793c23bfb308688708e8", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller " + ], + "start_line": 16, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-sparcv9a.pl", + "type": "file", + "name": "sha1-sparcv9a.pl", + "base_name": "sha1-sparcv9a", + "extension": ".pl", + "size": 16523, + "date": "2017-05-25", + "sha1": "256017752bc3d83ba12dfd48e7fedc84dcdc482d", + "md5": "609b2bf09fd43c59cfcd76ebf2710b30", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-thumb.pl", + "type": "file", + "name": "sha1-thumb.pl", + "base_name": "sha1-thumb", + "extension": ".pl", + "size": 5169, + "date": "2017-05-25", + "sha1": "bad3c365efdd07c638eb06a26511bd2fbcfd8f1e", + "md5": "71dab512a8f3a092fb8b33e35f1ca878", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha1-x86_64.pl", + "type": "file", + "name": "sha1-x86_64.pl", + "base_name": "sha1-x86_64", + "extension": ".pl", + "size": 50967, + "date": "2017-05-25", + "sha1": "f5e154181042baa65b3ba4d23ddcc6a4b9910920", + "md5": "1ca5766a123258f2e04fde4fa4626709", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha256-586.pl", + "type": "file", + "name": "sha256-586.pl", + "base_name": "sha256-586", + "extension": ".pl", + "size": 36740, + "date": "2017-05-25", + "sha1": "ff7d6d54bc4a7faa116dbd7df21d474379b8c678", + "md5": "6f02bcbc5ca1019f6e970d08b290e923", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha256-armv4.pl", + "type": "file", + "name": "sha256-armv4.pl", + "base_name": "sha256-armv4", + "extension": ".pl", + "size": 18648, + "date": "2017-05-25", + "sha1": "82ee9c71b8510711ada1a4f1bbdd704b9f5a9f90", + "md5": "69210e67e34a2be666b4406dfb043245", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 98.78, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 98.78, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 98.78, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha256-c64xplus.pl", + "type": "file", + "name": "sha256-c64xplus.pl", + "base_name": "sha256-c64xplus", + "extension": ".pl", + "size": 8934, + "date": "2017-05-25", + "sha1": "390f08afaa1090913cd5e4e8e92b062d24a675b7", + "md5": "b29cca95457dbaf38424ab429b490046", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha256-mb-x86_64.pl", + "type": "file", + "name": "sha256-mb-x86_64.pl", + "base_name": "sha256-mb-x86_64", + "extension": ".pl", + "size": 38608, + "date": "2017-05-25", + "sha1": "c7bd00db1e2a4f36c32a3e0ade2dc658e8733936", + "md5": "176129ee9b1296ccf3a260a420d1c80d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-586.pl", + "type": "file", + "name": "sha512-586.pl", + "base_name": "sha512-586", + "extension": ".pl", + "size": 26631, + "date": "2017-05-25", + "sha1": "0a6eaf3ab01b060560bf59b165add28a1362093e", + "md5": "ae5b4f3f30179a51099bbd4b5c6be834", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-armv4.pl", + "type": "file", + "name": "sha512-armv4.pl", + "base_name": "sha512-armv4", + "extension": ".pl", + "size": 17639, + "date": "2017-05-25", + "sha1": "2bcaff014215e2a4c79f8888940f26de1763effc", + "md5": "f12a4e6d904f110792f0fde14112d67a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 98.78, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 98.78, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 98.78, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 16, + "end_line": 16, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-armv8.pl", + "type": "file", + "name": "sha512-armv8.pl", + "base_name": "sha512-armv8", + "extension": ".pl", + "size": 12326, + "date": "2017-05-25", + "sha1": "873e0e5627ec886643510e5783850e9f1420342f", + "md5": "b47e5489221777fa3d18b13a79120f6a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-c64xplus.pl", + "type": "file", + "name": "sha512-c64xplus.pl", + "base_name": "sha512-c64xplus", + "extension": ".pl", + "size": 13485, + "date": "2017-05-25", + "sha1": "dc8a51845789be6a35d423a95db7656270026275", + "md5": "b4ba233ffbd335dc8bcfebf77068647d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-ia64.pl", + "type": "file", + "name": "sha512-ia64.pl", + "base_name": "sha512-ia64", + "extension": ".pl", + "size": 21416, + "date": "2017-05-25", + "sha1": "e8169e13b36840948fe753843d77737012f730d1", + "md5": "270a5418d2c9eceebad9473f2f9a6df9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-mips.pl", + "type": "file", + "name": "sha512-mips.pl", + "base_name": "sha512-mips", + "extension": ".pl", + "size": 14503, + "date": "2017-05-25", + "sha1": "348001ba269863afd1465193a6021f8591d4e630", + "md5": "65c145677a7b1e59a428e3b9b94285fe", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-parisc.pl", + "type": "file", + "name": "sha512-parisc.pl", + "base_name": "sha512-parisc", + "extension": ".pl", + "size": 21565, + "date": "2017-05-25", + "sha1": "c0906dd3346a215ddf19f081eb4dfcd898e4cd01", + "md5": "1474d0bddc84df21a7c00b843451bc4c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-ppc.pl", + "type": "file", + "name": "sha512-ppc.pl", + "base_name": "sha512-ppc", + "extension": ".pl", + "size": 21247, + "date": "2017-05-25", + "sha1": "d585b45ac45dabd1caee1c13d8889d26b5b9ade6", + "md5": "715e2412be7954dde49cf6c4df0e51cf", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-s390x.pl", + "type": "file", + "name": "sha512-s390x.pl", + "base_name": "sha512-s390x", + "extension": ".pl", + "size": 9326, + "date": "2017-05-25", + "sha1": "7207b50992919396d3ced778748ce7ed38129ba6", + "md5": "0a18501a12175fea7189c2d86daaaf8e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-sparcv9.pl", + "type": "file", + "name": "sha512-sparcv9.pl", + "base_name": "sha512-sparcv9", + "extension": ".pl", + "size": 22006, + "date": "2017-05-25", + "sha1": "074ca2f7d097c8ae49e14b7b4b4875229f7de7f5", + "md5": "39a7ab1d1ffaa3c94e7d3a72de8d0684", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "David S. Miller " + ], + "start_line": 16, + "end_line": 16 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512-x86_64.pl", + "type": "file", + "name": "sha512-x86_64.pl", + "base_name": "sha512-x86_64", + "extension": ".pl", + "size": 61446, + "date": "2017-05-25", + "sha1": "15a4e2ccee7143a14381351092edb035f32ca391", + "md5": "6f9daa81809e02be61e0328d2e04f0da", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/sha/asm/sha512p8-ppc.pl", + "type": "file", + "name": "sha512p8-ppc.pl", + "base_name": "sha512p8-ppc", + "extension": ".pl", + "size": 11965, + "date": "2017-05-25", + "sha1": "c9e571f3749efd5931c16eda6a39fa45febdf608", + "md5": "159db1d6b08ac6674b873770a2762129", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/srp", + "type": "directory", + "name": "srp", + "base_name": "srp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 24847, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/srp/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 65, + "date": "2017-05-25", + "sha1": "994b9ec16ec11f96a1dfade472ecec8c5c837ab4", + "md5": "eaacdd82c253a8967707c431cca6227e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/srp/srp_lib.c", + "type": "file", + "name": "srp_lib.c", + "base_name": "srp_lib", + "extension": ".c", + "size": 7302, + "date": "2017-05-25", + "sha1": "624360fb75baf8f3498f6d70f7b3c66ed03bfa6c", + "md5": "b5c2f56afc2477d5a1768f97b314fe0f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/srp/srp_vfy.c", + "type": "file", + "name": "srp_vfy.c", + "base_name": "srp_vfy", + "extension": ".c", + "size": 17480, + "date": "2017-05-25", + "sha1": "3f1e3580c1ccba01c7a4a35a55f9300eb4f696de", + "md5": "376521856bed80247001d6963229dd3f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/stack", + "type": "directory", + "name": "stack", + "base_name": "stack", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 7288, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/stack/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 53, + "date": "2017-05-25", + "sha1": "36ea84fd13fa312edabe2be3d919a26eb974a667", + "md5": "1dd03752a46a22549e45df34323e9ab0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/stack/stack.c", + "type": "file", + "name": "stack.c", + "base_name": "stack", + "extension": ".c", + "size": 7235, + "date": "2017-05-25", + "sha1": "538228f5348e47132438b1be453b657bec2c003d", + "md5": "ca1bcbeb340dcd3309559e910e85ed73", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts", + "type": "directory", + "name": "ts", + "base_name": "ts", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 0, + "size_count": 108598, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 219, + "date": "2017-05-25", + "sha1": "65db30cdcb7b8201cab73232fc93a7144bd3a96b", + "md5": "9f5224e53b84573e2736e699bb901c80", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_asn1.c", + "type": "file", + "name": "ts_asn1.c", + "base_name": "ts_asn1", + "extension": ".c", + "size": 8287, + "date": "2017-05-25", + "sha1": "56b0a96c7f208fe2975f6dede86e768e79554e07", + "md5": "8e00d62548611954b32ee3c02e733e33", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_conf.c", + "type": "file", + "name": "ts_conf.c", + "base_name": "ts_conf", + "extension": ".c", + "size": 13220, + "date": "2017-05-25", + "sha1": "375fa917f477af65c43921adad78888599ca8e9c", + "md5": "4501ca835d45cb580baa7297ff55da9d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_err.c", + "type": "file", + "name": "ts_err.c", + "base_name": "ts_err", + "extension": ".c", + "size": 7289, + "date": "2017-05-25", + "sha1": "109f8b4abf56ec33fa3d1aaac16d96a4229e4c09", + "md5": "4b7bfc129f679f514c47eb90fdd39b88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_lcl.h", + "type": "file", + "name": "ts_lcl.h", + "base_name": "ts_lcl", + "extension": ".h", + "size": 6023, + "date": "2017-05-25", + "sha1": "994ce9fa24c28fff13d901d541d9f14e32ab8102", + "md5": "33fb2ebb00ff8cf2176daa8b4c883809", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_lib.c", + "type": "file", + "name": "ts_lib.c", + "base_name": "ts_lib", + "extension": ".c", + "size": 2485, + "date": "2017-05-25", + "sha1": "6f35a320b94d7c48e429b532e782252a657b17d6", + "md5": "b6e05114298789c8ea4e73c9f1cb14fc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_req_print.c", + "type": "file", + "name": "ts_req_print.c", + "base_name": "ts_req_print", + "extension": ".c", + "size": 1297, + "date": "2017-05-25", + "sha1": "41a03c7a1ed98e069a259450d2b245bef6ddf4c8", + "md5": "4e809c3420367ba3df25615ed91f7452", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_req_utils.c", + "type": "file", + "name": "ts_req_utils.c", + "base_name": "ts_req_utils", + "extension": ".c", + "size": 4176, + "date": "2017-05-25", + "sha1": "a26b0104173b5f887d25887b737a3f82b4de1069", + "md5": "07072d39a4a607e39046e1531b0d8ff5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_rsp_print.c", + "type": "file", + "name": "ts_rsp_print.c", + "base_name": "ts_rsp_print", + "extension": ".c", + "size": 5520, + "date": "2017-05-25", + "sha1": "18bea0b0c892ad5a4e9af6cddc67c519ab83718e", + "md5": "c4019e5ed8f794c581fa00d541962426", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_rsp_sign.c", + "type": "file", + "name": "ts_rsp_sign.c", + "base_name": "ts_rsp_sign", + "extension": ".c", + "size": 28100, + "date": "2017-05-25", + "sha1": "634d45bd6729f4f63138389d7f954cb83fda2bee", + "md5": "c4af3563c916deea007fe6946ce39271", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_rsp_utils.c", + "type": "file", + "name": "ts_rsp_utils.c", + "base_name": "ts_rsp_utils", + "extension": ".c", + "size": 8518, + "date": "2017-05-25", + "sha1": "2bf7e5b9a56dca7d43c04e59f6e32c744e3a102b", + "md5": "d5dea8cea772444c807d2488c2291757", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_rsp_verify.c", + "type": "file", + "name": "ts_rsp_verify.c", + "base_name": "ts_rsp_verify", + "extension": ".c", + "size": 20031, + "date": "2017-05-25", + "sha1": "4a3063830155d4da939fe92052d0b36b0dacb10c", + "md5": "3dc6c06695e5dee13b1681099d409d2c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ts/ts_verify_ctx.c", + "type": "file", + "name": "ts_verify_ctx.c", + "base_name": "ts_verify_ctx", + "extension": ".c", + "size": 3433, + "date": "2017-05-25", + "sha1": "ad3a3a4cf2dbada7c27891ef9d9cbb0bfb6d0db8", + "md5": "870010d5735cccd1fc5a8ee886f0e144", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/txt_db", + "type": "directory", + "name": "txt_db", + "base_name": "txt_db", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 8737, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/txt_db/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 54, + "date": "2017-05-25", + "sha1": "28a30bef28fbdd657c155fc6260e2144e24d2e02", + "md5": "78b2df4c5f346cbbd90ca658c89bce4f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/txt_db/txt_db.c", + "type": "file", + "name": "txt_db.c", + "base_name": "txt_db", + "extension": ".c", + "size": 8683, + "date": "2017-05-25", + "sha1": "b30f07811f577b50b332b46b0f9f850e0e044b90", + "md5": "f379dd1747705e4732574924c18ea93f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ui", + "type": "directory", + "name": "ui", + "base_name": "ui", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 49276, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ui/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 96, + "date": "2017-05-25", + "sha1": "9772986e76eda0a009993b0bf1e199ae5a0f4a0b", + "md5": "4b6f75334ce246f1a25e806dba41f905", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ui/ui_err.c", + "type": "file", + "name": "ui_err.c", + "base_name": "ui_err", + "extension": ".c", + "size": 2762, + "date": "2017-05-25", + "sha1": "23c21b89f0c68ef283e3242f85e3d72a30fe1cc0", + "md5": "eabbb63d215f05fdfbdc38e71bd90a68", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ui/ui_lib.c", + "type": "file", + "name": "ui_lib.c", + "base_name": "ui_lib", + "extension": ".c", + "size": 23328, + "date": "2017-05-25", + "sha1": "da8248798b0af9fcc8415fba11bc1523e4742deb", + "md5": "7977a9d6921ecd97ebe4f7e90e7cb995", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ui/ui_locl.h", + "type": "file", + "name": "ui_locl.h", + "base_name": "ui_locl", + "extension": ".h", + "size": 3396, + "date": "2017-05-25", + "sha1": "77aa872225cc1df0b731c7138d890b3a9b834ef7", + "md5": "fd8921fb4ad020efc9afe6d33ec54b28", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ui/ui_openssl.c", + "type": "file", + "name": "ui_openssl.c", + "base_name": "ui_openssl", + "extension": ".c", + "size": 18426, + "date": "2017-05-25", + "sha1": "7d657e476c15664878195c13e40c423579dbfd8c", + "md5": "f7a35c37376c4a830177b4de8e7716fd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/ui/ui_util.c", + "type": "file", + "name": "ui_util.c", + "base_name": "ui_util", + "extension": ".c", + "size": 1268, + "date": "2017-05-25", + "sha1": "004cfe50c9882dec795da0555b3f39b26b0f7dd7", + "md5": "84c69b247e550e811a24a8a0fcaa3909", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/whrlpool", + "type": "directory", + "name": "whrlpool", + "base_name": "whrlpool", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 85866, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/whrlpool/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 266, + "date": "2017-05-25", + "sha1": "9c482f5c5df70d32aef8804bfa571b3178c79ded", + "md5": "d8a771520a8c415fba624c8714ce3d72", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/whrlpool/wp_block.c", + "type": "file", + "name": "wp_block.c", + "base_name": "wp_block", + "extension": ".c", + "size": 35005, + "date": "2017-05-25", + "sha1": "91cc7d1de5be50f795ac427322e542d1505444cb", + "md5": "2086bf50884ff636c2706786f0f1a3c5", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain-disclaimer", + "score": 92.56, + "short_name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 33, + "end_line": 43, + "matched_rule": { + "identifier": "public-domain-disclaimer.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/whrlpool/wp_dgst.c", + "type": "file", + "name": "wp_dgst.c", + "base_name": "wp_dgst", + "extension": ".c", + "size": 8922, + "date": "2017-05-25", + "sha1": "062dcf27aa78ce9502b5359beb4692ffc7fb12ea", + "md5": "7a52c53cb27e18971112328dbbfcb1ba", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "public-domain-disclaimer", + "score": 92.56, + "short_name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 33, + "end_line": 43, + "matched_rule": { + "identifier": "public-domain-disclaimer.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/whrlpool/wp_locl.h", + "type": "file", + "name": "wp_locl.h", + "base_name": "wp_locl", + "extension": ".h", + "size": 426, + "date": "2017-05-25", + "sha1": "98f1ffec0d81265237b467e8ef98d8b34b0132c5", + "md5": "14cbdc3132e4d4f37d24f80737acfbed", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/whrlpool/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 41247, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/whrlpool/asm/wp-mmx.pl", + "type": "file", + "name": "wp-mmx.pl", + "base_name": "wp-mmx", + "extension": ".pl", + "size": 20246, + "date": "2017-05-25", + "sha1": "47a1024ccc56d335ac453ba61fedaee13a62c030", + "md5": "135c3b289c132b8c557ff81210da7153", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/whrlpool/asm/wp-x86_64.pl", + "type": "file", + "name": "wp-x86_64.pl", + "base_name": "wp-x86_64", + "extension": ".pl", + "size": 21001, + "date": "2017-05-25", + "sha1": "8bd709ffbd81dc96e39deea1412c30705ca18829", + "md5": "55c78ebfac64c541a391c3e7ee78ee51", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 53.66, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 53.66, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 53.66, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 13, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 13, + "end_line": 13, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509", + "type": "directory", + "name": "x509", + "base_name": "x509", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 37, + "dirs_count": 0, + "size_count": 353431, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 481, + "date": "2017-05-25", + "sha1": "56e17db7b0f69353ac1fb2349d70be1cda13a69b", + "md5": "f7bce1dd1c2062e2629bbebc7c65e268", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/by_dir.c", + "type": "file", + "name": "by_dir.c", + "base_name": "by_dir", + "extension": ".c", + "size": 11283, + "date": "2017-05-25", + "sha1": "4cfd5277eab2ba2ef8602b9cfda9122654eb750e", + "md5": "7c805466e06be76d2c470e3031507043", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/by_file.c", + "type": "file", + "name": "by_file.c", + "base_name": "by_file", + "extension": ".c", + "size": 6409, + "date": "2017-05-25", + "sha1": "e18a863a58726d9fef92aab131439262c35c3fd9", + "md5": "c087fdddcdfb69a68d076ceedc59dbbf", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/t_crl.c", + "type": "file", + "name": "t_crl.c", + "base_name": "t_crl", + "extension": ".c", + "size": 2741, + "date": "2017-05-25", + "sha1": "1e47c2e69613b0af1ec6bd58c54d01b01c5dae3e", + "md5": "91e488f28f39996641caee92609575fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/t_req.c", + "type": "file", + "name": "t_req.c", + "base_name": "t_req", + "extension": ".c", + "size": 6505, + "date": "2017-05-25", + "sha1": "8e454b1585db0a9c7d81d635e5dff4de47deacd2", + "md5": "0b965b65061cf92b830d66115cd68cc7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/t_x509.c", + "type": "file", + "name": "t_x509.c", + "base_name": "t_x509", + "extension": ".c", + "size": 11165, + "date": "2017-05-25", + "sha1": "8d9b39ad1877dadb9e862355c740e2e796769b12", + "md5": "7d5d7b54e4c1a3eb4bc6f5bcbc57fcc2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_att.c", + "type": "file", + "name": "x509_att.c", + "base_name": "x509_att", + "extension": ".c", + "size": 9696, + "date": "2017-05-25", + "sha1": "3a26a5c2397eed59b78d9d2f2723275c50adfcf9", + "md5": "7c7862b9b02d758292c9b94d3d1077ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_cmp.c", + "type": "file", + "name": "x509_cmp.c", + "base_name": "x509_cmp", + "extension": ".c", + "size": 12680, + "date": "2017-05-25", + "sha1": "96c0628f14c74df7f9f941d11a61a00cd1f0e9f3", + "md5": "693ff6c2126ee27e992fe233a9883d9e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_d2.c", + "type": "file", + "name": "x509_d2.c", + "base_name": "x509_d2", + "extension": ".c", + "size": 1640, + "date": "2017-05-25", + "sha1": "52001e002e84e72c0ec3eb563498b29db84b2d5d", + "md5": "04718ff72fbb8668a5a0ce7acde50dd7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_def.c", + "type": "file", + "name": "x509_def.c", + "base_name": "x509_def", + "extension": ".c", + "size": 928, + "date": "2017-05-25", + "sha1": "8d7e1d2bfa50135e68e67aece73133264bf94a4f", + "md5": "c9cc9839636eec495d2ceb8f35fe37b5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_err.c", + "type": "file", + "name": "x509_err.c", + "base_name": "x509_err", + "extension": ".c", + "size": 6795, + "date": "2017-05-25", + "sha1": "fbca81a56bf292a29b194120dde9b6d8a05b1acb", + "md5": "e3e04e91ac4b72e9eec5680279ad0ffe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_ext.c", + "type": "file", + "name": "x509_ext.c", + "base_name": "x509_ext", + "extension": ".c", + "size": 4516, + "date": "2017-05-25", + "sha1": "1bf18c8029cbc299c0f8fcd179c8ec3439c5695b", + "md5": "1db5fa3b78ac01960e95eccdb0fc325f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_lcl.h", + "type": "file", + "name": "x509_lcl.h", + "base_name": "x509_lcl", + "extension": ".h", + "size": 5766, + "date": "2017-05-25", + "sha1": "4862cc021cacfe0583c390905d5c01f681b39b7a", + "md5": "5a6799d110a155e67cf55cf8851e58c5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_lu.c", + "type": "file", + "name": "x509_lu.c", + "base_name": "x509_lu", + "extension": ".c", + "size": 22128, + "date": "2017-05-25", + "sha1": "8f60737c5c3e99934c374506dc46e2dafb912e5c", + "md5": "75928b40b4f90f7e00b5fea3a2665796", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_obj.c", + "type": "file", + "name": "x509_obj.c", + "base_name": "x509_obj", + "extension": ".c", + "size": 5108, + "date": "2017-05-25", + "sha1": "7ab7cd448bb007cb168ee1b881daa0b21189ae98", + "md5": "1157a069942687d0172f0e2596531ee3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_r2x.c", + "type": "file", + "name": "x509_r2x.c", + "base_name": "x509_r2x", + "extension": ".c", + "size": 1832, + "date": "2017-05-25", + "sha1": "534344f619d25eecaea64d5e8cbe3f8b19e63cb3", + "md5": "107eea689de620581b4b68468ce87449", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_req.c", + "type": "file", + "name": "x509_req.c", + "base_name": "x509_req", + "extension": ".c", + "size": 7746, + "date": "2017-05-25", + "sha1": "59450d332a12b94401701128331e526380875cd4", + "md5": "aa56023a13915a4055ab5c7e22cc2aa4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_set.c", + "type": "file", + "name": "x509_set.c", + "base_name": "x509_set", + "extension": ".c", + "size": 3569, + "date": "2017-05-25", + "sha1": "65acaa4ac0d6ace53890183b138edaa6d63d6a4c", + "md5": "6f4e3a36d2997dcc779bf4ffafd3c117", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_trs.c", + "type": "file", + "name": "x509_trs.c", + "base_name": "x509_trs", + "extension": ".c", + "size": 8936, + "date": "2017-05-25", + "sha1": "99eb1cbe38f59f5176eafb7677e5ff3186c36329", + "md5": "9a2453df94fd9cedfc1d79d3b0158ffc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_txt.c", + "type": "file", + "name": "x509_txt.c", + "base_name": "x509_txt", + "extension": ".c", + "size": 7875, + "date": "2017-05-25", + "sha1": "05f7fcbc173052ecd576b9664b7767811a53a06e", + "md5": "da24a09e5f85759af0fa76e3213c965e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_v3.c", + "type": "file", + "name": "x509_v3.c", + "base_name": "x509_v3", + "extension": ".c", + "size": 5862, + "date": "2017-05-25", + "sha1": "07e636e374c3dcf1c614766aba2d62d661e5f6b9", + "md5": "cd912d5b316e99ec26b99fb6329ab1e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_vfy.c", + "type": "file", + "name": "x509_vfy.c", + "base_name": "x509_vfy", + "extension": ".c", + "size": 103705, + "date": "2017-05-25", + "sha1": "e31b1d573ce0bbd54129510a6f7db94d9b1410ed", + "md5": "089e942458430844cd054326a877520f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509_vpm.c", + "type": "file", + "name": "x509_vpm.c", + "base_name": "x509_vpm", + "extension": ".c", + "size": 17651, + "date": "2017-05-25", + "sha1": "89c52430af639af21ff4148ed825ef924c0a4603", + "md5": "e98b6519dc88db09d9d074163b3dbdc9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509cset.c", + "type": "file", + "name": "x509cset.c", + "base_name": "x509cset", + "extension": ".c", + "size": 4125, + "date": "2017-05-25", + "sha1": "22d66f715ebe9d8cf264fc4bb33e036f2b5d2bf7", + "md5": "2f25161b0dae6b8d8dfae735269a4903", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509name.c", + "type": "file", + "name": "x509name.c", + "base_name": "x509name", + "extension": ".c", + "size": 10163, + "date": "2017-05-25", + "sha1": "016cd81ac6a197f5afad54d7a5f96ef4ed64067b", + "md5": "2c58adc47d79706e01fde56461c3bf75", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509rset.c", + "type": "file", + "name": "x509rset.c", + "base_name": "x509rset", + "extension": ".c", + "size": 1094, + "date": "2017-05-25", + "sha1": "7e317a2fdd2b290968227535d2b5832441e2b9a9", + "md5": "355dcf2be206af93a316f64aa466be17", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509spki.c", + "type": "file", + "name": "x509spki.c", + "base_name": "x509spki", + "extension": ".c", + "size": 2228, + "date": "2017-05-25", + "sha1": "e57eb629ce6ab0910eb9887ce98e4d0b3d1c094d", + "md5": "ed3462c29b99b2554d83fcd647c8fa02", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x509type.c", + "type": "file", + "name": "x509type.c", + "base_name": "x509type", + "extension": ".c", + "size": 1839, + "date": "2017-05-25", + "sha1": "e563dd177111158407c7a947e208a0f802579a49", + "md5": "0dd851f462603b8f33cd42634104e15a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_all.c", + "type": "file", + "name": "x_all.c", + "base_name": "x_all", + "extension": ".c", + "size": 14026, + "date": "2017-05-25", + "sha1": "cdc8c8888e58cf0eb4db17a3c810b5a8e9764261", + "md5": "48b1ccf02571abe92eba41aa86b1b464", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_attrib.c", + "type": "file", + "name": "x_attrib.c", + "base_name": "x_attrib", + "extension": ".c", + "size": 1455, + "date": "2017-05-25", + "sha1": "cd8baf8f67bb5feff7b195316a0482850abe5242", + "md5": "a707b25184d5b9af5fa6b377cdb63b39", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_crl.c", + "type": "file", + "name": "x_crl.c", + "base_name": "x_crl", + "extension": ".c", + "size": 14043, + "date": "2017-05-25", + "sha1": "e430ef411cded355543bc796f39ce0d45ff6ef3d", + "md5": "8eedca29b725278fe9d9984b93d3c465", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_exten.c", + "type": "file", + "name": "x_exten.c", + "base_name": "x_exten", + "extension": ".c", + "size": 1040, + "date": "2017-05-25", + "sha1": "3762144ca62e4785bdf2ed1bd40d030a12958402", + "md5": "8ef266fb1b3a951b4f14367aa4b94de9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_name.c", + "type": "file", + "name": "x_name.c", + "base_name": "x_name", + "extension": ".c", + "size": 16021, + "date": "2017-05-25", + "sha1": "a4c5d1bbd4d36b7e544e6abe1866a09da6122d01", + "md5": "b278ef8ddd22b14661c2b44f4f85d804", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_pubkey.c", + "type": "file", + "name": "x_pubkey.c", + "base_name": "x_pubkey", + "extension": ".c", + "size": 9280, + "date": "2017-05-25", + "sha1": "89b0814ec9b8d54af92f8b25b256d75ce6a818e4", + "md5": "28206502f8c4c5c814d91416a18f9d71", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_req.c", + "type": "file", + "name": "x_req.c", + "base_name": "x_req", + "extension": ".c", + "size": 2346, + "date": "2017-05-25", + "sha1": "faff9ac566f683239558dbce1bda28375fc25515", + "md5": "b2c31998da0d1423828aa2a94c841d04", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_x509.c", + "type": "file", + "name": "x_x509.c", + "base_name": "x_x509", + "extension": ".c", + "size": 6375, + "date": "2017-05-25", + "sha1": "4a976100654f60e4f2c17060020b7b4321f7af70", + "md5": "e10e4f860d025c81b86978f20488f894", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509/x_x509a.c", + "type": "file", + "name": "x_x509a.c", + "base_name": "x_x509a", + "extension": ".c", + "size": 4379, + "date": "2017-05-25", + "sha1": "afbe2b5909ce312b3560150415391fa390077273", + "md5": "80d44cfdcf251891ae55c8a091a59238", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3", + "type": "directory", + "name": "x509v3", + "base_name": "x509v3", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 42, + "dirs_count": 0, + "size_count": 349973, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 433, + "date": "2017-05-25", + "sha1": "c72e1c902e669e5b30110b81460067b19ec15945", + "md5": "ab3ca1c300447642dfb88b4dc464f223", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/ext_dat.h", + "type": "file", + "name": "ext_dat.h", + "base_name": "ext_dat", + "extension": ".h", + "size": 1291, + "date": "2017-05-25", + "sha1": "206b82396547de00ca29f5d961eb417f6766c692", + "md5": "da821b39fb8a69d9e3364ad9059c68c1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/pcy_cache.c", + "type": "file", + "name": "pcy_cache.c", + "base_name": "pcy_cache", + "extension": ".c", + "size": 6091, + "date": "2017-05-25", + "sha1": "c2ea63fd7a80956ce16288cfebe16720a4daa3b0", + "md5": "27a84086cd689ab1c13d6a5a5dc576be", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/pcy_data.c", + "type": "file", + "name": "pcy_data.c", + "base_name": "pcy_data", + "extension": ".c", + "size": 2123, + "date": "2017-05-25", + "sha1": "ba84e30cea3ad83c42ebf07111f33b0f9fe30fb9", + "md5": "1239b1ab26e829e022210feee112424e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/pcy_int.h", + "type": "file", + "name": "pcy_int.h", + "base_name": "pcy_int", + "extension": ".h", + "size": 5083, + "date": "2017-05-25", + "sha1": "ccf21dad344c3b9216964b79a899a6ceacdb06dc", + "md5": "2204a857c30de4234a8a6b4875c958ad", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/pcy_lib.c", + "type": "file", + "name": "pcy_lib.c", + "base_name": "pcy_lib", + "extension": ".c", + "size": 2775, + "date": "2017-05-25", + "sha1": "71259470ac4b84914f135e4979de54fbc77d7119", + "md5": "3d7098066fe6cf2f595d4f071be025ed", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/pcy_map.c", + "type": "file", + "name": "pcy_map.c", + "base_name": "pcy_map", + "extension": ".c", + "size": 2648, + "date": "2017-05-25", + "sha1": "cf33b014c44779e03c24b2bbce6d279c947def82", + "md5": "4107cc6c3ee3e5de4b214933f49f1c4b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/pcy_node.c", + "type": "file", + "name": "pcy_node.c", + "base_name": "pcy_node", + "extension": ".c", + "size": 3753, + "date": "2017-05-25", + "sha1": "2e47175c7db383f23c4530bc2528f749657175d3", + "md5": "bcd8d60a4ad1d7f901b281e406230852", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/pcy_tree.c", + "type": "file", + "name": "pcy_tree.c", + "base_name": "pcy_tree", + "extension": ".c", + "size": 22212, + "date": "2017-05-25", + "sha1": "026299e8ea128a5342de19a1c9bceefb0e992ccd", + "md5": "b73b7770ad45aa7c41a06b30a858698d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/tabtest.c", + "type": "file", + "name": "tabtest.c", + "base_name": "tabtest", + "extension": ".c", + "size": 1192, + "date": "2017-05-25", + "sha1": "072d2248c238d8e08ab3e04b6494611be574b195", + "md5": "c57f5c736d3e3cb91e212fc5c3687bb4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_addr.c", + "type": "file", + "name": "v3_addr.c", + "base_name": "v3_addr", + "extension": ".c", + "size": 41172, + "date": "2017-05-25", + "sha1": "5114afad736f736e2f4553d33a3410d9195ff688", + "md5": "ed0592e532689a1599f10cd6ebe654d6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_akey.c", + "type": "file", + "name": "v3_akey.c", + "base_name": "v3_akey", + "extension": ".c", + "size": 5278, + "date": "2017-05-25", + "sha1": "a33bbdb19f443c06cd50e29cef21f11b1978fab4", + "md5": "253d17ab61073b2408848bf24788d305", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_akeya.c", + "type": "file", + "name": "v3_akeya.c", + "base_name": "v3_akeya", + "extension": ".c", + "size": 814, + "date": "2017-05-25", + "sha1": "9da32b240af3c0ef79ce416d1e403f65dc2e9def", + "md5": "853e701178437961a31ef8a20835ccaa", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_alt.c", + "type": "file", + "name": "v3_alt.c", + "base_name": "v3_alt", + "extension": ".c", + "size": 16479, + "date": "2017-05-25", + "sha1": "9d48eb7d7b9d438e0be00db9efbb03d9f646df8e", + "md5": "a83e4dbf4703437651ffd4ef3bc9bff8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_asid.c", + "type": "file", + "name": "v3_asid.c", + "base_name": "v3_asid", + "extension": ".c", + "size": 26076, + "date": "2017-05-25", + "sha1": "ade0161f2cbd47d34c6183e8e435cbf6b44cb09c", + "md5": "ff075cfe1647a834e6ac8fe02844e3ae", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_bcons.c", + "type": "file", + "name": "v3_bcons.c", + "base_name": "v3_bcons", + "extension": ".c", + "size": 2994, + "date": "2017-05-25", + "sha1": "863a89807f2b41f449b6ed1df6008fe1b8915530", + "md5": "7d53369d4ab316346ae4ff8f58e45e60", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_bitst.c", + "type": "file", + "name": "v3_bitst.c", + "base_name": "v3_bitst", + "extension": ".c", + "size": 3171, + "date": "2017-05-25", + "sha1": "11a941d94e2a61399e036a035de4b853527b2b36", + "md5": "b49f6e2c1cfc7d57a2399af05a8cf499", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_conf.c", + "type": "file", + "name": "v3_conf.c", + "base_name": "v3_conf", + "extension": ".c", + "size": 15250, + "date": "2017-05-25", + "sha1": "1394d09200c3fd513bff6ec2d1502278d2f1fa26", + "md5": "0aeea84ae6c47a03969fb3b377077aee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_cpols.c", + "type": "file", + "name": "v3_cpols.c", + "base_name": "v3_cpols", + "extension": ".c", + "size": 14879, + "date": "2017-05-25", + "sha1": "8592e9b6e2d35c236eeb256cfb584bb1b9ccf02e", + "md5": "6581cb49b22c7a4903169cfdb11ffdf2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_crld.c", + "type": "file", + "name": "v3_crld.c", + "base_name": "v3_crld", + "extension": ".c", + "size": 15522, + "date": "2017-05-25", + "sha1": "3706985b76ae97b92658dbc460d71ab72233ff82", + "md5": "bec413f8ec4af7ab69ca8a199d1a3340", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_enum.c", + "type": "file", + "name": "v3_enum.c", + "base_name": "v3_enum", + "extension": ".c", + "size": 1830, + "date": "2017-05-25", + "sha1": "96d8da079212f917c0df1ef848dd1fd1e626f3db", + "md5": "fa327096d9eb08ca3c85a0b1840d41c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_extku.c", + "type": "file", + "name": "v3_extku.c", + "base_name": "v3_extku", + "extension": ".c", + "size": 3195, + "date": "2017-05-25", + "sha1": "34141a91c26d701d1e53c191359b1ba0fa8277e7", + "md5": "5167fd89fd10884c5a22e35aff34c4d8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_genn.c", + "type": "file", + "name": "v3_genn.c", + "base_name": "v3_genn", + "extension": ".c", + "size": 5186, + "date": "2017-05-25", + "sha1": "57fbb4be97eaff55a08e997e1f4ea7c3619a3571", + "md5": "2daba7fb80b1e7fe56d05ea6cca77fae", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_ia5.c", + "type": "file", + "name": "v3_ia5.c", + "base_name": "v3_ia5", + "extension": ".c", + "size": 1980, + "date": "2017-05-25", + "sha1": "9037c6e7a7a8783d6a2ff021b2a3775901561e33", + "md5": "42107d57b62e7f66b2a486b835cd1efb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_info.c", + "type": "file", + "name": "v3_info.c", + "base_name": "v3_info", + "extension": ".c", + "size": 5646, + "date": "2017-05-25", + "sha1": "7485904aeff16913757646cb4855efb169835009", + "md5": "f2af09c97ae2ac518cb229b034b12f95", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_int.c", + "type": "file", + "name": "v3_int.c", + "base_name": "v3_int", + "extension": ".c", + "size": 1165, + "date": "2017-05-25", + "sha1": "316f6b5fc7221d27542db151d50261721464cce8", + "md5": "af2c7c5ef1a410016cfb4b4f4809cd76", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_lib.c", + "type": "file", + "name": "v3_lib.c", + "base_name": "v3_lib", + "extension": ".c", + "size": 9510, + "date": "2017-05-25", + "sha1": "5b519f76c7274d16b38efacd729e5b23d88286d7", + "md5": "d7861db483f8b05be16b371c0a9b146b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_ncons.c", + "type": "file", + "name": "v3_ncons.c", + "base_name": "v3_ncons", + "extension": ".c", + "size": 15713, + "date": "2017-05-25", + "sha1": "a27b44b124bc2379acfcda26a6892dd8d17168cf", + "md5": "1ab735bc9da24aecc1c7c4a4ad324fb8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_pci.c", + "type": "file", + "name": "v3_pci.c", + "base_name": "v3_pci", + "extension": ".c", + "size": 11632, + "date": "2017-05-25", + "sha1": "0bf8314a100054d518ba0f5bea9a9cbecabd0506", + "md5": "200a1fa5e00bd7edadecfafc7942ee46", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 14, + "end_line": 39, + "matched_rule": { + "identifier": "bsd-new_151.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)." + ], + "holders": [ + "Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)." + ], + "authors": [], + "start_line": 10, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_pcia.c", + "type": "file", + "name": "v3_pcia.c", + "base_name": "v3_pcia", + "extension": ".c", + "size": 2591, + "date": "2017-05-25", + "sha1": "f6fe1f3545653dbca55bcb4534a25bb1e8926d1d", + "md5": "bf02f7d6170a9e41573aab04ecaef3b0", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 14, + "end_line": 39, + "matched_rule": { + "identifier": "bsd-new_151.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)." + ], + "holders": [ + "Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)." + ], + "authors": [], + "start_line": 10, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_pcons.c", + "type": "file", + "name": "v3_pcons.c", + "base_name": "v3_pcons", + "extension": ".c", + "size": 3280, + "date": "2017-05-25", + "sha1": "80b4e30427523be9c2c938fe586e21b08f544baf", + "md5": "ec3459c8a158fe7e420c31ee1b098b3b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_pku.c", + "type": "file", + "name": "v3_pku.c", + "base_name": "v3_pku", + "extension": ".c", + "size": 2023, + "date": "2017-05-25", + "sha1": "fa7f54f806857649961abb61a52631e42756e3c0", + "md5": "c20ddd2e9278fe807bdd5a96abca97a1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_pmaps.c", + "type": "file", + "name": "v3_pmaps.c", + "base_name": "v3_pmaps", + "extension": ".c", + "size": 3768, + "date": "2017-05-25", + "sha1": "83ae0ce508a18f298898143cfd66687187dee7f8", + "md5": "9a0ebadfd59f677d8810d6ace0ef0bf1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_prn.c", + "type": "file", + "name": "v3_prn.c", + "base_name": "v3_prn", + "extension": ".c", + "size": 6043, + "date": "2017-05-25", + "sha1": "8938f2030f8a36717524f8f4e0a14b78e6f9662f", + "md5": "16ec781df201e9b2b237bda60d37dea3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_purp.c", + "type": "file", + "name": "v3_purp.c", + "base_name": "v3_purp", + "extension": ".c", + "size": 26074, + "date": "2017-05-25", + "sha1": "160381cbfb2e021a8281a3c14b4c0ff31d494d44", + "md5": "4d034b642ce9c9b263e4842d876b514c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_skey.c", + "type": "file", + "name": "v3_skey.c", + "base_name": "v3_skey", + "extension": ".c", + "size": 2888, + "date": "2017-05-25", + "sha1": "16d8a8c7d0276796746392f2e485b4afae976c93", + "md5": "08a22d1f3800dfac584ec20747211ec3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_sxnet.c", + "type": "file", + "name": "v3_sxnet.c", + "base_name": "v3_sxnet", + "extension": ".c", + "size": 6129, + "date": "2017-05-25", + "sha1": "edd32a411e5198046e9a8f23f5c6b07758e1181c", + "md5": "7fe0dde80c77e830c8bdc6bf1ca3a725", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_tlsf.c", + "type": "file", + "name": "v3_tlsf.c", + "base_name": "v3_tlsf", + "extension": ".c", + "size": 4359, + "date": "2017-05-25", + "sha1": "f52de338d056a1de2dc3486560d687c316b6319f", + "md5": "bb3e3a7f929919b4c53e42b7d6ebbf6c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3_utl.c", + "type": "file", + "name": "v3_utl.c", + "base_name": "v3_utl", + "extension": ".c", + "size": 34413, + "date": "2017-05-25", + "sha1": "79e4eaeccd1996960a6486d89d9a21d3d11ef0b6", + "md5": "863ea4337837006a933c28e4b7301843", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3conf.c", + "type": "file", + "name": "v3conf.c", + "base_name": "v3conf", + "extension": ".c", + "size": 2159, + "date": "2017-05-25", + "sha1": "eea6a6e4b5104e8774fc24887b17f4a59b59e98d", + "md5": "15ab5bffa163f9dd02a245ba9216be07", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3err.c", + "type": "file", + "name": "v3err.c", + "base_name": "v3err", + "extension": ".c", + "size": 9748, + "date": "2017-05-25", + "sha1": "30e11402e53e6217d5b316aa8894fd52ddc1993b", + "md5": "28511936d0a7edd13efc8a61b328cf59", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/crypto/x509v3/v3prin.c", + "type": "file", + "name": "v3prin.c", + "base_name": "v3prin", + "extension": ".c", + "size": 1405, + "date": "2017-05-25", + "sha1": "fdf275785a785e93c79fc6d2ddede403f49c16d4", + "md5": "72f5b3b7c76acf6e6efa9725b6ca8f74", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos", + "type": "directory", + "name": "demos", + "base_name": "demos", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 66, + "dirs_count": 7, + "size_count": 108021, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 267, + "date": "2017-05-25", + "sha1": "a75a2c08e342e16c50995123d093bb71370778d9", + "md5": "5222fca0729b5f7dc58d16a470b1122c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "ActionScript 3", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio", + "type": "directory", + "name": "bio", + "base_name": "bio", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 19, + "dirs_count": 0, + "size_count": 35385, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/accept.cnf", + "type": "file", + "name": "accept.cnf", + "base_name": "accept", + "extension": ".cnf", + "size": 401, + "date": "2017-05-25", + "sha1": "92d5e8da710fbcf3b78aa3558842b7e14b7729ec", + "md5": "c2c38f08614fdb3e6a5cb6244e43c5a1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/client-arg.c", + "type": "file", + "name": "client-arg.c", + "base_name": "client-arg", + "extension": ".c", + "size": 3241, + "date": "2017-05-25", + "sha1": "8556d59f24235e15321bb0aa30185ec541d4aa18", + "md5": "37ee8bac4307d6fca8aac04846ed9bf3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/client-conf.c", + "type": "file", + "name": "client-conf.c", + "base_name": "client-conf", + "extension": ".c", + "size": 3462, + "date": "2017-05-25", + "sha1": "a6ed22d569abeeebcd1b80b84cd4b45ae802f2e0", + "md5": "4c1379ad5055d5c435c5921eaa6c6a58", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/cmod.cnf", + "type": "file", + "name": "cmod.cnf", + "base_name": "cmod", + "extension": ".cnf", + "size": 537, + "date": "2017-05-25", + "sha1": "6aec6ba73f56b642491676c204f315af0c47cd62", + "md5": "214919fafdf2f7aef287211bfdd8c535", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/connect.cnf", + "type": "file", + "name": "connect.cnf", + "base_name": "connect", + "extension": ".cnf", + "size": 285, + "date": "2017-05-25", + "sha1": "03fcca707af34de2234c87a8cf16c0c81f9026cf", + "md5": "e29c6ef1cc3aaa3adb38c94d402a3d75", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/descrip.mms", + "type": "file", + "name": "descrip.mms", + "base_name": "descrip", + "extension": ".mms", + "size": 1313, + "date": "2017-05-25", + "sha1": "cf1454870a5911cc7f3e3de28a7dc5fa75c838a5", + "md5": "62650249474b2e0ec15fb6ddbc786e82", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/intca.pem", + "type": "file", + "name": "intca.pem", + "base_name": "intca", + "extension": ".pem", + "size": 1359, + "date": "2017-05-25", + "sha1": "19b38c858cda4752028a0c29b1be9f5ea7d39fd3", + "md5": "17ee3a1c13e9fde466ac52d95f24d5d5", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/Makefile", + "type": "file", + "name": "Makefile", + "base_name": "Makefile", + "extension": "", + "size": 975, + "date": "2017-05-25", + "sha1": "7169d026c9411b4cde819ad304a3683814299a0b", + "md5": "346349423c290a107c1203597db92481", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 255, + "date": "2017-05-25", + "sha1": "e99423571acd14bded922c241cc64d1276eca28f", + "md5": "122e33f4f1108ca3b53fd228a7696a9e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/root.pem", + "type": "file", + "name": "root.pem", + "base_name": "root", + "extension": ".pem", + "size": 1346, + "date": "2017-05-25", + "sha1": "dbc4396d4631b81d1be9ddd286ee8b00b45fafb7", + "md5": "3f98151b06f2d4cd99f37bc3cc7b742e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/saccept.c", + "type": "file", + "name": "saccept.c", + "base_name": "saccept", + "extension": ".c", + "size": 2935, + "date": "2017-05-25", + "sha1": "af45d08db0cfa578e4ad68f356e049a026809412", + "md5": "3ae2c01bb73841bd788c301afd4bba7e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/sconnect.c", + "type": "file", + "name": "sconnect.c", + "base_name": "sconnect", + "extension": ".c", + "size": 3131, + "date": "2017-05-25", + "sha1": "83ce066b1fe23fada74f832a89985b6fb1421fe5", + "md5": "b8b9e294557bfa9d32c76cf4e9aeec8a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/server-arg.c", + "type": "file", + "name": "server-arg.c", + "base_name": "server-arg", + "extension": ".c", + "size": 4099, + "date": "2017-05-25", + "sha1": "2b34208a99e447c281a13edf8b10e4e75a7274a9", + "md5": "d83de02a57a38afd0d2c1cd9f524cfca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/server-cmod.c", + "type": "file", + "name": "server-cmod.c", + "base_name": "server-cmod", + "extension": ".c", + "size": 2448, + "date": "2017-05-25", + "sha1": "9665dcbfe7adced1b6a03adcdeb5133873262b30", + "md5": "422003f3ab95b7d31bc215a49dbde509", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/server-conf.c", + "type": "file", + "name": "server-conf.c", + "base_name": "server-conf", + "extension": ".c", + "size": 3828, + "date": "2017-05-25", + "sha1": "d5745210906f95ccb6efa1462459996d439ac7c7", + "md5": "d97382f3e6a1d65a6ad84a7a897d0dc1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/server-ec.pem", + "type": "file", + "name": "server-ec.pem", + "base_name": "server-ec", + "extension": ".pem", + "size": 889, + "date": "2017-05-25", + "sha1": "92f49cdcacc821b3dce71684f30a66f083cdf040", + "md5": "02cb90c7a9104d7dfaec5068edd678bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/server.pem", + "type": "file", + "name": "server.pem", + "base_name": "server", + "extension": ".pem", + "size": 4799, + "date": "2017-05-25", + "sha1": "fe88dcba1740f5e4044dfe70027e2d1d3c2c2ce1", + "md5": "4360c28f98b2c959abe293e956762927", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/shared.opt", + "type": "file", + "name": "shared.opt", + "base_name": "shared", + "extension": ".opt", + "size": 47, + "date": "2017-05-25", + "sha1": "5c921cc4ac884f3794c3825033c1744cb8e9670c", + "md5": "25b2a39386bdffdc253dbe95243fa502", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/bio/static.opt", + "type": "file", + "name": "static.opt", + "base_name": "static", + "extension": ".opt", + "size": 35, + "date": "2017-05-25", + "sha1": "55ee6c7780e111a256ba2d7a73ed0c687666aafe", + "md5": "a91856026c4b334ca89a5a19f6ebb802", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs", + "type": "directory", + "name": "certs", + "base_name": "certs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 1, + "size_count": 21349, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/ca.cnf", + "type": "file", + "name": "ca.cnf", + "base_name": "ca", + "extension": ".cnf", + "size": 2246, + "date": "2017-05-25", + "sha1": "18b6a95188937bf162db1d70bd1179435c4a11b6", + "md5": "560b3a727bd4160ff1965e151431a40e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/mkcerts.sh", + "type": "file", + "name": "mkcerts.sh", + "base_name": "mkcerts", + "extension": ".sh", + "size": 3889, + "date": "2017-05-25", + "sha1": "5538a19a1964d99775694bed7edf322b618681b0", + "md5": "55bd086b8059f031e765cc994e7c1b12", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/ocspquery.sh", + "type": "file", + "name": "ocspquery.sh", + "base_name": "ocspquery", + "extension": ".sh", + "size": 798, + "date": "2017-05-25", + "sha1": "abdbfadeea1e2cb471b9e03e433f1e84f4743dfb", + "md5": "692fea99593accca27516e5cbb65781e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/ocsprun.sh", + "type": "file", + "name": "ocsprun.sh", + "base_name": "ocsprun", + "extension": ".sh", + "size": 392, + "date": "2017-05-25", + "sha1": "ec758e17d24493f894504eb78393337a5bb4827a", + "md5": "98fc053c089f6cf302d66c84e90003f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 860, + "date": "2017-05-25", + "sha1": "2b7f34b20c88aaa356593a058b2ac460981b6200", + "md5": "9c9f8b16be52599d79d65e72023c5c0d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps", + "type": "directory", + "name": "apps", + "base_name": "apps", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 13164, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps/apps.cnf", + "type": "file", + "name": "apps.cnf", + "base_name": "apps", + "extension": ".cnf", + "size": 1794, + "date": "2017-05-25", + "sha1": "b1e136efdfee61f3d35f21e527588e61a3a1cb66", + "md5": "54b6050e47ec8c482634d835d9ad48c9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps/ckey.pem", + "type": "file", + "name": "ckey.pem", + "base_name": "ckey", + "extension": ".pem", + "size": 1679, + "date": "2017-05-25", + "sha1": "88e868d338854b7c3c2d1cab4657d6f3165269f1", + "md5": "838ee902ee6ecd0d27b06db8d01120ff", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps/intkey.pem", + "type": "file", + "name": "intkey.pem", + "base_name": "intkey", + "extension": ".pem", + "size": 1675, + "date": "2017-05-25", + "sha1": "1bac78cf5d8f17d3bd398d782a7b4a40ed33aa38", + "md5": "cf6c14827e5e85105378c6581bb667cf", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps/mkacerts.sh", + "type": "file", + "name": "mkacerts.sh", + "base_name": "mkacerts", + "extension": ".sh", + "size": 1865, + "date": "2017-05-25", + "sha1": "4a7c4fd81f0ce5b6fdd7fef661172d25b5f6ea86", + "md5": "f2c773a1034ca503deaf9fff35c805b1", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps/mkxcerts.sh", + "type": "file", + "name": "mkxcerts.sh", + "base_name": "mkxcerts", + "extension": ".sh", + "size": 1118, + "date": "2017-05-25", + "sha1": "978c3e560e5e62828d2afb40b197c017f9f7a7a7", + "md5": "3f9761800f1fa5ad02600cb8fbfa81d7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps/rootkey.pem", + "type": "file", + "name": "rootkey.pem", + "base_name": "rootkey", + "extension": ".pem", + "size": 1679, + "date": "2017-05-25", + "sha1": "1e6e2b6c8b9d1184cf353b069377b198dfea4df9", + "md5": "a3abd0f21f05e6b80453e240694251f2", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps/skey.pem", + "type": "file", + "name": "skey.pem", + "base_name": "skey", + "extension": ".pem", + "size": 1679, + "date": "2017-05-25", + "sha1": "38dfed55e30e2bc9963b3b19c972ef25c062a87f", + "md5": "8f9a3cd144fa1c27bab564b8bc00a81b", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/certs/apps/skey2.pem", + "type": "file", + "name": "skey2.pem", + "base_name": "skey2", + "extension": ".pem", + "size": 1675, + "date": "2017-05-25", + "sha1": "5183c729156f6fa01c28ae5cab56a407ecb2d36d", + "md5": "b5267061b96c6e40e2502a7429922fea", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms", + "type": "directory", + "name": "cms", + "base_name": "cms", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 0, + "size_count": 22829, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cacert.pem", + "type": "file", + "name": "cacert.pem", + "base_name": "cacert", + "extension": ".pem", + "size": 1070, + "date": "2017-05-25", + "sha1": "cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a", + "md5": "fc177713fa6e8124593ccb3da13404b9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cakey.pem", + "type": "file", + "name": "cakey.pem", + "base_name": "cakey", + "extension": ".pem", + "size": 891, + "date": "2017-05-25", + "sha1": "6f4461b4797f7521bb72a9ba87d50735c1523dbe", + "md5": "9abc6dc8cd020db653a2d06be1bc3ac9", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_comp.c", + "type": "file", + "name": "cms_comp.c", + "base_name": "cms_comp", + "extension": ".c", + "size": 1370, + "date": "2017-05-25", + "sha1": "24cf3feb5ce06b9f3c8f6043fd48bc86297b9aac", + "md5": "49cdd262679e38d870293e6b1926b117", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_ddec.c", + "type": "file", + "name": "cms_ddec.c", + "base_name": "cms_ddec", + "extension": ".c", + "size": 1950, + "date": "2017-05-25", + "sha1": "f7a5cb8d23ce63966d21bfa2c9cfa07d119be646", + "md5": "f6ac9f3ffb20e6bd5f70a2aacac7fe53", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_dec.c", + "type": "file", + "name": "cms_dec.c", + "base_name": "cms_dec", + "extension": ".c", + "size": 1688, + "date": "2017-05-25", + "sha1": "26023ddff1878aa31cb770669aec003d6eb839a5", + "md5": "e217f4c2e5348fec2032bb482ef7aebc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_denc.c", + "type": "file", + "name": "cms_denc.c", + "base_name": "cms_denc", + "extension": ".c", + "size": 2214, + "date": "2017-05-25", + "sha1": "c20f87091c0cd43b6209e4c16ad07a6f55596e41", + "md5": "1ccaed5a7f1d46a29afd710c23f05bfc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_enc.c", + "type": "file", + "name": "cms_enc.c", + "base_name": "cms_enc", + "extension": ".c", + "size": 2067, + "date": "2017-05-25", + "sha1": "7f707329717e8b9622a06c3ada1f6efc09788531", + "md5": "5982a700ed9c9620141781931c346c83", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_sign.c", + "type": "file", + "name": "cms_sign.c", + "base_name": "cms_sign", + "extension": ".c", + "size": 1974, + "date": "2017-05-25", + "sha1": "e1db8b66c24f6d9fc4c2b31fd741921300769416", + "md5": "9aafa425975699bde879c93221b5c862", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_sign2.c", + "type": "file", + "name": "cms_sign2.c", + "base_name": "cms_sign2", + "extension": ".c", + "size": 2122, + "date": "2017-05-25", + "sha1": "0fa8bd86c0961537cd24bbc91f2fa6d6da655124", + "md5": "7faa837c381b3a8c17491495932b6c27", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_uncomp.c", + "type": "file", + "name": "cms_uncomp.c", + "base_name": "cms_uncomp", + "extension": ".c", + "size": 1237, + "date": "2017-05-25", + "sha1": "a4068c0891bc887fdca917a52d42c69b0eef7fce", + "md5": "0832ec7e0bb353d751d50923580236c0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/cms_ver.c", + "type": "file", + "name": "cms_ver.c", + "base_name": "cms_ver", + "extension": ".c", + "size": 1821, + "date": "2017-05-25", + "sha1": "9ada602a3eace0ef5ce9d8a12c7020d630ed5d05", + "md5": "258ed606ed1d0efa0ddf3dff287d73f8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/comp.txt", + "type": "file", + "name": "comp.txt", + "base_name": "comp", + "extension": ".txt", + "size": 566, + "date": "2017-05-25", + "sha1": "ca0b204ee4acf5a30bed9e6185193e9399df3547", + "md5": "16c11101236469e8b8cd1e8b61c711f3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/encr.txt", + "type": "file", + "name": "encr.txt", + "base_name": "encr", + "extension": ".txt", + "size": 65, + "date": "2017-05-25", + "sha1": "5166c6c3ed9a4e95420df8232d82422414f103ba", + "md5": "720d954d426fc7fc0ac04c38e1e440a1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/sign.txt", + "type": "file", + "name": "sign.txt", + "base_name": "sign", + "extension": ".txt", + "size": 58, + "date": "2017-05-25", + "sha1": "7ba6b78642d3c84a38cd58f3285b81fb2d2f22a4", + "md5": "e844b4a4c7dceb87392d4e2264c8ecc8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/signer.pem", + "type": "file", + "name": "signer.pem", + "base_name": "signer", + "extension": ".pem", + "size": 1868, + "date": "2017-05-25", + "sha1": "112a4fb8f81d81db9a235165afabfc74f6f7c2b4", + "md5": "f2d2839d56e288c39c91410092552001", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/cms/signer2.pem", + "type": "file", + "name": "signer2.pem", + "base_name": "signer2", + "extension": ".pem", + "size": 1868, + "date": "2017-05-25", + "sha1": "c44d3debb2cc278c5ed33d844bc5475fb586117d", + "md5": "72d5ba6cb1eb83a1a9317829320d6971", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/evp", + "type": "directory", + "name": "evp", + "base_name": "evp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 9286, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/evp/aesccm.c", + "type": "file", + "name": "aesccm.c", + "base_name": "aesccm", + "extension": ".c", + "size": 4614, + "date": "2017-05-25", + "sha1": "881c80749dc71767fe2e368cec0bdaff4c21e3b7", + "md5": "00af20c3a57a561cbbacbc9132b13f6e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/evp/aesgcm.c", + "type": "file", + "name": "aesgcm.c", + "base_name": "aesgcm", + "extension": ".c", + "size": 4172, + "date": "2017-05-25", + "sha1": "9137824a4b2fc810326fe9fdef592fee6b76c578", + "md5": "068e15628e1b721129d88ba984e518af", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/evp/Makefile", + "type": "file", + "name": "Makefile", + "base_name": "Makefile", + "extension": "", + "size": 500, + "date": "2017-05-25", + "sha1": "2a962be15bcc43493d5e8ddd425f98701db06131", + "md5": "89ad7165f7ac8d29c8796303053b399e", + "mime_type": "text/x-makefile", + "file_type": "makefile script, ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/pkcs12", + "type": "directory", + "name": "pkcs12", + "base_name": "pkcs12", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 3468, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/pkcs12/pkread.c", + "type": "file", + "name": "pkread.c", + "base_name": "pkread", + "extension": ".c", + "size": 1916, + "date": "2017-05-25", + "sha1": "24349969a82c727a42a6b575de30b81b96f26bfc", + "md5": "db09f787a517e75bb17ad0fb8dccd34a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/pkcs12/pkwrite.c", + "type": "file", + "name": "pkwrite.c", + "base_name": "pkwrite", + "extension": ".c", + "size": 1500, + "date": "2017-05-25", + "sha1": "bdbc921863959a2c316cce44f3822b2113181215", + "md5": "5d05f4d00f83dc5ddbd5dbbb6125f203", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/pkcs12/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 52, + "date": "2017-05-25", + "sha1": "7861e5463cc997798a9079ad20935f9332d27225", + "md5": "794ba0c042b0aa324675112386504e26", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Steve Henson." + ], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime", + "type": "directory", + "name": "smime", + "base_name": "smime", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 0, + "size_count": 15437, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/cacert.pem", + "type": "file", + "name": "cacert.pem", + "base_name": "cacert", + "extension": ".pem", + "size": 1070, + "date": "2017-05-25", + "sha1": "cd5cb64b8c0d5654b5a768d820a2b1ec03ec365a", + "md5": "fc177713fa6e8124593ccb3da13404b9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/cakey.pem", + "type": "file", + "name": "cakey.pem", + "base_name": "cakey", + "extension": ".pem", + "size": 891, + "date": "2017-05-25", + "sha1": "6f4461b4797f7521bb72a9ba87d50735c1523dbe", + "md5": "9abc6dc8cd020db653a2d06be1bc3ac9", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/encr.txt", + "type": "file", + "name": "encr.txt", + "base_name": "encr", + "extension": ".txt", + "size": 68, + "date": "2017-05-25", + "sha1": "8643e033847f354749eb2d8764cd2240234737f2", + "md5": "ccfc0b4f06eb054f05bae14c1bef7db6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/sign.txt", + "type": "file", + "name": "sign.txt", + "base_name": "sign", + "extension": ".txt", + "size": 54, + "date": "2017-05-25", + "sha1": "ccfe77e892958809b7c37463bcb6bf19b8ae2257", + "md5": "dc41eee12c887b46dd4f881637740be1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/signer.pem", + "type": "file", + "name": "signer.pem", + "base_name": "signer", + "extension": ".pem", + "size": 1868, + "date": "2017-05-25", + "sha1": "112a4fb8f81d81db9a235165afabfc74f6f7c2b4", + "md5": "f2d2839d56e288c39c91410092552001", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/signer2.pem", + "type": "file", + "name": "signer2.pem", + "base_name": "signer2", + "extension": ".pem", + "size": 1868, + "date": "2017-05-25", + "sha1": "c44d3debb2cc278c5ed33d844bc5475fb586117d", + "md5": "72d5ba6cb1eb83a1a9317829320d6971", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/smdec.c", + "type": "file", + "name": "smdec.c", + "base_name": "smdec", + "extension": ".c", + "size": 1652, + "date": "2017-05-25", + "sha1": "e68172b9f1e3469b21f33706852c8dcdb91ac673", + "md5": "f3daaef161d889cb8dadb5fc7ba44c2d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/smenc.c", + "type": "file", + "name": "smenc.c", + "base_name": "smenc", + "extension": ".c", + "size": 2041, + "date": "2017-05-25", + "sha1": "a849f10d973d2ad8b19980b335fd55bc3476ed22", + "md5": "208741abb1b47913f3fb7b3265220b75", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/smsign.c", + "type": "file", + "name": "smsign.c", + "base_name": "smsign", + "extension": ".c", + "size": 1969, + "date": "2017-05-25", + "sha1": "cde2b25bcc90b346f349092c68404f1b80135a79", + "md5": "1b9b1e04868afc5abc81ddf58bf8370b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/smsign2.c", + "type": "file", + "name": "smsign2.c", + "base_name": "smsign2", + "extension": ".c", + "size": 2139, + "date": "2017-05-25", + "sha1": "3a2b4a48388211d842596b9f31dabf63419aae33", + "md5": "7781f9174c2ee6d5b1fa8ffe8b0190ae", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/demos/smime/smver.c", + "type": "file", + "name": "smver.c", + "base_name": "smver", + "extension": ".c", + "size": 1817, + "date": "2017-05-25", + "sha1": "66e4d7ec9cdb52b5fc25ef1124bfdf975cb4283f", + "md5": "e2a69cba17885baaaf3ffe3c2a079414", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc", + "type": "directory", + "name": "doc", + "base_name": "doc", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 454, + "dirs_count": 5, + "size_count": 1960380, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/dir-locals.example.el", + "type": "file", + "name": "dir-locals.example.el", + "base_name": "dir-locals.example", + "extension": ".el", + "size": 449, + "date": "2017-05-25", + "sha1": "49568a1a7a41fbebe92cf7e1385ab6827fe29996", + "md5": "c8890868d63134e52e41365cb6c71edd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Common Lisp", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/fingerprints.txt", + "type": "file", + "name": "fingerprints.txt", + "base_name": "fingerprints", + "extension": ".txt", + "size": 1174, + "date": "2017-05-25", + "sha1": "f46e8eddf7eda8c867cb38215de133cb0edaefe4", + "md5": "22213d10097cd4e0746a65c3aa40c15a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/openssl-c-indent.el", + "type": "file", + "name": "openssl-c-indent.el", + "base_name": "openssl-c-indent", + "extension": ".el", + "size": 3209, + "date": "2017-05-25", + "sha1": "c8d759e6a74bb7c73ccb71854170f18c23e6184a", + "md5": "87d2c068d8d1e21937aa744fa40a36f7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Common Lisp", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 548, + "date": "2017-05-25", + "sha1": "c16077cf1ee820c842aeb96b1c77b88c2f40b2ae", + "md5": "7daaf725d372014eb79b0475d3e61d39", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps", + "type": "directory", + "name": "apps", + "base_name": "apps", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 49, + "dirs_count": 0, + "size_count": 433764, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/asn1parse.pod", + "type": "file", + "name": "asn1parse.pod", + "base_name": "asn1parse", + "extension": ".pod", + "size": 5828, + "date": "2017-05-25", + "sha1": "ede4ffae03492dbabe1b1098c6b76f3e3a0596c4", + "md5": "25a0b843c40a31e473096c4955401d75", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 203, + "end_line": 205, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 199, + "end_line": 201 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/CA.pl.pod", + "type": "file", + "name": "CA.pl.pod", + "base_name": "CA.pl", + "extension": ".pod", + "size": 6942, + "date": "2017-05-25", + "sha1": "3a5864063fef797dfc5d9d1c3457b92ed52bff2b", + "md5": "f4db65ad08e2ee263a04d670e5ce47b7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+PHP", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 209, + "end_line": 211, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 205, + "end_line": 207 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/ca.pod", + "type": "file", + "name": "ca.pod", + "base_name": "ca", + "extension": ".pod", + "size": 23340, + "date": "2017-05-25", + "sha1": "8896e165351618a779aa13a156c800f98502da24", + "md5": "171d6c25effeb932dfcad133a7122573", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 714, + "end_line": 716, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 710, + "end_line": 712 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/ciphers.pod", + "type": "file", + "name": "ciphers.pod", + "base_name": "ciphers", + "extension": ".pod", + "size": 25814, + "date": "2017-05-25", + "sha1": "2b8c0d9ef7c056100a803b2045e2752ec1008fa9", + "md5": "56028bd94b15c303a9a0c19760c1b67a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 725, + "end_line": 727, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 721, + "end_line": 723 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/cms.pod", + "type": "file", + "name": "cms.pod", + "base_name": "cms", + "extension": ".pod", + "size": 23921, + "date": "2017-05-25", + "sha1": "edea6a02f4806b947404cbcbf465c0b547090fb8", + "md5": "02ff2d6ee7c810fdf62464c106c79533", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 732, + "end_line": 734, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 728, + "end_line": 730 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/config.pod", + "type": "file", + "name": "config.pod", + "base_name": "config", + "extension": ".pod", + "size": 13031, + "date": "2017-05-25", + "sha1": "cb802ee14cbec4f765183632c692deaeaf97e594", + "md5": "25e849c2138375cc2c2442d642afff69", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 382, + "end_line": 384, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 378, + "end_line": 380 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/crl.pod", + "type": "file", + "name": "crl.pod", + "base_name": "crl", + "extension": ".pod", + "size": 2820, + "date": "2017-05-25", + "sha1": "56b3754b851520370efa336e90288050a6d2393d", + "md5": "a49064121e01f3525147f1aec51acdee", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 137, + "end_line": 139, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 133, + "end_line": 135 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/crl2pkcs7.pod", + "type": "file", + "name": "crl2pkcs7.pod", + "base_name": "crl2pkcs7", + "extension": ".pod", + "size": 2773, + "date": "2017-05-25", + "sha1": "3dbfd3feb96fba49e09516831bb5fe5de5b3302c", + "md5": "8ca74fbab93f0f6d11480da1bd6a8295", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 100, + "end_line": 102, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 96, + "end_line": 98 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/dgst.pod", + "type": "file", + "name": "dgst.pod", + "base_name": "dgst", + "extension": ".pod", + "size": 6341, + "date": "2017-05-25", + "sha1": "824cff1c3c87cdce5b80536c2029650787e7b65f", + "md5": "85b8340960aa0d13d4065d6745959be0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 233, + "end_line": 235, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 229, + "end_line": 231 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/dhparam.pod", + "type": "file", + "name": "dhparam.pod", + "base_name": "dhparam", + "extension": ".pod", + "size": 4326, + "date": "2017-05-25", + "sha1": "9e39eada0f851b8abe966b7abee0dcebb10b65fe", + "md5": "e4faca5f5b736e4b0b8054daa76b9af3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 154, + "end_line": 156, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 150, + "end_line": 152 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/dsa.pod", + "type": "file", + "name": "dsa.pod", + "base_name": "dsa", + "extension": ".pod", + "size": 4830, + "date": "2017-05-25", + "sha1": "ddf6702fe4fa7828bbcf45ee618486bd50d1524c", + "md5": "c1fc66d9ff87658b94bf36c21d8a0210", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 173, + "end_line": 175, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 169, + "end_line": 171 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/dsaparam.pod", + "type": "file", + "name": "dsaparam.pod", + "base_name": "dsaparam", + "extension": ".pod", + "size": 3178, + "date": "2017-05-25", + "sha1": "60040598817c80e32d22d92463d78bd31fc47aff", + "md5": "17bc6a261505657b5b4195430dee1457", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 119, + "end_line": 121, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 115, + "end_line": 117 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/ec.pod", + "type": "file", + "name": "ec.pod", + "base_name": "ec", + "extension": ".pod", + "size": 5889, + "date": "2017-05-25", + "sha1": "98d284ae7680e0a17b4923e7e4817a04a8b395a0", + "md5": "45ed0c950f2366f66ce6912ad5dcc9d5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 201, + "end_line": 203, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 197, + "end_line": 199 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/ecparam.pod", + "type": "file", + "name": "ecparam.pod", + "base_name": "ecparam", + "extension": ".pod", + "size": 4971, + "date": "2017-05-25", + "sha1": "1edf073d86696eac643854d86ba77b77297037e4", + "md5": "b9faf0d743b39dfb5c7a3b552953bb6b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 180, + "end_line": 182, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 176, + "end_line": 178 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/enc.pod", + "type": "file", + "name": "enc.pod", + "base_name": "enc", + "extension": ".pod", + "size": 10415, + "date": "2017-05-25", + "sha1": "e5e613c6129279c6564a6556f347d3b058fedd10", + "md5": "b933f1186f3e2491e7d939b26ef04df8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 348, + "end_line": 350, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 344, + "end_line": 346 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/engine.pod", + "type": "file", + "name": "engine.pod", + "base_name": "engine", + "extension": ".pod", + "size": 2735, + "date": "2017-05-25", + "sha1": "d79fd5d395dee1225d0018cf8984c5af6acae5e6", + "md5": "d64464e678c3955de550ede6e6d5398a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 99, + "end_line": 101, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 95, + "end_line": 97 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/errstr.pod", + "type": "file", + "name": "errstr.pod", + "base_name": "errstr", + "extension": ".pod", + "size": 941, + "date": "2017-05-25", + "sha1": "f2449b04731e41ea5d68eac8fc4dedd5773be76b", + "md5": "0922f9849554682de8952f442dfb5de5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 40, + "end_line": 42, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/gendsa.pod", + "type": "file", + "name": "gendsa.pod", + "base_name": "gendsa", + "extension": ".pod", + "size": 2296, + "date": "2017-05-25", + "sha1": "311af5ffc72220a7f66838de8611f97ab236de4c", + "md5": "838163810f2772c256724d343da3d140", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 86, + "end_line": 88, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 82, + "end_line": 84 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/genpkey.pod", + "type": "file", + "name": "genpkey.pod", + "base_name": "genpkey", + "extension": ".pod", + "size": 7607, + "date": "2017-05-25", + "sha1": "2cbc28e1498213070ee890a62c6233639e3bdd03", + "md5": "5fbf9eaf0cb5ceea55e9f1e905c22d3d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 272, + "end_line": 274, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 268, + "end_line": 270 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/genrsa.pod", + "type": "file", + "name": "genrsa.pod", + "base_name": "genrsa", + "extension": ".pod", + "size": 3168, + "date": "2017-05-25", + "sha1": "f3d0a16204080632885193709706fb04260a4da6", + "md5": "022d9793e629f0ff93c081a1ec44e4a1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 113, + "end_line": 115, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 109, + "end_line": 111 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/list.pod", + "type": "file", + "name": "list.pod", + "base_name": "list", + "extension": ".pod", + "size": 1715, + "date": "2017-05-25", + "sha1": "f0c62958e2f2f77e37b3f64bb48bbc590547beb4", + "md5": "3d22dd306f13dec7ba26737c9c0d1cfd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/nseq.pod", + "type": "file", + "name": "nseq.pod", + "base_name": "nseq", + "extension": ".pod", + "size": 2069, + "date": "2017-05-25", + "sha1": "7d09041151f1249f356e3a1132be8140b17c8ead", + "md5": "01eef24e615b6a1f0849f728a253b9af", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/ocsp.pod", + "type": "file", + "name": "ocsp.pod", + "base_name": "ocsp", + "extension": ".pod", + "size": 15177, + "date": "2017-05-25", + "sha1": "d1b9001ded0841743cb13661ff698a98b38a40d5", + "md5": "1ec0e9a404d17f3adf3358d24e4f75c7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 461, + "end_line": 463, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 457, + "end_line": 459 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/openssl.pod", + "type": "file", + "name": "openssl.pod", + "base_name": "openssl", + "extension": ".pod", + "size": 10546, + "date": "2017-05-25", + "sha1": "9ea466153fdf26a882f96a97fdd0ade69649888b", + "md5": "f21dfee72a8bb5b7a849e4160cb17a82", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 445, + "end_line": 447, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 441, + "end_line": 443 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/passwd.pod", + "type": "file", + "name": "passwd.pod", + "base_name": "passwd", + "extension": ".pod", + "size": 2053, + "date": "2017-05-25", + "sha1": "b5ef420dc9b6fad6c854cb28b39317f5f3a107e0", + "md5": "bd35e95656dde827081cdf786cdd8b4a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/pkcs12.pod", + "type": "file", + "name": "pkcs12.pod", + "base_name": "pkcs12", + "extension": ".pod", + "size": 11628, + "date": "2017-05-25", + "sha1": "0379719f04537f6d266f305444a09b6da1613855", + "md5": "a26f719e46f190bc7d5c5c2a4a1f9344", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 375, + "end_line": 377, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 371, + "end_line": 373 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/pkcs7.pod", + "type": "file", + "name": "pkcs7.pod", + "base_name": "pkcs7", + "extension": ".pod", + "size": 2626, + "date": "2017-05-25", + "sha1": "77b408b0affde9f357734548af28d33e9ef9c88b", + "md5": "a0f64295bcd15898d9db6874171556e1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 114, + "end_line": 116, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 110, + "end_line": 112 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/pkcs8.pod", + "type": "file", + "name": "pkcs8.pod", + "base_name": "pkcs8", + "extension": ".pod", + "size": 9555, + "date": "2017-05-25", + "sha1": "24aead9e3d822a9d34caf479a7fc32004d3e523c", + "md5": "285e495b95105cfe80d74e90eccd23eb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 296, + "end_line": 298, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 292, + "end_line": 294 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/pkey.pod", + "type": "file", + "name": "pkey.pod", + "base_name": "pkey", + "extension": ".pod", + "size": 3878, + "date": "2017-05-25", + "sha1": "3923325ec691ef7bf66183d252917ac6d762c2f4", + "md5": "53383ef14ae4d2ae5ae8f9ab502f22b4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 150, + "end_line": 152, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 146, + "end_line": 148 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/pkeyparam.pod", + "type": "file", + "name": "pkeyparam.pod", + "base_name": "pkeyparam", + "extension": ".pod", + "size": 1837, + "date": "2017-05-25", + "sha1": "14e150b0826c306dab1c6ac5218a7a5ba2cefa92", + "md5": "c661629d2189b144d47ba0915be81244", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/pkeyutl.pod", + "type": "file", + "name": "pkeyutl.pod", + "base_name": "pkeyutl", + "extension": ".pod", + "size": 8221, + "date": "2017-05-25", + "sha1": "335b954acfe93da0ce86188904ee87ca553875a4", + "md5": "8749dba351ff1c9c10e9cc7465f404fa", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 287, + "end_line": 289, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 283, + "end_line": 285 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/rand.pod", + "type": "file", + "name": "rand.pod", + "base_name": "rand", + "extension": ".pod", + "size": 1470, + "date": "2017-05-25", + "sha1": "6b87b9538feb19fac31c9097a02f20fb9e5b229a", + "md5": "628938537edd1093fbc47a4a75e58f72", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/rehash.pod", + "type": "file", + "name": "rehash.pod", + "base_name": "rehash", + "extension": ".pod", + "size": 4026, + "date": "2017-05-25", + "sha1": "1385230fea01416092c6a9f178ce19298f48bf36", + "md5": "a31ecdc7522b44a07304aa8a12bcb440", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 4, + "end_line": 4, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + }, + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 134, + "end_line": 136, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 130, + "end_line": 132 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/req.pod", + "type": "file", + "name": "req.pod", + "base_name": "req", + "extension": ".pod", + "size": 21586, + "date": "2017-05-25", + "sha1": "e33b1484b0b0e1b93a571bddb4c3e75af5b74ea1", + "md5": "2eb19e5ed714b8b98fef162f67854016", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 656, + "end_line": 658, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 652, + "end_line": 654 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/rsa.pod", + "type": "file", + "name": "rsa.pod", + "base_name": "rsa", + "extension": ".pod", + "size": 6070, + "date": "2017-05-25", + "sha1": "b34db5fc0d3867d1f7107c19c8d25c8d9793033d", + "md5": "d1d0d76822b8267e361053e254cb738f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 211, + "end_line": 213, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 207, + "end_line": 209 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/rsautl.pod", + "type": "file", + "name": "rsautl.pod", + "base_name": "rsautl", + "extension": ".pod", + "size": 5450, + "date": "2017-05-25", + "sha1": "e97fe7f3aa98b6883259df9b182e225c63f077fd", + "md5": "5435a26180ef3fa1f75ff73ee29edd4f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 199, + "end_line": 201, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 195, + "end_line": 197 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/s_client.pod", + "type": "file", + "name": "s_client.pod", + "base_name": "s_client", + "extension": ".pod", + "size": 19620, + "date": "2017-05-25", + "sha1": "237465ac0da2099c1db3d90d1a5a85ada7d82d3e", + "md5": "9e0b5581491a4649f201ff066f8eefb0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 611, + "end_line": 613, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 607, + "end_line": 609 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/s_server.pod", + "type": "file", + "name": "s_server.pod", + "base_name": "s_server", + "extension": ".pod", + "size": 18000, + "date": "2017-05-25", + "sha1": "187108bf17fd9797b12d4f2a36f7474f6cf5ea51", + "md5": "8f40103112c9de004636a7fb4f4820d8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 613, + "end_line": 615, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 609, + "end_line": 611 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/s_time.pod", + "type": "file", + "name": "s_time.pod", + "base_name": "s_time", + "extension": ".pod", + "size": 6431, + "date": "2017-05-25", + "sha1": "d04e67a0d0f3cb7a9f81e7fdb32bfbd36b06d8d7", + "md5": "1dd5026dfa2f5bfeae917162e5fb5456", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 189, + "end_line": 191, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 185, + "end_line": 187 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/sess_id.pod", + "type": "file", + "name": "sess_id.pod", + "base_name": "sess_id", + "extension": ".pod", + "size": 4142, + "date": "2017-05-25", + "sha1": "74a1fa94b9065b908edb06ecd031e8d45812e08c", + "md5": "cadf5a1ad1312da6c0bd8f745ee4f1ce", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 158, + "end_line": 160, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 154, + "end_line": 156 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/smime.pod", + "type": "file", + "name": "smime.pod", + "base_name": "smime", + "extension": ".pod", + "size": 16568, + "date": "2017-05-25", + "sha1": "c5ac71e64b0715677c0d5cc5b18cf089ccc135be", + "md5": "277fcdea85b62a8e3c78e69547138232", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 512, + "end_line": 514, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 508, + "end_line": 510 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/speed.pod", + "type": "file", + "name": "speed.pod", + "base_name": "speed", + "extension": ".pod", + "size": 1517, + "date": "2017-05-25", + "sha1": "9d83cf034237a37cfee57e611b443b3e6775b99f", + "md5": "028c4543ded357e5c9647beaf43f574f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 62, + "end_line": 64, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 58, + "end_line": 60 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/spkac.pod", + "type": "file", + "name": "spkac.pod", + "base_name": "spkac", + "extension": ".pod", + "size": 3723, + "date": "2017-05-25", + "sha1": "9ea15192639a5c263530dc1e802a1b38195209c6", + "md5": "5246213ad64c86eea24a62231e8a0cc0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 142, + "end_line": 144, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 138, + "end_line": 140 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/ts.pod", + "type": "file", + "name": "ts.pod", + "base_name": "ts", + "extension": ".pod", + "size": 20920, + "date": "2017-05-25", + "sha1": "54f8e125a184c6c6bacf3e5103df43d3e7fdb4fa", + "md5": "ca0e3215f7400dc47d5d1aa192bf16a4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 656, + "end_line": 658, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 652, + "end_line": 654 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/tsget.pod", + "type": "file", + "name": "tsget.pod", + "base_name": "tsget", + "extension": ".pod", + "size": 6374, + "date": "2017-05-25", + "sha1": "c6d440608e8fefd009cc369416d5489d571de619", + "md5": "593df6ca9b6e31bfe75bd2425e43ea4e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 194, + "end_line": 196, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 190, + "end_line": 192 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/verify.pod", + "type": "file", + "name": "verify.pod", + "base_name": "verify", + "extension": ".pod", + "size": 22058, + "date": "2017-05-25", + "sha1": "1c879db5432fe9bf2590de218da54dc1fd678c35", + "md5": "9bf0195550797795530b41b82a003e42", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 41.46, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 719, + "end_line": 721, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 41.46, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 719, + "end_line": 721, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 41.46, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 719, + "end_line": 721, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 715, + "end_line": 717 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/version.pod", + "type": "file", + "name": "version.pod", + "base_name": "version", + "extension": ".pod", + "size": 1187, + "date": "2017-05-25", + "sha1": "1fe867bd8b84c9e5ecf2aa402be4ad9ab3433831", + "md5": "06a8190695e1840d8ffb22a75bc767cf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 75, + "end_line": 77, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 71, + "end_line": 73 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/x509.pod", + "type": "file", + "name": "x509.pod", + "base_name": "x509", + "extension": ".pod", + "size": 27542, + "date": "2017-05-25", + "sha1": "6e2fb5e1f826b3f55e85676064130b41d4ac0317", + "md5": "fbfce658be9df46b72c466683127690a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 900, + "end_line": 902, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 896, + "end_line": 898 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/apps/x509v3_config.pod", + "type": "file", + "name": "x509v3_config.pod", + "base_name": "x509v3_config", + "extension": ".pod", + "size": 16609, + "date": "2017-05-25", + "sha1": "3564531112e737e1cd19a80e48f7f6c4305b2f0c", + "md5": "bbeef94c54e2d11949388bc94ceba153", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 536, + "end_line": 538, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 532, + "end_line": 534 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto", + "type": "directory", + "name": "crypto", + "base_name": "crypto", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 274, + "dirs_count": 0, + "size_count": 1076231, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASN1_generate_nconf.pod", + "type": "file", + "name": "ASN1_generate_nconf.pod", + "base_name": "ASN1_generate_nconf", + "extension": ".pod", + "size": 7767, + "date": "2017-05-25", + "sha1": "a4a0baab05fbdd904c4caf00356d14df0786437e", + "md5": "bc651183ee148d4fd792db13a29845b1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 265, + "end_line": 267, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 261, + "end_line": 263 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASN1_INTEGER_get_int64.pod", + "type": "file", + "name": "ASN1_INTEGER_get_int64.pod", + "base_name": "ASN1_INTEGER_get_int64", + "extension": ".pod", + "size": 5262, + "date": "2017-05-25", + "sha1": "2ee41f1b6b061a0ccb9040c4255f2837e280ca5e", + "md5": "c6125e02e75c21696cb15c5708c6b296", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 128, + "end_line": 130, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 124, + "end_line": 126 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASN1_OBJECT_new.pod", + "type": "file", + "name": "ASN1_OBJECT_new.pod", + "base_name": "ASN1_OBJECT_new", + "extension": ".pod", + "size": 1368, + "date": "2017-05-25", + "sha1": "287635326086f1a1414d71ddb1a6c2570d8d6c9c", + "md5": "ebd3047be5b25c5add957ca440c26d26", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASN1_STRING_length.pod", + "type": "file", + "name": "ASN1_STRING_length.pod", + "base_name": "ASN1_STRING_length", + "extension": ".pod", + "size": 3301, + "date": "2017-05-25", + "sha1": "c6e2a5184283d890a8636b921b655f54af467907", + "md5": "353a77ab969e2bd01ca80118f4ecae83", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 88, + "end_line": 90, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 84, + "end_line": 86 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASN1_STRING_new.pod", + "type": "file", + "name": "ASN1_STRING_new.pod", + "base_name": "ASN1_STRING_new", + "extension": ".pod", + "size": 1254, + "date": "2017-05-25", + "sha1": "3ea75169208cc58fdc04c43a37ea0134f0ce24d3", + "md5": "24a16cff6644e803fa23de00c1e68101", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASN1_STRING_print_ex.pod", + "type": "file", + "name": "ASN1_STRING_print_ex.pod", + "base_name": "ASN1_STRING_print_ex", + "extension": ".pod", + "size": 4186, + "date": "2017-05-25", + "sha1": "cdd8bf7c87e8c392f5be50bc41203219e48ae071", + "md5": "40bbcb016c67745315328ff9d40f7397", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 100, + "end_line": 102, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 96, + "end_line": 98 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASN1_TIME_set.pod", + "type": "file", + "name": "ASN1_TIME_set.pod", + "base_name": "ASN1_TIME_set", + "extension": ".pod", + "size": 5025, + "date": "2017-05-25", + "sha1": "2dd32d9b2336fe109ffa6d1c6f2a3f63f4a27c16", + "md5": "b3f6d4d20e32c455d4099d334df6690d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 133, + "end_line": 135, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 129, + "end_line": 131 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASN1_TYPE_get.pod", + "type": "file", + "name": "ASN1_TYPE_get.pod", + "base_name": "ASN1_TYPE_get", + "extension": ".pod", + "size": 4058, + "date": "2017-05-25", + "sha1": "72efde7abab2f0f13dc6f1c8d8922506631e4bb9", + "md5": "154571263b3593c8b8999863123f0925", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 95, + "end_line": 97, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 91, + "end_line": 93 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASYNC_start_job.pod", + "type": "file", + "name": "ASYNC_start_job.pod", + "base_name": "ASYNC_start_job", + "extension": ".pod", + "size": 12260, + "date": "2017-05-25", + "sha1": "eada39302fad8f1ade455331364481fdb471e24a", + "md5": "784c55f693c12470ed5f4b9bcfbc7f9e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 325, + "end_line": 327, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 321, + "end_line": 323 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ASYNC_WAIT_CTX_new.pod", + "type": "file", + "name": "ASYNC_WAIT_CTX_new.pod", + "base_name": "ASYNC_WAIT_CTX_new", + "extension": ".pod", + "size": 7327, + "date": "2017-05-25", + "sha1": "57ec13a888cb24677c32527835cd46f49dd64778", + "md5": "299c3ef46293d538172f2eb1a60a3d28", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 139, + "end_line": 141, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 135, + "end_line": 137 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BF_encrypt.pod", + "type": "file", + "name": "BF_encrypt.pod", + "base_name": "BF_encrypt", + "extension": ".pod", + "size": 5075, + "date": "2017-05-25", + "sha1": "b562db91b21f22f284a6d170cbfd1f3a36b03ddd", + "md5": "63c02b0d2f3bd8be3f1d1a5a0b5436d5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 112, + "end_line": 114, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 108, + "end_line": 110 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/bio.pod", + "type": "file", + "name": "bio.pod", + "base_name": "bio", + "extension": ".pod", + "size": 2792, + "date": "2017-05-25", + "sha1": "ddf290adc1ec611907a41193cb52a5722c67a1c1", + "md5": "716717f3120f51efb07e29b358c709ef", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 84, + "end_line": 86, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 80, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_ADDR.pod", + "type": "file", + "name": "BIO_ADDR.pod", + "base_name": "BIO_ADDR", + "extension": ".pod", + "size": 5020, + "date": "2017-05-25", + "sha1": "fcbde6ce3b351599d3b8452f42b0e601cb954e5c", + "md5": "a7f80462c409b5e2f7c3425e18c95676", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 120, + "end_line": 122, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 116, + "end_line": 118 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_ADDRINFO.pod", + "type": "file", + "name": "BIO_ADDRINFO.pod", + "base_name": "BIO_ADDRINFO", + "extension": ".pod", + "size": 3020, + "date": "2017-05-25", + "sha1": "9c9c1efcc43ce2bc44525b189b23e2336cd219f1", + "md5": "9900520e62e55e3747a409d0ca852515", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 86, + "end_line": 88, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 82, + "end_line": 84 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_connect.pod", + "type": "file", + "name": "BIO_connect.pod", + "base_name": "BIO_connect", + "extension": ".pod", + "size": 3519, + "date": "2017-05-25", + "sha1": "f8e197cb95c3da932d18f1667c75c2d0dc7f445f", + "md5": "850ce070641b0bf4e1d56e4d99e47529", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_ctrl.pod", + "type": "file", + "name": "BIO_ctrl.pod", + "base_name": "BIO_ctrl", + "extension": ".pod", + "size": 5224, + "date": "2017-05-25", + "sha1": "d5b5260942f5264b54d0386bd14c0c20f80fe715", + "md5": "5953ce641303a2183db5f1756709fde5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 131, + "end_line": 133, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 127, + "end_line": 129 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_f_base64.pod", + "type": "file", + "name": "BIO_f_base64.pod", + "base_name": "BIO_f_base64", + "extension": ".pod", + "size": 2281, + "date": "2017-05-25", + "sha1": "9e4588ba38012c2718a4ae4f4fc663e09a5aeb24", + "md5": "e625a4199b09b49415c1afeaa2c1bfc5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 86, + "end_line": 88, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 82, + "end_line": 84 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_f_buffer.pod", + "type": "file", + "name": "BIO_f_buffer.pod", + "base_name": "BIO_f_buffer", + "extension": ".pod", + "size": 3005, + "date": "2017-05-25", + "sha1": "99096bcfecb0dad9eff5ae2c176f17a34d6ad7ba", + "md5": "eb10992463aac6488bb5f89dd9977ec6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 87, + "end_line": 89, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 83, + "end_line": 85 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_f_cipher.pod", + "type": "file", + "name": "BIO_f_cipher.pod", + "base_name": "BIO_f_cipher", + "extension": ".pod", + "size": 2805, + "date": "2017-05-25", + "sha1": "dc38721aee0fb12ada43d163725474213c2ffcb8", + "md5": "bcbe7e07734ae8fa9e660373cc1733bf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_f_md.pod", + "type": "file", + "name": "BIO_f_md.pod", + "base_name": "BIO_f_md", + "extension": ".pod", + "size": 4836, + "date": "2017-05-25", + "sha1": "2728420be5d2ef699823bc8ed1ee7cc71d2f9f87", + "md5": "e347637fc649468e167318bebbe8b777", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 151, + "end_line": 153, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 147, + "end_line": 149 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_f_null.pod", + "type": "file", + "name": "BIO_f_null.pod", + "base_name": "BIO_f_null", + "extension": ".pod", + "size": 918, + "date": "2017-05-25", + "sha1": "596922b305fa36d70b0f4a76ca9434efca5bfc2f", + "md5": "c103bdfdf4ab6d9df613ab5b248602c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 34, + "end_line": 36, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_f_ssl.pod", + "type": "file", + "name": "BIO_f_ssl.pod", + "base_name": "BIO_f_ssl", + "extension": ".pod", + "size": 9691, + "date": "2017-05-25", + "sha1": "502a62de5b063e6dfe42885610abd25b75fc7629", + "md5": "709ffa245e6236f6a2bafbecb8d664dd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 293, + "end_line": 295, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 289, + "end_line": 291 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_find_type.pod", + "type": "file", + "name": "BIO_find_type.pod", + "base_name": "BIO_find_type", + "extension": ".pod", + "size": 1928, + "date": "2017-05-25", + "sha1": "25deb50d5a442fb0c7c1cd9ad31edc8414d1d3a1", + "md5": "6d88cb3b739754d1e8cadb6c84992ebf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_get_data.pod", + "type": "file", + "name": "BIO_get_data.pod", + "base_name": "BIO_get_data", + "extension": ".pod", + "size": 2214, + "date": "2017-05-25", + "sha1": "ce2813445d0ade4d5c5f8028fd1e4b8baa23c88b", + "md5": "94053d651da2e4dac68d9f1799f5272d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 60, + "end_line": 62, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 56, + "end_line": 58 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_get_ex_new_index.pod", + "type": "file", + "name": "BIO_get_ex_new_index.pod", + "base_name": "BIO_get_ex_new_index", + "extension": ".pod", + "size": 2055, + "date": "2017-05-25", + "sha1": "ca681ad17dd4c303d1014a92b06fdaed364cdf41", + "md5": "a31493f29e9a7c83b9ab4e8249a91f55", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_meth_new.pod", + "type": "file", + "name": "BIO_meth_new.pod", + "base_name": "BIO_meth_new", + "extension": ".pod", + "size": 6309, + "date": "2017-05-25", + "sha1": "fec2b79099c3f97438534e8181f2cca82c65ab05", + "md5": "f1ae45df638ec260455d973f4cf51985", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 126, + "end_line": 128, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 122, + "end_line": 124 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_new.pod", + "type": "file", + "name": "BIO_new.pod", + "base_name": "BIO_new", + "extension": ".pod", + "size": 1997, + "date": "2017-05-25", + "sha1": "302695a7f6825ee693531f79e20fdb168ec55925", + "md5": "58ee59410c6fa046fdf542b4352a3277", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_new_CMS.pod", + "type": "file", + "name": "BIO_new_CMS.pod", + "base_name": "BIO_new_CMS", + "extension": ".pod", + "size": 2418, + "date": "2017-05-25", + "sha1": "a35004b3c69e9f051c5bd014c5a539b8dfa08a1a", + "md5": "ec530c5b285aff9b113ebcf0aa23fa70", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 70, + "end_line": 72, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 66, + "end_line": 68 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_parse_hostserv.pod", + "type": "file", + "name": "BIO_parse_hostserv.pod", + "base_name": "BIO_parse_hostserv", + "extension": ".pod", + "size": 2192, + "date": "2017-05-25", + "sha1": "d821b213644609cd5d5fb7da2154b88fe7d0c119", + "md5": "1d41affca9f1899b6266e8eb24fd1c3f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_printf.pod", + "type": "file", + "name": "BIO_printf.pod", + "base_name": "BIO_printf", + "extension": ".pod", + "size": 1635, + "date": "2017-05-25", + "sha1": "6299d2f71de5bee5673a055067c1f912a1fd33fd", + "md5": "4ff0a4375f588c0e9d7b3bc5122c3c71", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_push.pod", + "type": "file", + "name": "BIO_push.pod", + "base_name": "BIO_push", + "extension": ".pod", + "size": 2511, + "date": "2017-05-25", + "sha1": "faa27cbcf8ec581190057b05df8d20e00db36fe9", + "md5": "d30f73514b98ff43aa4246bacd4a89bf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 84, + "end_line": 86, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 80, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_read.pod", + "type": "file", + "name": "BIO_read.pod", + "base_name": "BIO_read", + "extension": ".pod", + "size": 2866, + "date": "2017-05-25", + "sha1": "a9f82511256caf279c4f19dfcd8c4112208f70d8", + "md5": "610bf86c648bc4c9c21e601168d79e18", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_s_accept.pod", + "type": "file", + "name": "BIO_s_accept.pod", + "base_name": "BIO_s_accept", + "extension": ".pod", + "size": 8213, + "date": "2017-05-25", + "sha1": "1f4c98cd7b6cffca7702569aec40a6a75c31008a", + "md5": "7d7c36606cf41549a0b76e8c2fbaeab0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 217, + "end_line": 219, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 213, + "end_line": 215 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_s_bio.pod", + "type": "file", + "name": "BIO_s_bio.pod", + "base_name": "BIO_s_bio", + "extension": ".pod", + "size": 8185, + "date": "2017-05-25", + "sha1": "83c160836bd673999595687960239cc898ad80b5", + "md5": "0a13f37a600205ae9651581ef8505b0c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 196, + "end_line": 198, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 192, + "end_line": 194 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_s_connect.pod", + "type": "file", + "name": "BIO_s_connect.pod", + "base_name": "BIO_s_connect", + "extension": ".pod", + "size": 6977, + "date": "2017-05-25", + "sha1": "aeca6a0e3b329e98cd815bf64928a7c50485ec31", + "md5": "15623186ce367b182f01f032de5f9ba2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 195, + "end_line": 197, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 191, + "end_line": 193 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_s_fd.pod", + "type": "file", + "name": "BIO_s_fd.pod", + "base_name": "BIO_s_fd", + "extension": ".pod", + "size": 2676, + "date": "2017-05-25", + "sha1": "9d9d8513f83bd45f6185bfcab22b27faed9b697b", + "md5": "7803ffc0aa72f54047b4417a3a8f0c9b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 93, + "end_line": 95, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 89, + "end_line": 91 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_s_file.pod", + "type": "file", + "name": "BIO_s_file.pod", + "base_name": "BIO_s_file", + "extension": ".pod", + "size": 4762, + "date": "2017-05-25", + "sha1": "61282d82579b2525aa9a507e7503d857de887b90", + "md5": "453453f39e951e099f15e65eb3941cc6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 154, + "end_line": 156, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 150, + "end_line": 152 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_s_mem.pod", + "type": "file", + "name": "BIO_s_mem.pod", + "base_name": "BIO_s_mem", + "extension": ".pod", + "size": 4400, + "date": "2017-05-25", + "sha1": "5b3d487a08eb58ee42d13ebd830961f92b774b7b", + "md5": "48cbac47b6f1749d020653b242fe6c50", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 119, + "end_line": 121, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 115, + "end_line": 117 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_s_null.pod", + "type": "file", + "name": "BIO_s_null.pod", + "base_name": "BIO_s_null", + "extension": ".pod", + "size": 1132, + "date": "2017-05-25", + "sha1": "0c4cff3d3092d7ea3133ba745fdb3f60dce6fc56", + "md5": "07ea9e1ab6677289825bd6969d29bcd8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_s_socket.pod", + "type": "file", + "name": "BIO_s_socket.pod", + "base_name": "BIO_s_socket", + "extension": ".pod", + "size": 1409, + "date": "2017-05-25", + "sha1": "6525bef940dff3d349cfe0ee04f3932e7a641dbd", + "md5": "d361d7e164f60a0788d48b785b0dda50", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_set_callback.pod", + "type": "file", + "name": "BIO_set_callback.pod", + "base_name": "BIO_set_callback", + "extension": ".pod", + "size": 5991, + "date": "2017-05-25", + "sha1": "093300f37a3caae1610f0a39f8ad8f859b860404", + "md5": "8cd28c56450229fdc4162c2fbaddbcca", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 216, + "end_line": 216, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 212, + "end_line": 214 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BIO_should_retry.pod", + "type": "file", + "name": "BIO_should_retry.pod", + "base_name": "BIO_should_retry", + "extension": ".pod", + "size": 5148, + "date": "2017-05-25", + "sha1": "823315b44a7d76500800b865d3e74754915fadb1", + "md5": "837c967f46fb6dba538764d8aa0fc2dc", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 127, + "end_line": 129, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 123, + "end_line": 125 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_add.pod", + "type": "file", + "name": "BN_add.pod", + "base_name": "BN_add", + "extension": ".pod", + "size": 4218, + "date": "2017-05-25", + "sha1": "fe8cedf84d0338eab75e78ee5f648567b70b4752", + "md5": "fdd612cf59dcba4c208fcae5245311a8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 122, + "end_line": 124, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 118, + "end_line": 120 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_add_word.pod", + "type": "file", + "name": "BN_add_word.pod", + "base_name": "BN_add_word", + "extension": ".pod", + "size": 1578, + "date": "2017-05-25", + "sha1": "aecdb40045821a7fdbacdb2c3c66d705a9c952ed", + "md5": "5b486e4a727fcf9bd7dc937aa92ab358", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_BLINDING_new.pod", + "type": "file", + "name": "BN_BLINDING_new.pod", + "base_name": "BN_BLINDING_new", + "extension": ".pod", + "size": 4900, + "date": "2017-05-25", + "sha1": "994233914934be30d8e26258734a72b2816cbe64", + "md5": "38d8025e0749905f22e5307562837bf1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 117, + "end_line": 119, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 113, + "end_line": 115 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_bn2bin.pod", + "type": "file", + "name": "BN_bn2bin.pod", + "base_name": "BN_bn2bin", + "extension": ".pod", + "size": 4334, + "date": "2017-05-25", + "sha1": "b03c89618dfa2e2d62292d0f6b39cb9489063dec", + "md5": "44408bf62e9a4b05018bbefa38515aa1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 111, + "end_line": 113, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 107, + "end_line": 109 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_cmp.pod", + "type": "file", + "name": "BN_cmp.pod", + "base_name": "BN_cmp", + "extension": ".pod", + "size": 1273, + "date": "2017-05-25", + "sha1": "f1207f51bbb75032c73bbe5c5ffcb0dca45a81ab", + "md5": "b9ee38828022e481da17959ce1237d7e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_copy.pod", + "type": "file", + "name": "BN_copy.pod", + "base_name": "BN_copy", + "extension": ".pod", + "size": 2018, + "date": "2017-05-25", + "sha1": "cee51ea3f96ab7166eb619806ec235bca8dbf990", + "md5": "05c09f3265978be616338453c556b903", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_CTX_new.pod", + "type": "file", + "name": "BN_CTX_new.pod", + "base_name": "BN_CTX_new", + "extension": ".pod", + "size": 2018, + "date": "2017-05-25", + "sha1": "ed1e1f28591be3dcc5179665b654be014965c60d", + "md5": "a990313a22a982c6c1c37219e3b15b99", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_CTX_start.pod", + "type": "file", + "name": "BN_CTX_start.pod", + "base_name": "BN_CTX_start", + "extension": ".pod", + "size": 1672, + "date": "2017-05-25", + "sha1": "c5622067e48f3e64e49c9222df51b1b78f3008b2", + "md5": "1c244614f43274fbebb21a992db40d95", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_generate_prime.pod", + "type": "file", + "name": "BN_generate_prime.pod", + "base_name": "BN_generate_prime", + "extension": ".pod", + "size": 6520, + "date": "2017-05-25", + "sha1": "0ff45779158ea5c60e92f7e90c303b3cb245e6b3", + "md5": "53ed8902787cc17e4cf384bf1582c203", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 189, + "end_line": 191, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 185, + "end_line": 187 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_mod_inverse.pod", + "type": "file", + "name": "BN_mod_inverse.pod", + "base_name": "BN_mod_inverse", + "extension": ".pod", + "size": 1033, + "date": "2017-05-25", + "sha1": "e757320854716a26e238c6b6bcc533f881bc7c64", + "md5": "faceafe99cb8ec92c3f3b15883fc6030", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 36, + "end_line": 38, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 32, + "end_line": 34 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_mod_mul_montgomery.pod", + "type": "file", + "name": "BN_mod_mul_montgomery.pod", + "base_name": "BN_mod_mul_montgomery", + "extension": ".pod", + "size": 2631, + "date": "2017-05-25", + "sha1": "31bdf584ea2493514b2b3223330923062a09d6be", + "md5": "460a6c74c7f0d7ed5475cce0b188536d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_mod_mul_reciprocal.pod", + "type": "file", + "name": "BN_mod_mul_reciprocal.pod", + "base_name": "BN_mod_mul_reciprocal", + "extension": ".pod", + "size": 2268, + "date": "2017-05-25", + "sha1": "0dc2d38e13a7046d0dde241afaf42e76af9bc0bf", + "md5": "524d0c494de9df0e8ca3b117a3ed00f1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_new.pod", + "type": "file", + "name": "BN_new.pod", + "base_name": "BN_new", + "extension": ".pod", + "size": 1592, + "date": "2017-05-25", + "sha1": "79af92e3d671a3f61e1b5e291087838ca722f528", + "md5": "5b93dbe86b5552842b1a788d69a266cd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_num_bytes.pod", + "type": "file", + "name": "BN_num_bytes.pod", + "base_name": "BN_num_bytes", + "extension": ".pod", + "size": 1750, + "date": "2017-05-25", + "sha1": "76b076795fd8325733396b6090712b84cd1d5b93", + "md5": "1e49c5c0ac450ee083210d634ec66a44", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_rand.pod", + "type": "file", + "name": "BN_rand.pod", + "base_name": "BN_rand", + "extension": ".pod", + "size": 2366, + "date": "2017-05-25", + "sha1": "4da202b7ef8d2b76f9134908f7fe0db002313352", + "md5": "707163d1a275fc548a040cc1bdd28702", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 62, + "end_line": 64, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 58, + "end_line": 60 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_set_bit.pod", + "type": "file", + "name": "BN_set_bit.pod", + "base_name": "BN_set_bit", + "extension": ".pod", + "size": 2010, + "date": "2017-05-25", + "sha1": "e0dc5a9ee913cbc87e0688219c63e0814d28edff", + "md5": "b6d1862b7e93fb9f4211ffcd869be11b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_swap.pod", + "type": "file", + "name": "BN_swap.pod", + "base_name": "BN_swap", + "extension": ".pod", + "size": 535, + "date": "2017-05-25", + "sha1": "91701913a95025cb98687dd85474b5db5c491951", + "md5": "3e31d7122a4a3f9a66e1a2a815e4c61f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 21, + "end_line": 23, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BN_zero.pod", + "type": "file", + "name": "BN_zero.pod", + "base_name": "BN_zero", + "extension": ".pod", + "size": 1626, + "date": "2017-05-25", + "sha1": "64a3dd81e50334704998d20d811dcf07d0eb68d9", + "md5": "7a8388cca3422ce5f30410631cdaa498", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 62, + "end_line": 64, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 58, + "end_line": 60 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/BUF_MEM_new.pod", + "type": "file", + "name": "BUF_MEM_new.pod", + "base_name": "BUF_MEM_new", + "extension": ".pod", + "size": 2080, + "date": "2017-05-25", + "sha1": "b4ee27f6de885d1f729c536d74deba15dc363216", + "md5": "98420a18faf50995842a6da63661d6ef", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_add0_cert.pod", + "type": "file", + "name": "CMS_add0_cert.pod", + "base_name": "CMS_add0_cert", + "extension": ".pod", + "size": 2142, + "date": "2017-05-25", + "sha1": "7dc75e42debbf13a3467ce1a71bad08330c38f72", + "md5": "694ce684cfc3a7759e063ee929d4e787", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 68, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 62, + "end_line": 64 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_add1_recipient_cert.pod", + "type": "file", + "name": "CMS_add1_recipient_cert.pod", + "base_name": "CMS_add1_recipient_cert", + "extension": ".pod", + "size": 2543, + "date": "2017-05-25", + "sha1": "42f29c982cddd3c50ed13d2d3ec12dee666c23fe", + "md5": "52823da5f260cf9d7846598a16efd966", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 61, + "end_line": 63, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 57, + "end_line": 59 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_add1_signer.pod", + "type": "file", + "name": "CMS_add1_signer.pod", + "base_name": "CMS_add1_signer", + "extension": ".pod", + "size": 4252, + "date": "2017-05-25", + "sha1": "3a6510438214c3f26e3320aef8e2fdac0b68c788", + "md5": "4a1722467e5fe5af9db0dc22075d3596", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 101, + "end_line": 103, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 97, + "end_line": 99 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_compress.pod", + "type": "file", + "name": "CMS_compress.pod", + "base_name": "CMS_compress", + "extension": ".pod", + "size": 2644, + "date": "2017-05-25", + "sha1": "7acf513f32709d1d8d5ea6fcbb81cfde2807dd3d", + "md5": "61f27f8ee05ce564b355fc87da5f140a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_decrypt.pod", + "type": "file", + "name": "CMS_decrypt.pod", + "base_name": "CMS_decrypt", + "extension": ".pod", + "size": 3097, + "date": "2017-05-25", + "sha1": "f1a98eae25ab581e4c85fad71160c0fae6201c46", + "md5": "1711433bbd1a1d2eb7cce32073d2e441", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_encrypt.pod", + "type": "file", + "name": "CMS_encrypt.pod", + "base_name": "CMS_encrypt", + "extension": ".pod", + "size": 3863, + "date": "2017-05-25", + "sha1": "9381b85927a2b00f82406cade51a87fa1668383b", + "md5": "e33b8c9184a366c33181710e71d5a55a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 99, + "end_line": 101, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 95, + "end_line": 97 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_final.pod", + "type": "file", + "name": "CMS_final.pod", + "base_name": "CMS_final", + "extension": ".pod", + "size": 1304, + "date": "2017-05-25", + "sha1": "be8e85acc97678d0e49b896f3619b0d28b88371d", + "md5": "4f02fa1d25771497b9d772cf146009ed", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 41, + "end_line": 43, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 37, + "end_line": 39 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_get0_RecipientInfos.pod", + "type": "file", + "name": "CMS_get0_RecipientInfos.pod", + "base_name": "CMS_get0_RecipientInfos", + "extension": ".pod", + "size": 6057, + "date": "2017-05-25", + "sha1": "e8f21df58a116d25f5dfed49ea4c3d87fb4fc4a3", + "md5": "db3b2e9f5cd68b52990e28a63f63f5d9", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 125, + "end_line": 127, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 121, + "end_line": 123 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_get0_SignerInfos.pod", + "type": "file", + "name": "CMS_get0_SignerInfos.pod", + "base_name": "CMS_get0_SignerInfos", + "extension": ".pod", + "size": 3166, + "date": "2017-05-25", + "sha1": "3534836b341a00044298ed8e9aa52bb887813c62", + "md5": "ababacd4ec3e61cd4d9efcab650ca2fa", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 84, + "end_line": 86, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 80, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_get0_type.pod", + "type": "file", + "name": "CMS_get0_type.pod", + "base_name": "CMS_get0_type", + "extension": ".pod", + "size": 2718, + "date": "2017-05-25", + "sha1": "7c527a3fe497d75862f03b4092395c9c3cd50692", + "md5": "3c5ca83349f55a0a627d3d8e7f5041db", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_get1_ReceiptRequest.pod", + "type": "file", + "name": "CMS_get1_ReceiptRequest.pod", + "base_name": "CMS_get1_ReceiptRequest", + "extension": ".pod", + "size": 2862, + "date": "2017-05-25", + "sha1": "aff33178d77c77c29dd2a354b602eaae1f0d0c6d", + "md5": "2253f5f334c517cb3708ff1350d2c018", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_sign.pod", + "type": "file", + "name": "CMS_sign.pod", + "base_name": "CMS_sign", + "extension": ".pod", + "size": 5252, + "date": "2017-05-25", + "sha1": "7aa4c95012b85eb3f3b2c7698e1f8ceb378d7b66", + "md5": "7897370398e1ad40b52449a94a1ca12d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 123, + "end_line": 125, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 119, + "end_line": 121 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_sign_receipt.pod", + "type": "file", + "name": "CMS_sign_receipt.pod", + "base_name": "CMS_sign_receipt", + "extension": ".pod", + "size": 1517, + "date": "2017-05-25", + "sha1": "b5736234a5f1c91c08793beea8c6bffc2c95a5d5", + "md5": "b0ab6420a7697e8d59fdd9344208ab33", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_uncompress.pod", + "type": "file", + "name": "CMS_uncompress.pod", + "base_name": "CMS_uncompress", + "extension": ".pod", + "size": 1701, + "date": "2017-05-25", + "sha1": "8582c19043b3f5811a361d4c10a1fb8ebdce1add", + "md5": "c6e9f0c3dcd89c00cb13d837fe328343", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 54, + "end_line": 56, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 50, + "end_line": 52 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_verify.pod", + "type": "file", + "name": "CMS_verify.pod", + "base_name": "CMS_verify", + "extension": ".pod", + "size": 5024, + "date": "2017-05-25", + "sha1": "4f86d105c978dedfd7d23a8e00e3e2da2aaf3784", + "md5": "02b02afb1c41cb38c65cd844a43be28d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 126, + "end_line": 128, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 122, + "end_line": 124 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CMS_verify_receipt.pod", + "type": "file", + "name": "CMS_verify_receipt.pod", + "base_name": "CMS_verify_receipt", + "extension": ".pod", + "size": 1503, + "date": "2017-05-25", + "sha1": "a30dac22d7323a79b92ce7d33d38d6801bbb1fff", + "md5": "7896ec7b5152bf19a3078f17f1e4c7ec", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CONF_modules_free.pod", + "type": "file", + "name": "CONF_modules_free.pod", + "base_name": "CONF_modules_free", + "extension": ".pod", + "size": 1657, + "date": "2017-05-25", + "sha1": "6a2366707d938b272889c156b072685f169ef2ea", + "md5": "51ac0dec4f3475f4d86c10d2810a36e8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CONF_modules_load_file.pod", + "type": "file", + "name": "CONF_modules_load_file.pod", + "base_name": "CONF_modules_load_file", + "extension": ".pod", + "size": 4786, + "date": "2017-05-25", + "sha1": "b36909ac57bbc8121283e4598dc73ba27439e703", + "md5": "4736dee0523e10112d33b4523ed29670", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 130, + "end_line": 132, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 126, + "end_line": 128 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/crypto.pod", + "type": "file", + "name": "crypto.pod", + "base_name": "crypto", + "extension": ".pod", + "size": 1875, + "date": "2017-05-25", + "sha1": "572749e7ebc9d504c6378c9ed1e58b701506b3db", + "md5": "a0a459022d79edf48d779685e25cf30c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CRYPTO_get_ex_new_index.pod", + "type": "file", + "name": "CRYPTO_get_ex_new_index.pod", + "base_name": "CRYPTO_get_ex_new_index", + "extension": ".pod", + "size": 6754, + "date": "2017-05-25", + "sha1": "b8418e205d1a174f5d4c032c6bdf875fff589910", + "md5": "f88a659d7d5e5f246a58dad2da7d256e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 160, + "end_line": 162, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 156, + "end_line": 158 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CRYPTO_THREAD_run_once.pod", + "type": "file", + "name": "CRYPTO_THREAD_run_once.pod", + "base_name": "CRYPTO_THREAD_run_once", + "extension": ".pod", + "size": 4796, + "date": "2017-05-25", + "sha1": "6432a8472e2a796a2426acdb95e2f123cbe2b836", + "md5": "b4a83d5494159fc81b60a1b79c69aea0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 165, + "end_line": 167, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 161, + "end_line": 163 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ct.pod", + "type": "file", + "name": "ct.pod", + "base_name": "ct", + "extension": ".pod", + "size": 1399, + "date": "2017-05-25", + "sha1": "8f69184c8e20710f25378b03e9cf1e4abd0b2e64", + "md5": "725c4f30597a6a7ac05bb556953d7df5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CT_POLICY_EVAL_CTX_new.pod", + "type": "file", + "name": "CT_POLICY_EVAL_CTX_new.pod", + "base_name": "CT_POLICY_EVAL_CTX_new", + "extension": ".pod", + "size": 3881, + "date": "2017-05-25", + "sha1": "6f9c1396ce15a5ac8165da10d0016b6afae8e0a0", + "md5": "7058a1fa1293575ed89b7a1d656784d0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 106, + "end_line": 108, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 102, + "end_line": 104 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CTLOG_new.pod", + "type": "file", + "name": "CTLOG_new.pod", + "base_name": "CTLOG_new", + "extension": ".pod", + "size": 2446, + "date": "2017-05-25", + "sha1": "5641564739a6a0a197cfbba508121d39b42ada3e", + "md5": "3551db17e684c9b5e49af598f9f31798", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CTLOG_STORE_get0_log_by_id.pod", + "type": "file", + "name": "CTLOG_STORE_get0_log_by_id.pod", + "base_name": "CTLOG_STORE_get0_log_by_id", + "extension": ".pod", + "size": 1344, + "date": "2017-05-25", + "sha1": "678b9b1a5a60e050099c1ae199eaaaf31cf2a3a3", + "md5": "870368847f0753ed425af9fb3e75f1b7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 44, + "end_line": 46, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 40, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/CTLOG_STORE_new.pod", + "type": "file", + "name": "CTLOG_STORE_new.pod", + "base_name": "CTLOG_STORE_new", + "extension": ".pod", + "size": 2438, + "date": "2017-05-25", + "sha1": "2075ec165d24524adb206bb12269783c8d8a9340", + "md5": "f3a016f8b35271ddf9e302313e40a009", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/d2i_DHparams.pod", + "type": "file", + "name": "d2i_DHparams.pod", + "base_name": "d2i_DHparams", + "extension": ".pod", + "size": 843, + "date": "2017-05-25", + "sha1": "ce7e4bb1c457f855749f2d46e50b493bd884b230", + "md5": "7c9df4d153cfd4c1df0975681ea5ba63", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 30, + "end_line": 32, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 26, + "end_line": 28 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/d2i_Netscape_RSA.pod", + "type": "file", + "name": "d2i_Netscape_RSA.pod", + "base_name": "d2i_Netscape_RSA", + "extension": ".pod", + "size": 1004, + "date": "2017-05-25", + "sha1": "c0b5b00118152459fba0d16565a57607d20db831", + "md5": "172f2f1a395e9034cdf2a082fa2040a4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 33, + "end_line": 35, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 29, + "end_line": 31 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/d2i_PKCS8PrivateKey_bio.pod", + "type": "file", + "name": "d2i_PKCS8PrivateKey_bio.pod", + "base_name": "d2i_PKCS8PrivateKey_bio", + "extension": ".pod", + "size": 2229, + "date": "2017-05-25", + "sha1": "1f6adfa35e859cbb8fb1956c262b50bfe4b690aa", + "md5": "2d47262babc7155111773f0ff4cc3d5e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/d2i_PrivateKey.pod", + "type": "file", + "name": "d2i_PrivateKey.pod", + "base_name": "d2i_PrivateKey", + "extension": ".pod", + "size": 2453, + "date": "2017-05-25", + "sha1": "72de8492c9ed10790e7edbe19e22e48bf3932f3d", + "md5": "be9c0a396ec495de4236f20db2ce3af4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 68, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 62, + "end_line": 64 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/d2i_X509.pod", + "type": "file", + "name": "d2i_X509.pod", + "base_name": "d2i_X509", + "extension": ".pod", + "size": 14356, + "date": "2017-05-25", + "sha1": "8d700bfd2adcff97643e7981b4653274c2599eff", + "md5": "e1a1962bcf44620ff5aff3948dcf3f9f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 593, + "end_line": 595, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 589, + "end_line": 591 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DEFINE_STACK_OF.pod", + "type": "file", + "name": "DEFINE_STACK_OF.pod", + "base_name": "DEFINE_STACK_OF", + "extension": ".pod", + "size": 9951, + "date": "2017-05-25", + "sha1": "96f168b80d61bad6c00a1a9b7e4c4deb57e56ea9", + "md5": "ec82c5504f0b279801dea301a0939ce2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 236, + "end_line": 238, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 232, + "end_line": 234 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/des_modes.pod", + "type": "file", + "name": "des_modes.pod", + "base_name": "des_modes", + "extension": ".pod", + "size": 6208, + "date": "2017-05-25", + "sha1": "8d3aaeafcfa64e7797eebfaa0f0c72aa5c042bed", + "md5": "6a94fe6dd422ee8486e02a348161164f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 255, + "end_line": 257, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 251, + "end_line": 253 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DES_random_key.pod", + "type": "file", + "name": "DES_random_key.pod", + "base_name": "DES_random_key", + "extension": ".pod", + "size": 14021, + "date": "2017-05-25", + "sha1": "fb85ecdc3daeadc3c934f869d4d734121b22b264", + "md5": "23015fee94b0b72fa9446584bf254e36", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 305, + "end_line": 305, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 301, + "end_line": 303 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DH_generate_key.pod", + "type": "file", + "name": "DH_generate_key.pod", + "base_name": "DH_generate_key", + "extension": ".pod", + "size": 1587, + "date": "2017-05-25", + "sha1": "5377ac3bca3a1fe1463d1179a552fb7a116f2aec", + "md5": "59975500bd8fe2bc70a0e4266fe37dc4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DH_generate_parameters.pod", + "type": "file", + "name": "DH_generate_parameters.pod", + "base_name": "DH_generate_parameters", + "extension": ".pod", + "size": 3724, + "date": "2017-05-25", + "sha1": "a4fa399175f18f0717654b93d55a018b789d09e9", + "md5": "7552150b6313a0bb15fac669fe13a46d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 129, + "end_line": 131, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 125, + "end_line": 127 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DH_get0_pqg.pod", + "type": "file", + "name": "DH_get0_pqg.pod", + "base_name": "DH_get0_pqg", + "extension": ".pod", + "size": 4821, + "date": "2017-05-25", + "sha1": "ea1b0241a4c55b80878e1a52a308c02c043a3c61", + "md5": "020df504514a29ea78efa092975daa43", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DH_get_1024_160.pod", + "type": "file", + "name": "DH_get_1024_160.pod", + "base_name": "DH_get_1024_160", + "extension": ".pod", + "size": 2265, + "date": "2017-05-25", + "sha1": "ca159e8853bba15987d74c3c20828cf5a8392d6b", + "md5": "12fd1850ffe1a8f4d7f30e7498e35152", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DH_meth_new.pod", + "type": "file", + "name": "DH_meth_new.pod", + "base_name": "DH_meth_new", + "extension": ".pod", + "size": 7299, + "date": "2017-05-25", + "sha1": "23b068fc4762820c07004e9b0ce9be493fd668ec", + "md5": "174e7ceb1c3e776fd41700b589388069", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 151, + "end_line": 153, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 147, + "end_line": 149 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DH_new.pod", + "type": "file", + "name": "DH_new.pod", + "base_name": "DH_new", + "extension": ".pod", + "size": 1060, + "date": "2017-05-25", + "sha1": "f3f4118ba0a09d1856709b5d10468549649ccf47", + "md5": "92bfbf74a04c71e3c619409212310305", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 41, + "end_line": 43, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 37, + "end_line": 39 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DH_set_method.pod", + "type": "file", + "name": "DH_set_method.pod", + "base_name": "DH_set_method", + "extension": ".pod", + "size": 3072, + "date": "2017-05-25", + "sha1": "6baadc453c7eef24f0f5440562eccfdc44d79761", + "md5": "543f32f99c7a9cfb66ea971e2003dbd8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 80, + "end_line": 82, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 76, + "end_line": 78 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DH_size.pod", + "type": "file", + "name": "DH_size.pod", + "base_name": "DH_size", + "extension": ".pod", + "size": 949, + "date": "2017-05-25", + "sha1": "f5a273d5704845834c29077f4ba504c07f29a99b", + "md5": "cec57d388d89dc3e5e20ae5251038127", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_do_sign.pod", + "type": "file", + "name": "DSA_do_sign.pod", + "base_name": "DSA_do_sign", + "extension": ".pod", + "size": 1413, + "date": "2017-05-25", + "sha1": "fb7f5e82a2c1c5d9dfc618d88ce11d31236dd3b7", + "md5": "68914e73b2a20fdee8873cdaf5c91e68", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_dup_DH.pod", + "type": "file", + "name": "DSA_dup_DH.pod", + "base_name": "DSA_dup_DH", + "extension": ".pod", + "size": 940, + "date": "2017-05-25", + "sha1": "7e7dde65579ebfc2906313767e8b7aefd8fdaf2b", + "md5": "16e06a5639f8aceb1ddf7027a2572d34", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 36, + "end_line": 38, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 32, + "end_line": 34 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_generate_key.pod", + "type": "file", + "name": "DSA_generate_key.pod", + "base_name": "DSA_generate_key", + "extension": ".pod", + "size": 927, + "date": "2017-05-25", + "sha1": "d2d7acced284760830a82d3e098782c95037c5bd", + "md5": "240b1cb08fbc74e7e4d5e2ca75dbe2c1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 34, + "end_line": 36, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_generate_parameters.pod", + "type": "file", + "name": "DSA_generate_parameters.pod", + "base_name": "DSA_generate_parameters", + "extension": ".pod", + "size": 3805, + "date": "2017-05-25", + "sha1": "7a363457b7bb10b19d095897016a541c31f06554", + "md5": "3d9992187349c79245399b6cb9009776", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 117, + "end_line": 119, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 113, + "end_line": 115 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_get0_pqg.pod", + "type": "file", + "name": "DSA_get0_pqg.pod", + "base_name": "DSA_get0_pqg", + "extension": ".pod", + "size": 4353, + "date": "2017-05-25", + "sha1": "da38f63dd82e73f300dc862f079f5854aeaf6f52", + "md5": "8cdc42ee53b82be2f30ff8ddfbc52964", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 97, + "end_line": 99, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 93, + "end_line": 95 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_meth_new.pod", + "type": "file", + "name": "DSA_meth_new.pod", + "base_name": "DSA_meth_new", + "extension": ".pod", + "size": 9313, + "date": "2017-05-25", + "sha1": "21f2cb8fdb0647245002fd142c74b95aa637edcb", + "md5": "54a46ba0487b7d5fe1db78ff540bcf00", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 188, + "end_line": 190, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 184, + "end_line": 186 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_new.pod", + "type": "file", + "name": "DSA_new.pod", + "base_name": "DSA_new", + "extension": ".pod", + "size": 1129, + "date": "2017-05-25", + "sha1": "004c6b94660ea19f219ade3b550f034b5ea524c7", + "md5": "a4b1f870850a1d195ae1bc84c4955225", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 43, + "end_line": 45, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 39, + "end_line": 41 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_set_method.pod", + "type": "file", + "name": "DSA_set_method.pod", + "base_name": "DSA_set_method", + "extension": ".pod", + "size": 3097, + "date": "2017-05-25", + "sha1": "ce1cf045bedcac38f19b07eaa5e04722823226eb", + "md5": "cdd2947b289d38b88173ecb076644048", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 80, + "end_line": 82, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 76, + "end_line": 78 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_SIG_new.pod", + "type": "file", + "name": "DSA_SIG_new.pod", + "base_name": "DSA_SIG_new", + "extension": ".pod", + "size": 1706, + "date": "2017-05-25", + "sha1": "82927f13714bffe4f34cf21c8016c8dce2ccc15d", + "md5": "b877016678a4acfe52db81a081df504b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_sign.pod", + "type": "file", + "name": "DSA_sign.pod", + "base_name": "DSA_sign", + "extension": ".pod", + "size": 2255, + "date": "2017-05-25", + "sha1": "38e79c7983085e9cfd2ee5dc8f96bf9b9f1df039", + "md5": "247bdca019696fec41ffec563ca81c2c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/DSA_size.pod", + "type": "file", + "name": "DSA_size.pod", + "base_name": "DSA_size", + "extension": ".pod", + "size": 1014, + "date": "2017-05-25", + "sha1": "3bdc2869d157e30f08d308a8812b37783a3bf932", + "md5": "b2117e269e0e78913241863ce085eebd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EC_GFp_simple_method.pod", + "type": "file", + "name": "EC_GFp_simple_method.pod", + "base_name": "EC_GFp_simple_method", + "extension": ".pod", + "size": 3057, + "date": "2017-05-25", + "sha1": "28866f37c28262fd637edff31bb4fc47175123b3", + "md5": "db6d6ceca9746c9539586215550b780a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EC_GROUP_copy.pod", + "type": "file", + "name": "EC_GROUP_copy.pod", + "base_name": "EC_GROUP_copy", + "extension": ".pod", + "size": 11105, + "date": "2017-05-25", + "sha1": "5d11b1838b6e362b90ba41111ad7db706e52aa5b", + "md5": "42502f9ed5b5f0e2f6bd4bed3207537f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 201, + "end_line": 203, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 197, + "end_line": 199 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EC_GROUP_new.pod", + "type": "file", + "name": "EC_GROUP_new.pod", + "base_name": "EC_GROUP_new", + "extension": ".pod", + "size": 5943, + "date": "2017-05-25", + "sha1": "ca466e14912ab8b073f0340ec33285060abbeb78", + "md5": "c8232e7edbb7dddef851e1a7d5970b25", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 115, + "end_line": 117, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 111, + "end_line": 113 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EC_KEY_get_enc_flags.pod", + "type": "file", + "name": "EC_KEY_get_enc_flags.pod", + "base_name": "EC_KEY_get_enc_flags", + "extension": ".pod", + "size": 2067, + "date": "2017-05-25", + "sha1": "088f038a0a80875cfb80dc07e6abfa7c7bedbaf7", + "md5": "5fab2f3f637e439a3ea4925ad39a3af3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 54, + "end_line": 56, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 50, + "end_line": 52 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EC_KEY_new.pod", + "type": "file", + "name": "EC_KEY_new.pod", + "base_name": "EC_KEY_new", + "extension": ".pod", + "size": 8106, + "date": "2017-05-25", + "sha1": "4c66bbb5cb16ed97b64d7fc52a51ad2a8ec28ac8", + "md5": "57b1f74b051069e324634424f8da9cad", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 178, + "end_line": 180, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 174, + "end_line": 176 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EC_POINT_add.pod", + "type": "file", + "name": "EC_POINT_add.pod", + "base_name": "EC_POINT_add", + "extension": ".pod", + "size": 4003, + "date": "2017-05-25", + "sha1": "32ef984a43c8f460df531912d91929e2406b2073", + "md5": "07315a17c84089f267c1f4887fc75052", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 75, + "end_line": 77, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 71, + "end_line": 73 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EC_POINT_new.pod", + "type": "file", + "name": "EC_POINT_new.pod", + "base_name": "EC_POINT_new", + "extension": ".pod", + "size": 9750, + "date": "2017-05-25", + "sha1": "d68a041c77f596f6b1e026ef8ed1cfc68ba5c4db", + "md5": "2312e1f78d1b235681cdcd3217c0f6f1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 191, + "end_line": 193, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 187, + "end_line": 189 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ECDSA_SIG_new.pod", + "type": "file", + "name": "ECDSA_SIG_new.pod", + "base_name": "ECDSA_SIG_new", + "extension": ".pod", + "size": 7683, + "date": "2017-05-25", + "sha1": "155d0a2f3a3718438d4dee9fe5c5e1ea8d4209cf", + "md5": "c7b11a7c151b7220a086dc4a806ffb4b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 202, + "end_line": 204, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 198, + "end_line": 200 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ECPKParameters_print.pod", + "type": "file", + "name": "ECPKParameters_print.pod", + "base_name": "ECPKParameters_print", + "extension": ".pod", + "size": 1281, + "date": "2017-05-25", + "sha1": "932f47a25bbbff1beadda4ce6ffa46422d81e2bb", + "md5": "60e5ccec4d3c8ba3e136fd4db6a95b49", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ENGINE_add.pod", + "type": "file", + "name": "ENGINE_add.pod", + "base_name": "ENGINE_add", + "extension": ".pod", + "size": 30300, + "date": "2017-05-25", + "sha1": "a43bfdb73ed379bd9b69e6246213d11283bd9eaf", + "md5": "b04211d7a4b03fc72f66590c59a3b078", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 606, + "end_line": 606, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 602, + "end_line": 604 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_clear_error.pod", + "type": "file", + "name": "ERR_clear_error.pod", + "base_name": "ERR_clear_error", + "extension": ".pod", + "size": 652, + "date": "2017-05-25", + "sha1": "cc82b83a4eef6722e7db21f34543554117519bc8", + "md5": "f17f58713831123e04ea41f4b78a454b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 29, + "end_line": 31, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 25, + "end_line": 27 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_error_string.pod", + "type": "file", + "name": "ERR_error_string.pod", + "base_name": "ERR_error_string", + "extension": ".pod", + "size": 2345, + "date": "2017-05-25", + "sha1": "243aa33ea4cec5041aa2405a9fbd1f0e3f74293c", + "md5": "eb7ba75145ee31008d8b5feb2637e85b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_get_error.pod", + "type": "file", + "name": "ERR_get_error.pod", + "base_name": "ERR_get_error", + "extension": ".pod", + "size": 2688, + "date": "2017-05-25", + "sha1": "cdfa4bed5bb6e0cca3ac46c01895d87b1e42365f", + "md5": "9c422c823d5e70cd0020d5d156049070", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_GET_LIB.pod", + "type": "file", + "name": "ERR_GET_LIB.pod", + "base_name": "ERR_GET_LIB", + "extension": ".pod", + "size": 1811, + "date": "2017-05-25", + "sha1": "014bc25114fca70e10804de466ab7bdcc65dc758", + "md5": "3231d3e25bfd841844f684207502b631", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 61, + "end_line": 63, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 57, + "end_line": 59 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_load_crypto_strings.pod", + "type": "file", + "name": "ERR_load_crypto_strings.pod", + "base_name": "ERR_load_crypto_strings", + "extension": ".pod", + "size": 1607, + "date": "2017-05-25", + "sha1": "98f83b4579cb582813dd76e288280a97430e93dd", + "md5": "9911b2bdc34e467cdfbbd3d22f7ebb85", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_load_strings.pod", + "type": "file", + "name": "ERR_load_strings.pod", + "base_name": "ERR_load_strings", + "extension": ".pod", + "size": 1398, + "date": "2017-05-25", + "sha1": "16eeb7809367b4d002dfc539e939856248e78465", + "md5": "c1d3199f16c05c7a012b090f2a88b136", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_print_errors.pod", + "type": "file", + "name": "ERR_print_errors.pod", + "base_name": "ERR_print_errors", + "extension": ".pod", + "size": 1726, + "date": "2017-05-25", + "sha1": "fb602f695d0ccecec72466745a7531aa924d5982", + "md5": "fc6e31c3a087d67a0948a0906319eb38", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 57, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 51, + "end_line": 53 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_put_error.pod", + "type": "file", + "name": "ERR_put_error.pod", + "base_name": "ERR_put_error", + "extension": ".pod", + "size": 2503, + "date": "2017-05-25", + "sha1": "b63c16d844a8f3a8e142671121caf58df2eb124e", + "md5": "386d52d2361f030c90cf390b9b9a3040", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_remove_state.pod", + "type": "file", + "name": "ERR_remove_state.pod", + "base_name": "ERR_remove_state", + "extension": ".pod", + "size": 1277, + "date": "2017-05-25", + "sha1": "c74f32e6b6e3885b171cf3fcb1b94aa79a9897de", + "md5": "533daa259ffea99d6462a81c4edf1dfc", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/ERR_set_mark.pod", + "type": "file", + "name": "ERR_set_mark.pod", + "base_name": "ERR_set_mark", + "extension": ".pod", + "size": 995, + "date": "2017-05-25", + "sha1": "a5e6a0a7eb48473b85bfb26b8b825f8cd093d4ef", + "md5": "8e74130db564de182840ff85b0bb46af", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 34, + "end_line": 36, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/evp.pod", + "type": "file", + "name": "evp.pod", + "base_name": "evp", + "extension": ".pod", + "size": 4221, + "date": "2017-05-25", + "sha1": "1c9c430a397ad37cc499c0a8e5ef0d452a6198cd", + "md5": "5935c7523efc27cea1efe75c532290ec", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 111, + "end_line": 113, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 107, + "end_line": 109 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_BytesToKey.pod", + "type": "file", + "name": "EVP_BytesToKey.pod", + "base_name": "EVP_BytesToKey", + "extension": ".pod", + "size": 2611, + "date": "2017-05-25", + "sha1": "db6ae058de424d6e4ced1af35f3c7ee5f4792cbe", + "md5": "b004fa115c37f1d63b79daadfc38f07a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 73, + "end_line": 75, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 69, + "end_line": 71 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_CIPHER_CTX_get_cipher_data.pod", + "type": "file", + "name": "EVP_CIPHER_CTX_get_cipher_data.pod", + "base_name": "EVP_CIPHER_CTX_get_cipher_data", + "extension": ".pod", + "size": 1771, + "date": "2017-05-25", + "sha1": "29cc2f472a71bee07d92bf26f23968ba00a99603", + "md5": "b0460fb26947879a3061e1111abe8d09", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_CIPHER_meth_new.pod", + "type": "file", + "name": "EVP_CIPHER_meth_new.pod", + "base_name": "EVP_CIPHER_meth_new", + "extension": ".pod", + "size": 9249, + "date": "2017-05-25", + "sha1": "b8e73bfa478ebd47802093ed61f1341f34d9dcd1", + "md5": "be8916ba4564ec9a42fd1367ee364bbe", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 233, + "end_line": 235, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 229, + "end_line": 231 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_DigestInit.pod", + "type": "file", + "name": "EVP_DigestInit.pod", + "base_name": "EVP_DigestInit", + "extension": ".pod", + "size": 9333, + "date": "2017-05-25", + "sha1": "3bb0fad7086ead4414eff5c96113c776d98dfa0d", + "md5": "ef88215496dbeedbaba4a921c977a72b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 254, + "end_line": 256, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 250, + "end_line": 252 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_DigestSignInit.pod", + "type": "file", + "name": "EVP_DigestSignInit.pod", + "base_name": "EVP_DigestSignInit", + "extension": ".pod", + "size": 3745, + "date": "2017-05-25", + "sha1": "0f78aaa1790094ad0de639ac91fa43d571efa77e", + "md5": "7a54577295f16e007b17ffa70e9d5df4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_DigestVerifyInit.pod", + "type": "file", + "name": "EVP_DigestVerifyInit.pod", + "base_name": "EVP_DigestVerifyInit", + "extension": ".pod", + "size": 3405, + "date": "2017-05-25", + "sha1": "1c6d3e5febb54e1822e3a7bd5650177e27302975", + "md5": "3ceece8cbe6359edb0d5e2e432224c5f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 86, + "end_line": 88, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 82, + "end_line": 84 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_EncodeInit.pod", + "type": "file", + "name": "EVP_EncodeInit.pod", + "base_name": "EVP_EncodeInit", + "extension": ".pod", + "size": 8205, + "date": "2017-05-25", + "sha1": "f9d20bba8c5643a1bfd831fd08f73a799d0e8c8b", + "md5": "84444b484a5d36f93cf2e87071f1acd1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 157, + "end_line": 159, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 153, + "end_line": 155 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_EncryptInit.pod", + "type": "file", + "name": "EVP_EncryptInit.pod", + "base_name": "EVP_EncryptInit", + "extension": ".pod", + "size": 28487, + "date": "2017-05-25", + "sha1": "6a4328836986a1bea7758bb72ba5f0acdbf1d22f", + "md5": "0c8b4cb485b31691cfdd25c2d07a1ba0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 657, + "end_line": 659, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 653, + "end_line": 655 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_MD_meth_new.pod", + "type": "file", + "name": "EVP_MD_meth_new.pod", + "base_name": "EVP_MD_meth_new", + "extension": ".pod", + "size": 6936, + "date": "2017-05-25", + "sha1": "ddcc8d60fcf2f88127ba525c88a723b367522a5b", + "md5": "3651944cb6e47cc0dd97541ef8a5410f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 165, + "end_line": 167, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 161, + "end_line": 163 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_OpenInit.pod", + "type": "file", + "name": "EVP_OpenInit.pod", + "base_name": "EVP_OpenInit", + "extension": ".pod", + "size": 2257, + "date": "2017-05-25", + "sha1": "06337cc81a0cd403449d50988d29a2b3cdf8ca9a", + "md5": "f76edd1bcd3354df56f4ac89d2f7469b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_cmp.pod", + "type": "file", + "name": "EVP_PKEY_cmp.pod", + "base_name": "EVP_PKEY_cmp", + "extension": ".pod", + "size": 2440, + "date": "2017-05-25", + "sha1": "9ad20acf6019e4b3bbf45a6783cae49fe72a3f8b", + "md5": "0782f2b21752b6101b62f0a02f43d61a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 68, + "end_line": 70, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 64, + "end_line": 66 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_CTX_ctrl.pod", + "type": "file", + "name": "EVP_PKEY_CTX_ctrl.pod", + "base_name": "EVP_PKEY_CTX_ctrl", + "extension": ".pod", + "size": 6814, + "date": "2017-05-25", + "sha1": "bf711c2046990fdf9609447ab43d69d8e20d8b47", + "md5": "bf3d5887106699f784af054147ddb70e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 149, + "end_line": 151, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 145, + "end_line": 147 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_CTX_new.pod", + "type": "file", + "name": "EVP_PKEY_CTX_new.pod", + "base_name": "EVP_PKEY_CTX_new", + "extension": ".pod", + "size": 1908, + "date": "2017-05-25", + "sha1": "ae09b93690f3d3a4f923b071cf138a56ba7aa943", + "md5": "7f9e0818a46c7ae99b497f45cb48c026", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_CTX_set_hkdf_md.pod", + "type": "file", + "name": "EVP_PKEY_CTX_set_hkdf_md.pod", + "base_name": "EVP_PKEY_CTX_set_hkdf_md", + "extension": ".pod", + "size": 4174, + "date": "2017-05-25", + "sha1": "88c2bb0ed450443abf0f7d16c45f08c48889c888", + "md5": "add035aa323921471952071f2afd1a33", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 123, + "end_line": 125, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 119, + "end_line": 121 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_CTX_set_tls1_prf_md.pod", + "type": "file", + "name": "EVP_PKEY_CTX_set_tls1_prf_md.pod", + "base_name": "EVP_PKEY_CTX_set_tls1_prf_md", + "extension": ".pod", + "size": 3597, + "date": "2017-05-25", + "sha1": "aee9e3d60b06969dfe20cb69d6837786941f6a84", + "md5": "4d88f199007d0b99aac887eba3460f9d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_decrypt.pod", + "type": "file", + "name": "EVP_PKEY_decrypt.pod", + "base_name": "EVP_PKEY_decrypt", + "extension": ".pod", + "size": 2941, + "date": "2017-05-25", + "sha1": "f9a65c104009d7e04d6f6b1d693dc07a7c41a744", + "md5": "a0ef380dc530dbeb71389cade980fa77", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 97, + "end_line": 99, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 93, + "end_line": 95 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_derive.pod", + "type": "file", + "name": "EVP_PKEY_derive.pod", + "base_name": "EVP_PKEY_derive", + "extension": ".pod", + "size": 2877, + "date": "2017-05-25", + "sha1": "aaf93da2b7d72a25a0d46b3270f821fbce5e7e47", + "md5": "4fdcbe4fcb26b533c320b410cf36ca05", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 97, + "end_line": 99, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 93, + "end_line": 95 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_encrypt.pod", + "type": "file", + "name": "EVP_PKEY_encrypt.pod", + "base_name": "EVP_PKEY_encrypt", + "extension": ".pod", + "size": 3199, + "date": "2017-05-25", + "sha1": "495932ef3b6f5c9a204778f3fc78c8890657c08e", + "md5": "8cb59147196fc5bb01d3986d2ca8187a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_get_default_digest_nid.pod", + "type": "file", + "name": "EVP_PKEY_get_default_digest_nid.pod", + "base_name": "EVP_PKEY_get_default_digest_nid", + "extension": ".pod", + "size": 1343, + "date": "2017-05-25", + "sha1": "5ee8db867eb0812cd2a82f00b155724952f8f626", + "md5": "91c5139d12a13eba32cf621dd8bfd2e8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_keygen.pod", + "type": "file", + "name": "EVP_PKEY_keygen.pod", + "base_name": "EVP_PKEY_keygen", + "extension": ".pod", + "size": 5680, + "date": "2017-05-25", + "sha1": "332d0f4d91816688ff4e01253441f1f3eaeb2478", + "md5": "34bb01a86a33936cde0eb576c67d244b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 170, + "end_line": 172, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 166, + "end_line": 168 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_new.pod", + "type": "file", + "name": "EVP_PKEY_new.pod", + "base_name": "EVP_PKEY_new", + "extension": ".pod", + "size": 1660, + "date": "2017-05-25", + "sha1": "1fb4db3ea675ab2f33e20bdb2d1adf32b859ebff", + "md5": "9a3e04a9cde02f16d5386761079225bf", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_print_private.pod", + "type": "file", + "name": "EVP_PKEY_print_private.pod", + "base_name": "EVP_PKEY_print_private", + "extension": ".pod", + "size": 2033, + "date": "2017-05-25", + "sha1": "d836a6eca6e738e7f9ac73a101151e229affa073", + "md5": "eadfe9a91ceb5d57f3c3ff4439e92ace", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_set1_RSA.pod", + "type": "file", + "name": "EVP_PKEY_set1_RSA.pod", + "base_name": "EVP_PKEY_set1_RSA", + "extension": ".pod", + "size": 4577, + "date": "2017-05-25", + "sha1": "be205209d8dae2db95afcb207ff0abf6459377c9", + "md5": "221fc79da19612596965963d91286211", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 115, + "end_line": 117, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 111, + "end_line": 113 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_sign.pod", + "type": "file", + "name": "EVP_PKEY_sign.pod", + "base_name": "EVP_PKEY_sign", + "extension": ".pod", + "size": 3437, + "date": "2017-05-25", + "sha1": "9d52582ab273c73f786ef590bc9a4d979e6c1223", + "md5": "0dd426f0bd4ec7c7475c1a5fb89dad9b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 110, + "end_line": 112, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 106, + "end_line": 108 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_verify.pod", + "type": "file", + "name": "EVP_PKEY_verify.pod", + "base_name": "EVP_PKEY_verify", + "extension": ".pod", + "size": 3067, + "date": "2017-05-25", + "sha1": "0102906ad9622101f36fb56cf5de9bce4670363f", + "md5": "32dac640e3e9f5c5c4c03cfd33ea0c2a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 95, + "end_line": 97, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 91, + "end_line": 93 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_PKEY_verify_recover.pod", + "type": "file", + "name": "EVP_PKEY_verify_recover.pod", + "base_name": "EVP_PKEY_verify_recover", + "extension": ".pod", + "size": 3538, + "date": "2017-05-25", + "sha1": "297dab14db199ab33dbc4055bb11ba9cb70859b6", + "md5": "f0759c350d790a121e4fc88257160134", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_SealInit.pod", + "type": "file", + "name": "EVP_SealInit.pod", + "base_name": "EVP_SealInit", + "extension": ".pod", + "size": 3274, + "date": "2017-05-25", + "sha1": "6996bf59164326b52703dcfe6f5e26666dadff76", + "md5": "dd56bd4f371577d96fbc555bdb8ca4d0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_SignInit.pod", + "type": "file", + "name": "EVP_SignInit.pod", + "base_name": "EVP_SignInit", + "extension": ".pod", + "size": 3867, + "date": "2017-05-25", + "sha1": "cc8159fe4e1dda153f9555ad176bdf0ed58516d4", + "md5": "8b8f6cfb0bbbb75950d6439eb2ca17f3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 105, + "end_line": 107, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 101, + "end_line": 103 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/EVP_VerifyInit.pod", + "type": "file", + "name": "EVP_VerifyInit.pod", + "base_name": "EVP_VerifyInit", + "extension": ".pod", + "size": 3355, + "date": "2017-05-25", + "sha1": "3bc3ac416cc2891b226f84b1daf8bad323885d52", + "md5": "53c2aa45928e32d0059c0ee002a20ddd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 94, + "end_line": 96, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 90, + "end_line": 92 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/HMAC.pod", + "type": "file", + "name": "HMAC.pod", + "base_name": "HMAC", + "extension": ".pod", + "size": 4940, + "date": "2017-05-25", + "sha1": "4d8797153be8bda6c88476f2753dd2c45734539b", + "md5": "21fcf53ca90290e1dff9c52f60bfc36a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 146, + "end_line": 148, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 142, + "end_line": 144 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/i2d_CMS_bio_stream.pod", + "type": "file", + "name": "i2d_CMS_bio_stream.pod", + "base_name": "i2d_CMS_bio_stream", + "extension": ".pod", + "size": 1204, + "date": "2017-05-25", + "sha1": "dd1772e81b813f4923087c5d2f6e02db785e0459", + "md5": "4b99300771954fcfa6ddc74c8d351e7c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/i2d_PKCS7_bio_stream.pod", + "type": "file", + "name": "i2d_PKCS7_bio_stream.pod", + "base_name": "i2d_PKCS7_bio_stream", + "extension": ".pod", + "size": 1201, + "date": "2017-05-25", + "sha1": "7cb8bb600ba8789dd508c07510a2a4094441f6c9", + "md5": "531ba0e15bc4399370e6da01befedf67", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/i2d_re_X509_tbs.pod", + "type": "file", + "name": "i2d_re_X509_tbs.pod", + "base_name": "i2d_re_X509_tbs", + "extension": ".pod", + "size": 2825, + "date": "2017-05-25", + "sha1": "deace8a3e86718de9acb475390c8fe5eadb6d12e", + "md5": "439ab401a7e1bd1a7de4111fe0287915", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/MD5.pod", + "type": "file", + "name": "MD5.pod", + "base_name": "MD5", + "extension": ".pod", + "size": 2916, + "date": "2017-05-25", + "sha1": "f70cc6a3affce700e3241649315a95c632e412d7", + "md5": "0d6568f6f066edf29b49894f9ad60ce6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 96, + "end_line": 98, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 92, + "end_line": 94 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/MDC2_Init.pod", + "type": "file", + "name": "MDC2_Init.pod", + "base_name": "MDC2_Init", + "extension": ".pod", + "size": 1872, + "date": "2017-05-25", + "sha1": "5759cca10de3b691963f279405dec9460c3079b2", + "md5": "ee034a52b18c30f0ea415a7618a46342", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/o2i_SCT_LIST.pod", + "type": "file", + "name": "o2i_SCT_LIST.pod", + "base_name": "o2i_SCT_LIST", + "extension": ".pod", + "size": 1333, + "date": "2017-05-25", + "sha1": "33f0dcdafa49c72c87a55b57f4f734daa5ab7bf0", + "md5": "7ab375b52d490462c4466e259f103630", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 43, + "end_line": 45, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 39, + "end_line": 41 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OBJ_nid2obj.pod", + "type": "file", + "name": "OBJ_nid2obj.pod", + "base_name": "OBJ_nid2obj", + "extension": ".pod", + "size": 6933, + "date": "2017-05-25", + "sha1": "b37ffa5c742bab6d7b4845c6830486093e38d236", + "md5": "07c9bfe2ab8a74d4801ba6812901aec5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 193, + "end_line": 195, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 189, + "end_line": 191 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OCSP_cert_to_id.pod", + "type": "file", + "name": "OCSP_cert_to_id.pod", + "base_name": "OCSP_cert_to_id", + "extension": ".pod", + "size": 2851, + "date": "2017-05-25", + "sha1": "0a5a917be2b76a11ef3bb8e9269d9fa60001dc88", + "md5": "b6ef374fd625668f361a9120778e359d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 84, + "end_line": 86, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 80, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OCSP_request_add1_nonce.pod", + "type": "file", + "name": "OCSP_request_add1_nonce.pod", + "base_name": "OCSP_request_add1_nonce", + "extension": ".pod", + "size": 3096, + "date": "2017-05-25", + "sha1": "e85be8d59e5b93de8e5fb631530f57fc3c206720", + "md5": "35d1834f31c69e1a6bea913a9ed10d47", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OCSP_REQUEST_new.pod", + "type": "file", + "name": "OCSP_REQUEST_new.pod", + "base_name": "OCSP_REQUEST_new", + "extension": ".pod", + "size": 3509, + "date": "2017-05-25", + "sha1": "2c627ac04912031d109bcf60d2383e0024443a48", + "md5": "4de20822da05d1337122c6097fad70ca", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 113, + "end_line": 115, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 109, + "end_line": 111 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OCSP_resp_find_status.pod", + "type": "file", + "name": "OCSP_resp_find_status.pod", + "base_name": "OCSP_resp_find_status", + "extension": ".pod", + "size": 5615, + "date": "2017-05-25", + "sha1": "523a76866054e26e2e6d2960bcbe9029c28888aa", + "md5": "342740a2dd43ff9df0b74e7e0110b92a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 134, + "end_line": 136, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 130, + "end_line": 132 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OCSP_response_status.pod", + "type": "file", + "name": "OCSP_response_status.pod", + "base_name": "OCSP_response_status", + "extension": ".pod", + "size": 3253, + "date": "2017-05-25", + "sha1": "bb424589763501a62407af2b274e5028c3b6a19c", + "md5": "baac8f9bbe2241a15617ec8fea044b6e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 95, + "end_line": 97, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 91, + "end_line": 93 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OCSP_sendreq_new.pod", + "type": "file", + "name": "OCSP_sendreq_new.pod", + "base_name": "OCSP_sendreq_new", + "extension": ".pod", + "size": 4581, + "date": "2017-05-25", + "sha1": "4dbb8d0dddd578ebd475242b7b93f408027b8104", + "md5": "7898cc0a075a6e7a5d76ea2eb2a575ec", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 117, + "end_line": 119, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 113, + "end_line": 115 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OpenSSL_add_all_algorithms.pod", + "type": "file", + "name": "OpenSSL_add_all_algorithms.pod", + "base_name": "OpenSSL_add_all_algorithms", + "extension": ".pod", + "size": 2913, + "date": "2017-05-25", + "sha1": "fee4fb8807749f10c9dde9b4948d08ab6b2b7db0", + "md5": "cf04b1090d7430cd04ec58c3d23ff983", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_Applink.pod", + "type": "file", + "name": "OPENSSL_Applink.pod", + "base_name": "OPENSSL_Applink", + "extension": ".pod", + "size": 1048, + "date": "2017-05-25", + "sha1": "d5b74bb9eb5a788733f27e353f6968f1bbfdd599", + "md5": "856eb5cfb0ef20ff68f62b941a4d138b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 26, + "end_line": 28, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_config.pod", + "type": "file", + "name": "OPENSSL_config.pod", + "base_name": "OPENSSL_config", + "extension": ".pod", + "size": 2447, + "date": "2017-05-25", + "sha1": "9c69317e1d51ab467bb85533f9b4f05d9b5b2f72", + "md5": "101adb7d9d80bf433fb3742f924a0ef1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_ia32cap.pod", + "type": "file", + "name": "OPENSSL_ia32cap.pod", + "base_name": "OPENSSL_ia32cap", + "extension": ".pod", + "size": 5016, + "date": "2017-05-25", + "sha1": "be7f937970cde94cec1f07986819caa5efc0e63c", + "md5": "9d3a9cbb141eb5ff9086ccd8caf26571", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 135, + "end_line": 137, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 131, + "end_line": 133 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_init_crypto.pod", + "type": "file", + "name": "OPENSSL_init_crypto.pod", + "base_name": "OPENSSL_init_crypto", + "extension": ".pod", + "size": 10178, + "date": "2017-05-25", + "sha1": "75c1eb40a0e081d73f77a3de74ac0423912aa7d7", + "md5": "db968cdc5588169349eff477a0e32aa3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 240, + "end_line": 242, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 236, + "end_line": 238 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_instrument_bus.pod", + "type": "file", + "name": "OPENSSL_instrument_bus.pod", + "base_name": "OPENSSL_instrument_bus", + "extension": ".pod", + "size": 2021, + "date": "2017-05-25", + "sha1": "760ed95c7a64566c4bb79329ea758b4e2f9f0eb1", + "md5": "d06bee9c1e7712c6325d9af49a191ea1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_LH_COMPFUNC.pod", + "type": "file", + "name": "OPENSSL_LH_COMPFUNC.pod", + "base_name": "OPENSSL_LH_COMPFUNC", + "extension": ".pod", + "size": 9134, + "date": "2017-05-25", + "sha1": "312b910acf59e4fe7cd15c7e52dde659c69aaeb4", + "md5": "b14d22cfd61bd43ad71dfec35e7b9895", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 234, + "end_line": 236, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 230, + "end_line": 232 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_LH_stats.pod", + "type": "file", + "name": "OPENSSL_LH_stats.pod", + "base_name": "OPENSSL_LH_stats", + "extension": ".pod", + "size": 2217, + "date": "2017-05-25", + "sha1": "80e3e5175b4d4252864a52d01e6ac35a6b3bee77", + "md5": "9107ed77ff44d1caa300514ae3efeb59", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_load_builtin_modules.pod", + "type": "file", + "name": "OPENSSL_load_builtin_modules.pod", + "base_name": "OPENSSL_load_builtin_modules", + "extension": ".pod", + "size": 1574, + "date": "2017-05-25", + "sha1": "681c58ee3892110a70aa45dfd0e3abaabcf089ca", + "md5": "258829fb9e8ce16179ba07b830dd8a09", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_malloc.pod", + "type": "file", + "name": "OPENSSL_malloc.pod", + "base_name": "OPENSSL_malloc", + "extension": ".pod", + "size": 8697, + "date": "2017-05-25", + "sha1": "59242393af3a1d4d9ece18df3d64ac5eb22cc3f4", + "md5": "d67a42110f4e079ff372f7a8d032a262", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 202, + "end_line": 204, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 198, + "end_line": 200 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_secure_malloc.pod", + "type": "file", + "name": "OPENSSL_secure_malloc.pod", + "base_name": "OPENSSL_secure_malloc", + "extension": ".pod", + "size": 4538, + "date": "2017-05-25", + "sha1": "31b724d5e3a3838c8ce0ee9136f973247783874d", + "md5": "dddcb3741c1c71d9cdb76fab35dc8bc3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 118, + "end_line": 120, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 114, + "end_line": 116 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/OPENSSL_VERSION_NUMBER.pod", + "type": "file", + "name": "OPENSSL_VERSION_NUMBER.pod", + "base_name": "OPENSSL_VERSION_NUMBER", + "extension": ".pod", + "size": 2574, + "date": "2017-05-25", + "sha1": "5a7d20d7c8f6992c0d070b9e2830c74b04ae3dd7", + "md5": "d4b25103b496fb52d084c9c438c3be48", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 101, + "end_line": 103, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 97, + "end_line": 99 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PEM_read.pod", + "type": "file", + "name": "PEM_read.pod", + "base_name": "PEM_read", + "extension": ".pod", + "size": 5186, + "date": "2017-05-25", + "sha1": "1cb57937623751a3e8249c76e3f352430fdcad8d", + "md5": "d72aed233001882716368a052bf8ebed", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 122, + "end_line": 124, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 118, + "end_line": 120 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PEM_read_bio_PrivateKey.pod", + "type": "file", + "name": "PEM_read_bio_PrivateKey.pod", + "base_name": "PEM_read_bio_PrivateKey", + "extension": ".pod", + "size": 19519, + "date": "2017-05-25", + "sha1": "73754b2d5667539bd92c3356fa2c64403cd7cfed", + "md5": "6ef8ec96388ee4cbf79af03846c46d07", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 476, + "end_line": 476, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 472, + "end_line": 474 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PEM_read_CMS.pod", + "type": "file", + "name": "PEM_read_CMS.pod", + "base_name": "PEM_read_CMS", + "extension": ".pod", + "size": 2742, + "date": "2017-05-25", + "sha1": "798f46e44a2c59c51046be4bebc5ca3ef8cd32b7", + "md5": "6411ef397ac43c483bc71d2126c3444e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 92, + "end_line": 94, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 88, + "end_line": 90 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PEM_write_bio_CMS_stream.pod", + "type": "file", + "name": "PEM_write_bio_CMS_stream.pod", + "base_name": "PEM_write_bio_CMS_stream", + "extension": ".pod", + "size": 1161, + "date": "2017-05-25", + "sha1": "654ff9be8d60c68016de1d13cfab4d749bd2830e", + "md5": "d80999e6ec822bc966ef7d8c359a2a9d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PEM_write_bio_PKCS7_stream.pod", + "type": "file", + "name": "PEM_write_bio_PKCS7_stream.pod", + "base_name": "PEM_write_bio_PKCS7_stream", + "extension": ".pod", + "size": 1141, + "date": "2017-05-25", + "sha1": "58e205088e7f93f58b8a3af827b6018834d9b035", + "md5": "ae5e36c86068f63d0cb2d712a3599061", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 44, + "end_line": 46, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 40, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS12_create.pod", + "type": "file", + "name": "PKCS12_create.pod", + "base_name": "PKCS12_create", + "extension": ".pod", + "size": 2873, + "date": "2017-05-25", + "sha1": "aafd2e7f01915da30bad8113dfadfbe40df5f5cf", + "md5": "3eadefb3e410c6ed9d72ffbeadb71eb3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS12_newpass.pod", + "type": "file", + "name": "PKCS12_newpass.pod", + "base_name": "PKCS12_newpass", + "extension": ".pod", + "size": 3229, + "date": "2017-05-25", + "sha1": "7bf8120ef06c51d43bcde0e5722a2c57e23934eb", + "md5": "19581aa5d18375e0d4b47e0a433a6695", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 110, + "end_line": 112, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 106, + "end_line": 108 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS12_parse.pod", + "type": "file", + "name": "PKCS12_parse.pod", + "base_name": "PKCS12_parse", + "extension": ".pod", + "size": 2302, + "date": "2017-05-25", + "sha1": "d815ad7bb95a8070afb012261fd166765abff83c", + "md5": "e3a77f4577888b59ae8da4ae65f15f05", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 68, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 62, + "end_line": 64 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS5_PBKDF2_HMAC.pod", + "type": "file", + "name": "PKCS5_PBKDF2_HMAC.pod", + "base_name": "PKCS5_PBKDF2_HMAC", + "extension": ".pod", + "size": 2524, + "date": "2017-05-25", + "sha1": "52dbe32e6da091df7ace9d62692df515d834918d", + "md5": "9123d664b0dd6d89e59597998ea19cac", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 68, + "end_line": 70, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 64, + "end_line": 66 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS7_decrypt.pod", + "type": "file", + "name": "PKCS7_decrypt.pod", + "base_name": "PKCS7_decrypt", + "extension": ".pod", + "size": 1749, + "date": "2017-05-25", + "sha1": "5479f41d09f6181d5d42d5d075f488e4668f3d80", + "md5": "77175bc55b89d12460eac2ba6150b2ff", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS7_encrypt.pod", + "type": "file", + "name": "PKCS7_encrypt.pod", + "base_name": "PKCS7_encrypt", + "extension": ".pod", + "size": 3040, + "date": "2017-05-25", + "sha1": "52d51ae5e197947e5309ea55664a62aa3ffff09c", + "md5": "5131bb49be92d0c682d60370119d20f9", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS7_sign.pod", + "type": "file", + "name": "PKCS7_sign.pod", + "base_name": "PKCS7_sign", + "extension": ".pod", + "size": 4750, + "date": "2017-05-25", + "sha1": "7d4eac7abf8af203955b91fbed1246591b7ca86e", + "md5": "bf4d5647536f03dbc97fa3a48e152560", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 119, + "end_line": 121, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 115, + "end_line": 117 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS7_sign_add_signer.pod", + "type": "file", + "name": "PKCS7_sign_add_signer.pod", + "base_name": "PKCS7_sign_add_signer", + "extension": ".pod", + "size": 3473, + "date": "2017-05-25", + "sha1": "5e359e1d4a1e235662b12738e77396dd4163f1de", + "md5": "f647cf126350d8e356da2f77d8de91be", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/PKCS7_verify.pod", + "type": "file", + "name": "PKCS7_verify.pod", + "base_name": "PKCS7_verify", + "extension": ".pod", + "size": 5088, + "date": "2017-05-25", + "sha1": "787d644e9b44441cfeb9013e7bead31a8a33a7ab", + "md5": "2eb1993be9e839de8114b764bd5e22c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 123, + "end_line": 125, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 119, + "end_line": 121 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RAND_add.pod", + "type": "file", + "name": "RAND_add.pod", + "base_name": "RAND_add", + "extension": ".pod", + "size": 2384, + "date": "2017-05-25", + "sha1": "bfcddad8335974a546ee0b627ef86339657c4ffa", + "md5": "81aa077fa101863842caa0a38286ed66", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RAND_bytes.pod", + "type": "file", + "name": "RAND_bytes.pod", + "base_name": "RAND_bytes", + "extension": ".pod", + "size": 1780, + "date": "2017-05-25", + "sha1": "40231448b9f54aa6cad3a86e2c3c89973a3eb879", + "md5": "32dd6b4a3d8803531a51a3faf2d3cf08", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RAND_cleanup.pod", + "type": "file", + "name": "RAND_cleanup.pod", + "base_name": "RAND_cleanup", + "extension": ".pod", + "size": 913, + "date": "2017-05-25", + "sha1": "f82aea3eb4c0589b1d5bcbf6aa60e9543c819707", + "md5": "e6ed45cbcee9a2bf027dc8d5ac398bfe", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 37, + "end_line": 39, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 33, + "end_line": 35 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RAND_egd.pod", + "type": "file", + "name": "RAND_egd.pod", + "base_name": "RAND_egd", + "extension": ".pod", + "size": 3324, + "date": "2017-05-25", + "sha1": "39246ec151280d01cc144108b97a4e6353f49d57", + "md5": "59caa3dd4aa55eb6321e478462d7c165", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 82, + "end_line": 84, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 78, + "end_line": 80 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RAND_load_file.pod", + "type": "file", + "name": "RAND_load_file.pod", + "base_name": "RAND_load_file", + "extension": ".pod", + "size": 1986, + "date": "2017-05-25", + "sha1": "51fd5af7e5b77b453572d44052f741548b0dbfa9", + "md5": "a2f15f0187097525daf128f2b0a56772", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 74, + "end_line": 76, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 70, + "end_line": 72 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RAND_set_rand_method.pod", + "type": "file", + "name": "RAND_set_rand_method.pod", + "base_name": "RAND_set_rand_method", + "extension": ".pod", + "size": 2726, + "date": "2017-05-25", + "sha1": "942ee37c41030d3d855441dbdab277c2b0bbd87c", + "md5": "ce4b3de89d51d6083406760cd8b8347f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RC4_set_key.pod", + "type": "file", + "name": "RC4_set_key.pod", + "base_name": "RC4_set_key", + "extension": ".pod", + "size": 1921, + "date": "2017-05-25", + "sha1": "05c945cbdb355c4f165871ce10655cfaaddae254", + "md5": "27632144d11290351d62ee8e2a3dfb66", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 61, + "end_line": 63, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 57, + "end_line": 59 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RIPEMD160_Init.pod", + "type": "file", + "name": "RIPEMD160_Init.pod", + "base_name": "RIPEMD160_Init", + "extension": ".pod", + "size": 1927, + "date": "2017-05-25", + "sha1": "4a0e49656c53b811b383a8d4ed420b1d10eab5e0", + "md5": "2f544d8750c133069d0236e15642a881", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_blinding_on.pod", + "type": "file", + "name": "RSA_blinding_on.pod", + "base_name": "RSA_blinding_on", + "extension": ".pod", + "size": 1236, + "date": "2017-05-25", + "sha1": "67e86e9830810c16f28ff39bf0656b85e986ff68", + "md5": "294b93329ccf18c5560e77355861470b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_check_key.pod", + "type": "file", + "name": "RSA_check_key.pod", + "base_name": "RSA_check_key", + "extension": ".pod", + "size": 2783, + "date": "2017-05-25", + "sha1": "e62c9063384461be54592bf5780552e81fa13115", + "md5": "7c293685c9696176028326c72c8b1309", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_generate_key.pod", + "type": "file", + "name": "RSA_generate_key.pod", + "base_name": "RSA_generate_key", + "extension": ".pod", + "size": 2500, + "date": "2017-05-25", + "sha1": "7ce05a2750dec9321cfd742ff84e6718d1a84da9", + "md5": "be0b1639a0f55d72d61e7ceddebf8c5d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_get0_key.pod", + "type": "file", + "name": "RSA_get0_key.pod", + "base_name": "RSA_get0_key", + "extension": ".pod", + "size": 4490, + "date": "2017-05-25", + "sha1": "a288c3a483fc62d743297d0055a995249ee22c33", + "md5": "4ab257a75660ba61d1acd5392cc1b5dd", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_meth_new.pod", + "type": "file", + "name": "RSA_meth_new.pod", + "base_name": "RSA_meth_new", + "extension": ".pod", + "size": 10893, + "date": "2017-05-25", + "sha1": "a9e8ca5c5882d8a2f4acb637796f1edef513af8b", + "md5": "da7f5c1fdbc770f59b7620d713c3bf5c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 230, + "end_line": 230, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 226, + "end_line": 228 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_new.pod", + "type": "file", + "name": "RSA_new.pod", + "base_name": "RSA_new", + "extension": ".pod", + "size": 1107, + "date": "2017-05-25", + "sha1": "85e1fd0ad7a48e28971af472b27537d7ed29338e", + "md5": "c49e4ca99e770451779be8c3b9fe5d71", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_padding_add_PKCS1_type_1.pod", + "type": "file", + "name": "RSA_padding_add_PKCS1_type_1.pod", + "base_name": "RSA_padding_add_PKCS1_type_1", + "extension": ".pod", + "size": 3614, + "date": "2017-05-25", + "sha1": "657d45ff9dd623c9dd10600d7974f739017f9f47", + "md5": "df0abb75e1ef761a2e921ca18a7e92eb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 117, + "end_line": 119, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 113, + "end_line": 115 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_print.pod", + "type": "file", + "name": "RSA_print.pod", + "base_name": "RSA_print", + "extension": ".pod", + "size": 1277, + "date": "2017-05-25", + "sha1": "b63f3fb7aa7dc8ae22049c9f05f79eb0848ca26b", + "md5": "20a700668f1f2b8e375d53d982d69c0b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_private_encrypt.pod", + "type": "file", + "name": "RSA_private_encrypt.pod", + "base_name": "RSA_private_encrypt", + "extension": ".pod", + "size": 2144, + "date": "2017-05-25", + "sha1": "1d794ea07d4b99149747b40992b6ddbc78b949ed", + "md5": "4415aeadd35743b640fd0768e435b777", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_public_encrypt.pod", + "type": "file", + "name": "RSA_public_encrypt.pod", + "base_name": "RSA_public_encrypt", + "extension": ".pod", + "size": 2527, + "date": "2017-05-25", + "sha1": "9733fb3e0429957476cd6ccba7e004f9e3feaced", + "md5": "1a0b2038c6e56a475db6958426ffed5f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_set_method.pod", + "type": "file", + "name": "RSA_set_method.pod", + "base_name": "RSA_set_method", + "extension": ".pod", + "size": 6859, + "date": "2017-05-25", + "sha1": "ef88746b00bce4a6f232425fcb33a359da36d911", + "md5": "fc46e3d7954e9a25ddc019a350070b62", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 175, + "end_line": 177, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 171, + "end_line": 173 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_sign.pod", + "type": "file", + "name": "RSA_sign.pod", + "base_name": "RSA_sign", + "extension": ".pod", + "size": 1895, + "date": "2017-05-25", + "sha1": "085bbeb680414b3f8d1affcf1631df7955933c26", + "md5": "29a1a772f3500ec6ea86394380fd0251", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 60, + "end_line": 62, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 56, + "end_line": 58 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_sign_ASN1_OCTET_STRING.pod", + "type": "file", + "name": "RSA_sign_ASN1_OCTET_STRING.pod", + "base_name": "RSA_sign_ASN1_OCTET_STRING", + "extension": ".pod", + "size": 1767, + "date": "2017-05-25", + "sha1": "9aeb3452ef46c511e5e60a0e6a4a8682bd05f7bd", + "md5": "dafa3be417909a911883da17f5ba431e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 58, + "end_line": 60, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 54, + "end_line": 56 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/RSA_size.pod", + "type": "file", + "name": "RSA_size.pod", + "base_name": "RSA_size", + "extension": ".pod", + "size": 888, + "date": "2017-05-25", + "sha1": "fe04875c2417c4f7d2966af09565ddbf13952d8f", + "md5": "719fd9dd67ae9566f7ca385bbcab0f93", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 41, + "end_line": 43, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 37, + "end_line": 39 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/SCT_new.pod", + "type": "file", + "name": "SCT_new.pod", + "base_name": "SCT_new", + "extension": ".pod", + "size": 6408, + "date": "2017-05-25", + "sha1": "346cb4ab1a3d1fe54d1b7d99208a8368bbc9b4b8", + "md5": "d2faae7d91d55f5fd2bdd14016b8fc8b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 189, + "end_line": 191, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 185, + "end_line": 187 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/SCT_print.pod", + "type": "file", + "name": "SCT_print.pod", + "base_name": "SCT_print", + "extension": ".pod", + "size": 1702, + "date": "2017-05-25", + "sha1": "6b7363b1513eeb0a76766bd89945b4f4860f4410", + "md5": "f5ffc28780d01464b38185080d32962f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/SCT_validate.pod", + "type": "file", + "name": "SCT_validate.pod", + "base_name": "SCT_validate", + "extension": ".pod", + "size": 3136, + "date": "2017-05-25", + "sha1": "8f70c946a39aa85c26eeadad04a7c168436eb558", + "md5": "4cb5ce8ee9dac7d0fd1e405ba06e9d8d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 93, + "end_line": 95, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 89, + "end_line": 91 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/SHA256_Init.pod", + "type": "file", + "name": "SHA256_Init.pod", + "base_name": "SHA256_Init", + "extension": ".pod", + "size": 3793, + "date": "2017-05-25", + "sha1": "096fb2cbd3ff6487eb270ca70d289487c0e7cc1c", + "md5": "5b3628c7fa525f134ef4ea8f6d9d577d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/SMIME_read_CMS.pod", + "type": "file", + "name": "SMIME_read_CMS.pod", + "base_name": "SMIME_read_CMS", + "extension": ".pod", + "size": 2094, + "date": "2017-05-25", + "sha1": "cda1d1a3bdbf252c831992b5acb1623b67722c2a", + "md5": "0ff0c44cabf4585382bd164a9eab3220", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 70, + "end_line": 72, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 66, + "end_line": 68 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/SMIME_read_PKCS7.pod", + "type": "file", + "name": "SMIME_read_PKCS7.pod", + "base_name": "SMIME_read_PKCS7", + "extension": ".pod", + "size": 2085, + "date": "2017-05-25", + "sha1": "f909bd7b54010f4f0b3e6a9b4399132a8385e6e5", + "md5": "db8df7e276a69c1c662dbb3a0812f401", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 73, + "end_line": 75, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 69, + "end_line": 71 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/SMIME_write_CMS.pod", + "type": "file", + "name": "SMIME_write_CMS.pod", + "base_name": "SMIME_write_CMS", + "extension": ".pod", + "size": 2144, + "date": "2017-05-25", + "sha1": "7c58010d6b8cf156f51bfdd5a52cc9728e8dbd32", + "md5": "eb2f7cdd7c61e14c4e18c34cf152d9e5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 64, + "end_line": 66, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 60, + "end_line": 62 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/SMIME_write_PKCS7.pod", + "type": "file", + "name": "SMIME_write_PKCS7.pod", + "base_name": "SMIME_write_PKCS7", + "extension": ".pod", + "size": 2170, + "date": "2017-05-25", + "sha1": "ad34e94993451f5111fb9dfe12e310186e34387b", + "md5": "1e33be3baf4284401667fa2c7089212a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/UI_create_method.pod", + "type": "file", + "name": "UI_create_method.pod", + "base_name": "UI_create_method", + "extension": ".pod", + "size": 7071, + "date": "2017-05-25", + "sha1": "ca827f9f0b9fc3535bc14dcfb824cc6a92dd7129", + "md5": "1de0832adb4582079337e62bd5e13a7b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 197, + "end_line": 199, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 193, + "end_line": 195 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/UI_new.pod", + "type": "file", + "name": "UI_new.pod", + "base_name": "UI_new", + "extension": ".pod", + "size": 8944, + "date": "2017-05-25", + "sha1": "3c8f40501d8634964f3f36f7b3b378daf9c6894b", + "md5": "e78df6860285f5bf14a5abf0118e5954", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 198, + "end_line": 200, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 194, + "end_line": 196 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/UI_STRING.pod", + "type": "file", + "name": "UI_STRING.pod", + "base_name": "UI_STRING", + "extension": ".pod", + "size": 5002, + "date": "2017-05-25", + "sha1": "eefeb942709850113c57f6832d528a858afd2356", + "md5": "5a79ecaee20314d720aeaa21bf0b3095", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 129, + "end_line": 131, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 125, + "end_line": 127 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/x509.pod", + "type": "file", + "name": "x509.pod", + "base_name": "x509", + "extension": ".pod", + "size": 2234, + "date": "2017-05-25", + "sha1": "665f1b1a68e6a94e10c67bdfc4c0ab8595b8cbc6", + "md5": "148700432a059a3898c58ff675ed6b19", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 68, + "end_line": 70, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 64, + "end_line": 66 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_ALGOR_dup.pod", + "type": "file", + "name": "X509_ALGOR_dup.pod", + "base_name": "X509_ALGOR_dup", + "extension": ".pod", + "size": 1767, + "date": "2017-05-25", + "sha1": "21f9f51805e780612e3ef7405eebe4b2a7c1e8f8", + "md5": "0da8bd2e300abaa2e7bbe42526bb8a23", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 43, + "end_line": 45, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 39, + "end_line": 41 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_check_ca.pod", + "type": "file", + "name": "X509_check_ca.pod", + "base_name": "X509_check_ca", + "extension": ".pod", + "size": 1232, + "date": "2017-05-25", + "sha1": "b132c9ea55d5d80c8b2c8035d3926b1def3b7532", + "md5": "3ebcaf95664dad3170c13fb1a2243fed", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 40, + "end_line": 42, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_check_host.pod", + "type": "file", + "name": "X509_check_host.pod", + "base_name": "X509_check_host", + "extension": ".pod", + "size": 6257, + "date": "2017-05-25", + "sha1": "1647208210134c5ec1f8c76f94698dd55a8a02c0", + "md5": "ec1b8fa751d8e9c913b8fb3b124c93c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 152, + "end_line": 154, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 148, + "end_line": 150 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_check_issued.pod", + "type": "file", + "name": "X509_check_issued.pod", + "base_name": "X509_check_issued", + "extension": ".pod", + "size": 1209, + "date": "2017-05-25", + "sha1": "12c713242a87ce09fba0844a11b923ac74fde6dd", + "md5": "6d7565166ea2eb40fb33762949e77758", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 40, + "end_line": 42, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_CRL_get0_by_serial.pod", + "type": "file", + "name": "X509_CRL_get0_by_serial.pod", + "base_name": "X509_CRL_get0_by_serial", + "extension": ".pod", + "size": 3797, + "date": "2017-05-25", + "sha1": "8260e613fef3b7dc9ea2fe8e6edb1d4314d361c7", + "md5": "918273ac762d7c20982f88ee6bb069cb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 110, + "end_line": 112, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 106, + "end_line": 108 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_digest.pod", + "type": "file", + "name": "X509_digest.pod", + "base_name": "X509_digest", + "extension": ".pod", + "size": 2045, + "date": "2017-05-25", + "sha1": "647f4858d889554f3509d0a4e258cac5a7f13080", + "md5": "32652c69d34f7ee863672c3b2483d565", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 60, + "end_line": 62, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 56, + "end_line": 58 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_dup.pod", + "type": "file", + "name": "X509_dup.pod", + "base_name": "X509_dup", + "extension": ".pod", + "size": 6620, + "date": "2017-05-25", + "sha1": "f8235b77c5f816843d96647c0689d956a48110ac", + "md5": "221b316ea74509bde241608c1ce3e80a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 298, + "end_line": 300, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 294, + "end_line": 296 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_EXTENSION_set_object.pod", + "type": "file", + "name": "X509_EXTENSION_set_object.pod", + "base_name": "X509_EXTENSION_set_object", + "extension": ".pod", + "size": 3720, + "date": "2017-05-25", + "sha1": "ebe2ff80907e743780fd6fea12209eaaaf67d8c0", + "md5": "84a7df66c31aef8132c1aeae4afba467", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_get0_signature.pod", + "type": "file", + "name": "X509_get0_signature.pod", + "base_name": "X509_get0_signature", + "extension": ".pod", + "size": 3029, + "date": "2017-05-25", + "sha1": "cc558cfff29c0cbc8a4e2aef68397a03df8b8ac8", + "md5": "2c8465e2280547c23a08dab6acece0c2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 92, + "end_line": 94, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 88, + "end_line": 90 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_get0_uids.pod", + "type": "file", + "name": "X509_get0_uids.pod", + "base_name": "X509_get0_uids", + "extension": ".pod", + "size": 1385, + "date": "2017-05-25", + "sha1": "989667962574f0dfd53d8d80576e9570c2a6e02c", + "md5": "c794f400e585daba47900616bd5eb574", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_get_extension_flags.pod", + "type": "file", + "name": "X509_get_extension_flags.pod", + "base_name": "X509_get_extension_flags", + "extension": ".pod", + "size": 5859, + "date": "2017-05-25", + "sha1": "93917f887056f78e73eee42766aa8ddf5cd56373", + "md5": "0601666247743967d436c10c61b45c7a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 170, + "end_line": 172, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 166, + "end_line": 168 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_get_notBefore.pod", + "type": "file", + "name": "X509_get_notBefore.pod", + "base_name": "X509_get_notBefore", + "extension": ".pod", + "size": 3421, + "date": "2017-05-25", + "sha1": "60e1efaf226a65651badbb3ec4d376de12973b5b", + "md5": "0927f6bfc2b59e28daf3264344854821", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_get_pubkey.pod", + "type": "file", + "name": "X509_get_pubkey.pod", + "base_name": "X509_get_pubkey", + "extension": ".pod", + "size": 2815, + "date": "2017-05-25", + "sha1": "390964ba7c3850937a4b63a9ef5ba36a792980e2", + "md5": "d4fa908566429e8a8fa3c72e5053b614", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 82, + "end_line": 84, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 78, + "end_line": 80 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_get_serialNumber.pod", + "type": "file", + "name": "X509_get_serialNumber.pod", + "base_name": "X509_get_serialNumber", + "extension": ".pod", + "size": 1992, + "date": "2017-05-25", + "sha1": "b5fe6021ec0ccabf771670afc83e7809fc0996ee", + "md5": "a59b61722e0c212669316a328fcd87ed", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 68, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 62, + "end_line": 64 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_get_subject_name.pod", + "type": "file", + "name": "X509_get_subject_name.pod", + "base_name": "X509_get_subject_name", + "extension": ".pod", + "size": 2721, + "date": "2017-05-25", + "sha1": "33ece99ab32156334f174ef3f4322e99209f1609", + "md5": "8c12896c01d95fa1e14fcaf671367cf6", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 81, + "end_line": 83, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 77, + "end_line": 79 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_get_version.pod", + "type": "file", + "name": "X509_get_version.pod", + "base_name": "X509_get_version", + "extension": ".pod", + "size": 2494, + "date": "2017-05-25", + "sha1": "58474e7fb35ebb3c074862dfeec2a711e4d8d2e6", + "md5": "a139abcf6f1504dc15de83185a2ebd82", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 78, + "end_line": 80, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 74, + "end_line": 76 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_LOOKUP_hash_dir.pod", + "type": "file", + "name": "X509_LOOKUP_hash_dir.pod", + "base_name": "X509_LOOKUP_hash_dir", + "extension": ".pod", + "size": 4730, + "date": "2017-05-25", + "sha1": "d6246ad669955021c71a2dfdcc022d395d94a8a6", + "md5": "d776b827c66197fb794f2ce460929a6f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 125, + "end_line": 127, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 121, + "end_line": 123 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_NAME_add_entry_by_txt.pod", + "type": "file", + "name": "X509_NAME_add_entry_by_txt.pod", + "base_name": "X509_NAME_add_entry_by_txt", + "extension": ".pod", + "size": 4458, + "date": "2017-05-25", + "sha1": "52d3432beff62da5e25a2a2b89c25b9d5d3ad795", + "md5": "1b366ecaa87e12b6e6182d532652d5b5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 118, + "end_line": 120, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 114, + "end_line": 116 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_NAME_ENTRY_get_object.pod", + "type": "file", + "name": "X509_NAME_ENTRY_get_object.pod", + "base_name": "X509_NAME_ENTRY_get_object", + "extension": ".pod", + "size": 3020, + "date": "2017-05-25", + "sha1": "3e120a25d07120ded67100c482e85771f7bf1718", + "md5": "302a9a69454716f38038ed432e47ff5b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_NAME_get0_der.pod", + "type": "file", + "name": "X509_NAME_get0_der.pod", + "base_name": "X509_NAME_get0_der", + "extension": ".pod", + "size": 990, + "date": "2017-05-25", + "sha1": "3f7265b11bb8dbe23257f5149b899528a255c767", + "md5": "64cf29e01403b952a567500dd0cc2c96", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 35, + "end_line": 37, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 31, + "end_line": 33 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_NAME_get_index_by_NID.pod", + "type": "file", + "name": "X509_NAME_get_index_by_NID.pod", + "base_name": "X509_NAME_get_index_by_NID", + "extension": ".pod", + "size": 4345, + "date": "2017-05-25", + "sha1": "30ed87377eb07ce58f42802447ff4fa6826ed096", + "md5": "b4415be955d082139cbea3a02cad4c5e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 118, + "end_line": 120, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 114, + "end_line": 116 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_NAME_print_ex.pod", + "type": "file", + "name": "X509_NAME_print_ex.pod", + "base_name": "X509_NAME_print_ex", + "extension": ".pod", + "size": 4731, + "date": "2017-05-25", + "sha1": "f6d4086c3488fcb167508ce3ba1f1d5a0cee587d", + "md5": "25ea6f951f1e8df56ded504f9768796c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 107, + "end_line": 109, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 103, + "end_line": 105 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_new.pod", + "type": "file", + "name": "X509_new.pod", + "base_name": "X509_new", + "extension": ".pod", + "size": 2427, + "date": "2017-05-25", + "sha1": "4f8663a663dfd16625566ecc3610d62001a6a4c3", + "md5": "5c18c8c311a079ccd5c21bcdb3fa12b1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 78, + "end_line": 80, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 74, + "end_line": 76 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_PUBKEY_new.pod", + "type": "file", + "name": "X509_PUBKEY_new.pod", + "base_name": "X509_PUBKEY_new", + "extension": ".pod", + "size": 4456, + "date": "2017-05-25", + "sha1": "74c1e9e3e8d8d8be764719fbfb77ad9ea1cbe1c4", + "md5": "050461efb6a2e7f5e596bc45c7348b9c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 115, + "end_line": 117, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 111, + "end_line": 113 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_SIG_get0.pod", + "type": "file", + "name": "X509_SIG_get0.pod", + "base_name": "X509_SIG_get0", + "extension": ".pod", + "size": 970, + "date": "2017-05-25", + "sha1": "c698d9da1fedd6fd6f4873bc4930cfc09087a530", + "md5": "af02d72120b5038b9ec25967f3b7c70b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 31, + "end_line": 33, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 27, + "end_line": 29 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_sign.pod", + "type": "file", + "name": "X509_sign.pod", + "base_name": "X509_sign", + "extension": ".pod", + "size": 3414, + "date": "2017-05-25", + "sha1": "843cddfa6c0771a160be4b8449abd6bca0393e00", + "md5": "69e07bd63b8490b282fa32ffeec7f93f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 94, + "end_line": 96, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 90, + "end_line": 92 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_STORE_CTX_get_error.pod", + "type": "file", + "name": "X509_STORE_CTX_get_error.pod", + "base_name": "X509_STORE_CTX_get_error", + "extension": ".pod", + "size": 12855, + "date": "2017-05-25", + "sha1": "19ecedbc4034ddea01b0a567e5efff4356cd83f8", + "md5": "e848265a2a8c39def9265c34e476ed52", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 333, + "end_line": 335, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 329, + "end_line": 331 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_STORE_CTX_new.pod", + "type": "file", + "name": "X509_STORE_CTX_new.pod", + "base_name": "X509_STORE_CTX_new", + "extension": ".pod", + "size": 6732, + "date": "2017-05-25", + "sha1": "a05ad044822b6f961af058375089b382779132c8", + "md5": "8096f3f195e40b6fdb285c48b2d253e4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 169, + "end_line": 171, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 165, + "end_line": 167 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_STORE_CTX_set_verify_cb.pod", + "type": "file", + "name": "X509_STORE_CTX_set_verify_cb.pod", + "base_name": "X509_STORE_CTX_set_verify_cb", + "extension": ".pod", + "size": 8019, + "date": "2017-05-25", + "sha1": "5f0a7e16313ec9e49aa6a4018c97c968de558b9e", + "md5": "428141829a78a27b384fcebf75167b06", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 210, + "end_line": 212, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 206, + "end_line": 208 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_STORE_get0_param.pod", + "type": "file", + "name": "X509_STORE_get0_param.pod", + "base_name": "X509_STORE_get0_param", + "extension": ".pod", + "size": 1573, + "date": "2017-05-25", + "sha1": "d4ac6313267d6fd3a4a7911c597154a3ca77d1ec", + "md5": "500ef19b8dee5e93dd8aa9fe5906eba5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_STORE_new.pod", + "type": "file", + "name": "X509_STORE_new.pod", + "base_name": "X509_STORE_new", + "extension": ".pod", + "size": 1510, + "date": "2017-05-25", + "sha1": "c70267d53a9b54d99d82e53d4fca3be6e167e349", + "md5": "95bc3c5f663da3904d0d86a625186297", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_STORE_set_verify_cb_func.pod", + "type": "file", + "name": "X509_STORE_set_verify_cb_func.pod", + "base_name": "X509_STORE_set_verify_cb_func", + "extension": ".pod", + "size": 11455, + "date": "2017-05-25", + "sha1": "799b34cd76c15a3fd16965a7524b9481b432e114", + "md5": "d89de8040a8157282af576e6389fc7e7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 260, + "end_line": 262, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 256, + "end_line": 258 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_verify_cert.pod", + "type": "file", + "name": "X509_verify_cert.pod", + "base_name": "X509_verify_cert", + "extension": ".pod", + "size": 1860, + "date": "2017-05-25", + "sha1": "a091b17166bf1dce8d19e5a3250a0a8debff3564", + "md5": "b3881fbd6ec43b2a46dec7d619f9bda8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 57, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 51, + "end_line": 53 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509_VERIFY_PARAM_set_flags.pod", + "type": "file", + "name": "X509_VERIFY_PARAM_set_flags.pod", + "base_name": "X509_VERIFY_PARAM_set_flags", + "extension": ".pod", + "size": 15126, + "date": "2017-05-25", + "sha1": "b35b29d90b5e367acf8678d956cb48ede3ca23c8", + "md5": "ca8cd50f236f8c86fdc4accfe340e355", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 336, + "end_line": 338, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2009-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 332, + "end_line": 334 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509V3_get_d2i.pod", + "type": "file", + "name": "X509V3_get_d2i.pod", + "base_name": "X509V3_get_d2i", + "extension": ".pod", + "size": 9321, + "date": "2017-05-25", + "sha1": "93b82dfbc31f08a64fc56f8a6a34af3501b5531f", + "md5": "9e79784b7ac85feb81818f53aececdeb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 236, + "end_line": 238, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 232, + "end_line": 234 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/crypto/X509v3_get_ext_by_NID.pod", + "type": "file", + "name": "X509v3_get_ext_by_NID.pod", + "base_name": "X509v3_get_ext_by_NID", + "extension": ".pod", + "size": 6342, + "date": "2017-05-25", + "sha1": "605d4d76625e63687a1a294135a17c44b7818a66", + "md5": "04476b158627e0acf71392799ab22d3a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 135, + "end_line": 137, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 131, + "end_line": 133 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/HOWTO", + "type": "directory", + "name": "HOWTO", + "base_name": "HOWTO", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 19860, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/HOWTO/certificates.txt", + "type": "file", + "name": "certificates.txt", + "base_name": "certificates", + "extension": ".txt", + "size": 4744, + "date": "2017-05-25", + "sha1": "3d25c30aeef18b1197de87d8bcb47662c6508ae8", + "md5": "45247871056142c8526c6f8cd168e830", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/HOWTO/keys.txt", + "type": "file", + "name": "keys.txt", + "base_name": "keys", + "extension": ".txt", + "size": 2568, + "date": "2017-05-25", + "sha1": "a178fea584cfa8bb4c6f1b8323c3845d20f2aeca", + "md5": "0442b71a14dfee97a0e1e7e436646972", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/HOWTO/proxy_certificates.txt", + "type": "file", + "name": "proxy_certificates.txt", + "base_name": "proxy_certificates", + "extension": ".txt", + "size": 12548, + "date": "2017-05-25", + "sha1": "46a05687414a9f3975a901f92c780b398dc13e4b", + "md5": "847cf8e431b79016381a25867fdbf9e7", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/man3", + "type": "directory", + "name": "man3", + "base_name": "man3", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2028, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/man3/SSL_CTX_set_tlsext_servername_callback.pod", + "type": "file", + "name": "SSL_CTX_set_tlsext_servername_callback.pod", + "base_name": "SSL_CTX_set_tlsext_servername_callback", + "extension": ".pod", + "size": 2028, + "date": "2017-05-25", + "sha1": "6262b39db85abe37c6dff4f4abc0073df49747c2", + "md5": "797fdcfd571454548b98492027229be8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl", + "type": "directory", + "name": "ssl", + "base_name": "ssl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 123, + "dirs_count": 0, + "size_count": 423117, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/d2i_SSL_SESSION.pod", + "type": "file", + "name": "d2i_SSL_SESSION.pod", + "base_name": "d2i_SSL_SESSION", + "extension": ".pod", + "size": 1529, + "date": "2017-05-25", + "sha1": "bad7e439eeb3fca404cc82d8219f8dcfb0a6931e", + "md5": "d2ed87d558732f7f8414963fe8839f76", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 44, + "end_line": 46, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 40, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/DTLSv1_listen.pod", + "type": "file", + "name": "DTLSv1_listen.pod", + "base_name": "DTLSv1_listen", + "extension": ".pod", + "size": 4497, + "date": "2017-05-25", + "sha1": "673dec4cd9d03d7cd97bed02e8d204db09a5dfa9", + "md5": "d4b26a15a1fc39917b197b44a1d923e8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 97, + "end_line": 99, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 93, + "end_line": 95 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/OPENSSL_init_ssl.pod", + "type": "file", + "name": "OPENSSL_init_ssl.pod", + "base_name": "OPENSSL_init_ssl", + "extension": ".pod", + "size": 2792, + "date": "2017-05-25", + "sha1": "f884424301c96d68ee2f8c1c99ddba4e75894c24", + "md5": "67cfdc6a9eac3c8cdb055260b14feb1d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/ssl.pod", + "type": "file", + "name": "ssl.pod", + "base_name": "ssl", + "extension": ".pod", + "size": 25985, + "date": "2017-05-25", + "sha1": "f53fcd304c4f6529fa26584657a9cad4536a8b76", + "md5": "dff4c00ec553ef94d912db582c57bb77", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 832, + "end_line": 832, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 828, + "end_line": 830 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_accept.pod", + "type": "file", + "name": "SSL_accept.pod", + "base_name": "SSL_accept", + "extension": ".pod", + "size": 2574, + "date": "2017-05-25", + "sha1": "9f6558fe055b022a3fd06691115e0796ee39d5e4", + "md5": "e2c471a9adbb080bdcd98a4cf16e17c5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_alert_type_string.pod", + "type": "file", + "name": "SSL_alert_type_string.pod", + "base_name": "SSL_alert_type_string", + "extension": ".pod", + "size": 7535, + "date": "2017-05-25", + "sha1": "5bede5cadac79bfc026e09975a81e5a48e84a54b", + "md5": "e26e9ff32ef3bca19218563f88f7899b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 53.57, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 237, + "end_line": 238, + "matched_rule": { + "identifier": "apache-2.0_55.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 237, + "end_line": 237, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 233, + "end_line": 235 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_check_chain.pod", + "type": "file", + "name": "SSL_check_chain.pod", + "base_name": "SSL_check_chain", + "extension": ".pod", + "size": 3162, + "date": "2017-05-25", + "sha1": "96ea5a315153a4cf673e544915ff8be76f88f864", + "md5": "44ce7c3e731a31474e030c03eb94a24e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 89, + "end_line": 91, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 85, + "end_line": 87 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CIPHER_get_name.pod", + "type": "file", + "name": "SSL_CIPHER_get_name.pod", + "base_name": "SSL_CIPHER_get_name", + "extension": ".pod", + "size": 4043, + "date": "2017-05-25", + "sha1": "3bc32cf95a9fbb4370b016f0a968a05522248c52", + "md5": "d3acf1a87590fb1514c5ff8557102e3e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 123, + "end_line": 125, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 119, + "end_line": 121 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_clear.pod", + "type": "file", + "name": "SSL_clear.pod", + "base_name": "SSL_clear", + "extension": ".pod", + "size": 2567, + "date": "2017-05-25", + "sha1": "7c42cf3b4e1c982ae433415f2bdacacf108d7b5c", + "md5": "c4c4fe51fb83c560c2075c118a130da2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_COMP_add_compression_method.pod", + "type": "file", + "name": "SSL_COMP_add_compression_method.pod", + "base_name": "SSL_COMP_add_compression_method", + "extension": ".pod", + "size": 4095, + "date": "2017-05-25", + "sha1": "9595097f8a05166da1f69907e3d6e5c7fb69ce68", + "md5": "e74adc3d09a2b4254727e5d7c7c4f5c2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 111, + "end_line": 113, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 107, + "end_line": 109 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CONF_cmd.pod", + "type": "file", + "name": "SSL_CONF_cmd.pod", + "base_name": "SSL_CONF_cmd", + "extension": ".pod", + "size": 19616, + "date": "2017-05-25", + "sha1": "1d57354194b2ded8f4ddfe1c5437f35d6c1177a6", + "md5": "9701e8afff5337cc94528c8ded6f593a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 548, + "end_line": 550, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 544, + "end_line": 546 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CONF_cmd_argv.pod", + "type": "file", + "name": "SSL_CONF_cmd_argv.pod", + "base_name": "SSL_CONF_cmd_argv", + "extension": ".pod", + "size": 1369, + "date": "2017-05-25", + "sha1": "3a4669d48cdfb70ffdc4f2eb916638f41a294b5e", + "md5": "bfb1df0fb32ab801be622457b259284b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CONF_CTX_new.pod", + "type": "file", + "name": "SSL_CONF_CTX_new.pod", + "base_name": "SSL_CONF_CTX_new", + "extension": ".pod", + "size": 1211, + "date": "2017-05-25", + "sha1": "a709d428ac692d6f222e2fa1d7cd87f08b9a3f50", + "md5": "a9b8863b2683d679cc3a116f2dab1574", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CONF_CTX_set1_prefix.pod", + "type": "file", + "name": "SSL_CONF_CTX_set1_prefix.pod", + "base_name": "SSL_CONF_CTX_set1_prefix", + "extension": ".pod", + "size": 1724, + "date": "2017-05-25", + "sha1": "d0f762dbbac0b63989953a049dc33505b521c45d", + "md5": "1696ee73b85d99f21a1d2f9a1dc06adc", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 53, + "end_line": 55, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 49, + "end_line": 51 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CONF_CTX_set_flags.pod", + "type": "file", + "name": "SSL_CONF_CTX_set_flags.pod", + "base_name": "SSL_CONF_CTX_set_flags", + "extension": ".pod", + "size": 2300, + "date": "2017-05-25", + "sha1": "54e17ce6067c3c492e7bf13f5c459095fc0575e6", + "md5": "79e611d04d481032791e2b83f031a8e8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CONF_CTX_set_ssl_ctx.pod", + "type": "file", + "name": "SSL_CONF_CTX_set_ssl_ctx.pod", + "base_name": "SSL_CONF_CTX_set_ssl_ctx", + "extension": ".pod", + "size": 1538, + "date": "2017-05-25", + "sha1": "48c9958c8a5948684b43a73fc1ecebb1f7dc3435", + "md5": "973b29d930728ee6817d52848f1ce8d0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_connect.pod", + "type": "file", + "name": "SSL_connect.pod", + "base_name": "SSL_connect", + "extension": ".pod", + "size": 2564, + "date": "2017-05-25", + "sha1": "4137777681280db9fae6a1020c25f3d818faaf2c", + "md5": "e8b17fbe9f24dc09d0cba24fd73ec5a3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_add1_chain_cert.pod", + "type": "file", + "name": "SSL_CTX_add1_chain_cert.pod", + "base_name": "SSL_CTX_add1_chain_cert", + "extension": ".pod", + "size": 6913, + "date": "2017-05-25", + "sha1": "3bac968351cc0394e39cdaf3cb75186ef8ba8526", + "md5": "95f3a60448f3dfe2e5613943b739b70b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 153, + "end_line": 155, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 149, + "end_line": 151 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_add_extra_chain_cert.pod", + "type": "file", + "name": "SSL_CTX_add_extra_chain_cert.pod", + "base_name": "SSL_CTX_add_extra_chain_cert", + "extension": ".pod", + "size": 2431, + "date": "2017-05-25", + "sha1": "5e66ba70b80f990487783a4ff1a2e7de6e9da599", + "md5": "c9bb27db5ebb01a80bc2a28c832c80ba", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 75, + "end_line": 77, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 71, + "end_line": 73 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_add_session.pod", + "type": "file", + "name": "SSL_CTX_add_session.pod", + "base_name": "SSL_CTX_add_session", + "extension": ".pod", + "size": 2587, + "date": "2017-05-25", + "sha1": "4ce1e86db3b64059c68f6ce73fae72377fad57b8", + "md5": "6a937fd11d557da81e1a4aa8c272a767", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_config.pod", + "type": "file", + "name": "SSL_CTX_config.pod", + "base_name": "SSL_CTX_config", + "extension": ".pod", + "size": 2247, + "date": "2017-05-25", + "sha1": "7322a20a1ac4a1e4236db3c59f39bdd650e1f494", + "md5": "3194abf136333ff8c1292804aabcd445", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 88, + "end_line": 90, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 84, + "end_line": 86 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_ctrl.pod", + "type": "file", + "name": "SSL_CTX_ctrl.pod", + "base_name": "SSL_CTX_ctrl", + "extension": ".pod", + "size": 1258, + "date": "2017-05-25", + "sha1": "061b83d49fa6076652b4bdd8362e576567167905", + "md5": "6e00e7038fec2edff3e0963c149d9757", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 38, + "end_line": 40, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 34, + "end_line": 36 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_dane_enable.pod", + "type": "file", + "name": "SSL_CTX_dane_enable.pod", + "base_name": "SSL_CTX_dane_enable", + "extension": ".pod", + "size": 16230, + "date": "2017-05-25", + "sha1": "4622fbb3ae607479f67fcb139f4b3de536a619e4", + "md5": "010f4922cabf416da4db17830d65b747", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 377, + "end_line": 379, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 373, + "end_line": 375 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_flush_sessions.pod", + "type": "file", + "name": "SSL_CTX_flush_sessions.pod", + "base_name": "SSL_CTX_flush_sessions", + "extension": ".pod", + "size": 1729, + "date": "2017-05-25", + "sha1": "63abb71dad430d83e88abdbaa4a303e7cc6290d4", + "md5": "11b423448c9e9a840838403517f24fc1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_free.pod", + "type": "file", + "name": "SSL_CTX_free.pod", + "base_name": "SSL_CTX_free", + "extension": ".pod", + "size": 1482, + "date": "2017-05-25", + "sha1": "797b4c51944a5bfed7fde412e368992942f36f80", + "md5": "f9e707b310bcfa833b2e1e7e34871783", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 46, + "end_line": 48, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 42, + "end_line": 44 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_get0_param.pod", + "type": "file", + "name": "SSL_CTX_get0_param.pod", + "base_name": "SSL_CTX_get0_param", + "extension": ".pod", + "size": 1781, + "date": "2017-05-25", + "sha1": "941e13b3d1c0673f054d4944aa586c8537eaa2c2", + "md5": "272d7a7ddd6c2cd563af9b9628bd5798", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_get_verify_mode.pod", + "type": "file", + "name": "SSL_CTX_get_verify_mode.pod", + "base_name": "SSL_CTX_get_verify_mode", + "extension": ".pod", + "size": 1982, + "date": "2017-05-25", + "sha1": "e217d32667c3e454e4c2c687d833bd1405a5d593", + "md5": "9166bce52398c847fc21ee83dbd95851", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 54, + "end_line": 56, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 50, + "end_line": 52 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_has_client_custom_ext.pod", + "type": "file", + "name": "SSL_CTX_has_client_custom_ext.pod", + "base_name": "SSL_CTX_has_client_custom_ext", + "extension": ".pod", + "size": 889, + "date": "2017-05-25", + "sha1": "a5f24963d7e22f48939bd98859e73b3b44056fe8", + "md5": "c58c83bb0606a7fd269e33bc9955415e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 32, + "end_line": 34, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 28, + "end_line": 30 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_load_verify_locations.pod", + "type": "file", + "name": "SSL_CTX_load_verify_locations.pod", + "base_name": "SSL_CTX_load_verify_locations", + "extension": ".pod", + "size": 5734, + "date": "2017-05-25", + "sha1": "0402f4e8b977d36e30757f0a839e1181e280b64a", + "md5": "06395356bf22e8d19b25b9ca6f8497f1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 156, + "end_line": 158, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 152, + "end_line": 154 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_new.pod", + "type": "file", + "name": "SSL_CTX_new.pod", + "base_name": "SSL_CTX_new", + "extension": ".pod", + "size": 7753, + "date": "2017-05-25", + "sha1": "8e4dd1e899353f519d2f02b141da3e14065bc9e8", + "md5": "d8dbcbf62ef735ec6685b4ef8dda6c86", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 213, + "end_line": 215, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 209, + "end_line": 211 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_sess_number.pod", + "type": "file", + "name": "SSL_CTX_sess_number.pod", + "base_name": "SSL_CTX_sess_number", + "extension": ".pod", + "size": 3097, + "date": "2017-05-25", + "sha1": "b8f5d0b9c9256464fda2a5731775480cd06bce22", + "md5": "8fec84f9fdb2a6d3749d4b023e3211b5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 80, + "end_line": 82, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 76, + "end_line": 78 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_sess_set_cache_size.pod", + "type": "file", + "name": "SSL_CTX_sess_set_cache_size.pod", + "base_name": "SSL_CTX_sess_set_cache_size", + "extension": ".pod", + "size": 1872, + "date": "2017-05-25", + "sha1": "d5072ed4683ed8e35332a998ed3643c59c8f0ae5", + "md5": "71c8bed463eff05ccf6d1c1de0a02d70", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_sess_set_get_cb.pod", + "type": "file", + "name": "SSL_CTX_sess_set_get_cb.pod", + "base_name": "SSL_CTX_sess_set_get_cb", + "extension": ".pod", + "size": 4142, + "date": "2017-05-25", + "sha1": "86a5b41004754002a99d0e54289892a0f63dd66a", + "md5": "9515daffac725d0be7e6433771f394d0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 91, + "end_line": 93, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 87, + "end_line": 89 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_sessions.pod", + "type": "file", + "name": "SSL_CTX_sessions.pod", + "base_name": "SSL_CTX_sessions", + "extension": ".pod", + "size": 1130, + "date": "2017-05-25", + "sha1": "34b9cb980a4148462d433cb5ba10950e76acc614", + "md5": "355c409be87be654aa64180e82993ae0", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 38, + "end_line": 40, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 34, + "end_line": 36 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set1_curves.pod", + "type": "file", + "name": "SSL_CTX_set1_curves.pod", + "base_name": "SSL_CTX_set1_curves", + "extension": ".pod", + "size": 3174, + "date": "2017-05-25", + "sha1": "f0279297ea46b4ee972f251379d31ccedf952ac1", + "md5": "5c3887377bd6ea90c1492fb5bbd89fd1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 85, + "end_line": 87, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 81, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set1_sigalgs.pod", + "type": "file", + "name": "SSL_CTX_set1_sigalgs.pod", + "base_name": "SSL_CTX_set1_sigalgs", + "extension": ".pod", + "size": 4242, + "date": "2017-05-25", + "sha1": "1ab2f2fb49025fc1f0a373a669633ba196242d92", + "md5": "1f4251a66d72f92725256b9d8efd471c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 108, + "end_line": 110, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 104, + "end_line": 106 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set1_verify_cert_store.pod", + "type": "file", + "name": "SSL_CTX_set1_verify_cert_store.pod", + "base_name": "SSL_CTX_set1_verify_cert_store", + "extension": ".pod", + "size": 3488, + "date": "2017-05-25", + "sha1": "5639eb3a897c159f0929632851387179a2c12e2d", + "md5": "ca87229aec17b9d3ae4dd16681dda270", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 95, + "end_line": 97, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 91, + "end_line": 93 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_alpn_select_cb.pod", + "type": "file", + "name": "SSL_CTX_set_alpn_select_cb.pod", + "base_name": "SSL_CTX_set_alpn_select_cb", + "extension": ".pod", + "size": 8439, + "date": "2017-05-25", + "sha1": "d3e2cc46b44903d7b448afbeff04f594ad7cd2d2", + "md5": "492aefffda311f4513191749db14787b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 192, + "end_line": 194, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 188, + "end_line": 190 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_cert_cb.pod", + "type": "file", + "name": "SSL_CTX_set_cert_cb.pod", + "base_name": "SSL_CTX_set_cert_cb", + "extension": ".pod", + "size": 2943, + "date": "2017-05-25", + "sha1": "472645c0f30b19c8d2e3a062df9bb7ddb924c74d", + "md5": "91cd2dfae5443ebe1e41100a313893fa", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_cert_store.pod", + "type": "file", + "name": "SSL_CTX_set_cert_store.pod", + "base_name": "SSL_CTX_set_cert_store", + "extension": ".pod", + "size": 2448, + "date": "2017-05-25", + "sha1": "1cc74500c90b6f464f582fafcf945fd77483b9b3", + "md5": "a7b6bf75f749a3bc242232ad3576c517", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 68, + "end_line": 70, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 64, + "end_line": 66 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_cert_verify_callback.pod", + "type": "file", + "name": "SSL_CTX_set_cert_verify_callback.pod", + "base_name": "SSL_CTX_set_cert_verify_callback", + "extension": ".pod", + "size": 2780, + "date": "2017-05-25", + "sha1": "530fe9af89e06615a6c8b91a05f89c0343bc58a5", + "md5": "7ff7491982e92efdb66af3f7f9d8c1ae", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_cipher_list.pod", + "type": "file", + "name": "SSL_CTX_set_cipher_list.pod", + "base_name": "SSL_CTX_set_cipher_list", + "extension": ".pod", + "size": 2700, + "date": "2017-05-25", + "sha1": "35be6b0bc6338b99a95fb3bccb6d64d1bc2b8821", + "md5": "88b353fd6f546e107fd8bf2ced1f6947", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 69, + "end_line": 71, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 65, + "end_line": 67 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_client_CA_list.pod", + "type": "file", + "name": "SSL_CTX_set_client_CA_list.pod", + "base_name": "SSL_CTX_set_client_CA_list", + "extension": ".pod", + "size": 3261, + "date": "2017-05-25", + "sha1": "638afdf55167a796444fe1d4d1f4c814b6740f4e", + "md5": "2d30debb5b179a63c3178cb294bd4e56", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_client_cert_cb.pod", + "type": "file", + "name": "SSL_CTX_set_client_cert_cb.pod", + "base_name": "SSL_CTX_set_client_cert_cb", + "extension": ".pod", + "size": 4555, + "date": "2017-05-25", + "sha1": "32704b96905596898c21ee1127ef00a8ba592ff1", + "md5": "6e5b9262989a3f0b5bfa0215c214e5c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_ct_validation_callback.pod", + "type": "file", + "name": "SSL_CTX_set_ct_validation_callback.pod", + "base_name": "SSL_CTX_set_ct_validation_callback", + "extension": ".pod", + "size": 6011, + "date": "2017-05-25", + "sha1": "fa71ef8d523b7f347926b39392d4d677f5b19404", + "md5": "7e689d96ee8f3b6317e0fe28d43bbd73", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 140, + "end_line": 142, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 136, + "end_line": 138 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_ctlog_list_file.pod", + "type": "file", + "name": "SSL_CTX_set_ctlog_list_file.pod", + "base_name": "SSL_CTX_set_ctlog_list_file", + "extension": ".pod", + "size": 1578, + "date": "2017-05-25", + "sha1": "07a0777153184b948736d3dcc6fcfd84cd9c3a0b", + "md5": "ca0fa51cabd1e36b888a0c086101edd8", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_default_passwd_cb.pod", + "type": "file", + "name": "SSL_CTX_set_default_passwd_cb.pod", + "base_name": "SSL_CTX_set_default_passwd_cb", + "extension": ".pod", + "size": 4285, + "date": "2017-05-25", + "sha1": "8d122cdf8028516c138e51cc911195d67ddafbea", + "md5": "6e46d1c8c9c39846b40b1a694c0caed5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 108, + "end_line": 110, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 104, + "end_line": 106 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_ex_data.pod", + "type": "file", + "name": "SSL_CTX_set_ex_data.pod", + "base_name": "SSL_CTX_set_ex_data", + "extension": ".pod", + "size": 1496, + "date": "2017-05-25", + "sha1": "b95b774a84303323703a6c3ee2ab6dbfa480b5d5", + "md5": "d27f2741c0dd8c9a44e679d852958b45", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 47, + "end_line": 49, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 43, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_generate_session_id.pod", + "type": "file", + "name": "SSL_CTX_set_generate_session_id.pod", + "base_name": "SSL_CTX_set_generate_session_id", + "extension": ".pod", + "size": 5705, + "date": "2017-05-25", + "sha1": "3aaf13fdb12b117f665fed9a101ac5d7e0bfb84a", + "md5": "8a6d3c04b9937d8784c8fe60b6872ba4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 134, + "end_line": 136, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 130, + "end_line": 132 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_info_callback.pod", + "type": "file", + "name": "SSL_CTX_set_info_callback.pod", + "base_name": "SSL_CTX_set_info_callback", + "extension": ".pod", + "size": 5096, + "date": "2017-05-25", + "sha1": "f6578adfa0037d895aebf8186a1238728e3eb4a0", + "md5": "9da470e83179291ee8d5085f42416e9a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 157, + "end_line": 159, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 153, + "end_line": 155 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_max_cert_list.pod", + "type": "file", + "name": "SSL_CTX_set_max_cert_list.pod", + "base_name": "SSL_CTX_set_max_cert_list", + "extension": ".pod", + "size": 2957, + "date": "2017-05-25", + "sha1": "40fbd688e457dc4f6a66ef482a0dde61b7aa8067", + "md5": "37861d75d7d2088cb0c50fd52d3af860", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_min_proto_version.pod", + "type": "file", + "name": "SSL_CTX_set_min_proto_version.pod", + "base_name": "SSL_CTX_set_min_proto_version", + "extension": ".pod", + "size": 1732, + "date": "2017-05-25", + "sha1": "d303ccf822229e256575bf2354a90b97f4c8019d", + "md5": "32e1db1ed95a92d8eaba80c49bd6a228", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 57, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 51, + "end_line": 53 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_mode.pod", + "type": "file", + "name": "SSL_CTX_set_mode.pod", + "base_name": "SSL_CTX_set_mode", + "extension": ".pod", + "size": 3649, + "date": "2017-05-25", + "sha1": "721097a9ffac89fc5a21b8b176679ea5ebac97cd", + "md5": "f70d1fa716f58f29ddae3470fdf5e4ef", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 109, + "end_line": 111, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 105, + "end_line": 107 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_msg_callback.pod", + "type": "file", + "name": "SSL_CTX_set_msg_callback.pod", + "base_name": "SSL_CTX_set_msg_callback", + "extension": ".pod", + "size": 3575, + "date": "2017-05-25", + "sha1": "a1fbe34f0bc7a1f3581cd691ee60bc0a37de0ca3", + "md5": "70a8b78a97b8fba941b0ba3966f9f266", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_options.pod", + "type": "file", + "name": "SSL_CTX_set_options.pod", + "base_name": "SSL_CTX_set_options", + "extension": ".pod", + "size": 9852, + "date": "2017-05-25", + "sha1": "baa67d3df48d32d183ece94b6a16f261b822ed70", + "md5": "447a7022f317ccb1d18c2e768d7c37c3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 287, + "end_line": 289, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 283, + "end_line": 285 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_psk_client_callback.pod", + "type": "file", + "name": "SSL_CTX_set_psk_client_callback.pod", + "base_name": "SSL_CTX_set_psk_client_callback", + "extension": ".pod", + "size": 2109, + "date": "2017-05-25", + "sha1": "e84be4b68b134d503539147d4c9b9d502fe57f14", + "md5": "651810bcf9e00a1782175683b20f8c43", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 61, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_quiet_shutdown.pod", + "type": "file", + "name": "SSL_CTX_set_quiet_shutdown.pod", + "base_name": "SSL_CTX_set_quiet_shutdown", + "extension": ".pod", + "size": 2342, + "date": "2017-05-25", + "sha1": "eb0a9c3d8977090edc84b52b0054a7dc1c01d0c8", + "md5": "2eb38ed4765d3dafd0196463c0eb1418", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 67, + "end_line": 69, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 63, + "end_line": 65 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_read_ahead.pod", + "type": "file", + "name": "SSL_CTX_set_read_ahead.pod", + "base_name": "SSL_CTX_set_read_ahead", + "extension": ".pod", + "size": 1966, + "date": "2017-05-25", + "sha1": "1e18df99f445184afe001f4016f1a03bf709f205", + "md5": "ae528c7824ebd2602f8c82e51611c000", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 55, + "end_line": 57, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 51, + "end_line": 53 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_security_level.pod", + "type": "file", + "name": "SSL_CTX_set_security_level.pod", + "base_name": "SSL_CTX_set_security_level", + "extension": ".pod", + "size": 7097, + "date": "2017-05-25", + "sha1": "534e28c91f97fd81b4309e4d0067176e4ad6d5af", + "md5": "75be8df9313e34e868ade52882c1cf4c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text, with very long lines", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 164, + "end_line": 166, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 160, + "end_line": 162 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_session_cache_mode.pod", + "type": "file", + "name": "SSL_CTX_set_session_cache_mode.pod", + "base_name": "SSL_CTX_set_session_cache_mode", + "extension": ".pod", + "size": 5033, + "date": "2017-05-25", + "sha1": "84afe590b9b9c6ee96c821c5470b3ce24263efd3", + "md5": "c23976c08006f28e1e205df5cbb1727e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 136, + "end_line": 138, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 132, + "end_line": 134 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_session_id_context.pod", + "type": "file", + "name": "SSL_CTX_set_session_id_context.pod", + "base_name": "SSL_CTX_set_session_id_context", + "extension": ".pod", + "size": 3054, + "date": "2017-05-25", + "sha1": "4dbc2cd024e6a1e6fc78938a563d3dffe68e6730", + "md5": "b6b91b46d899acc6afc539c20320cf24", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 87, + "end_line": 89, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 83, + "end_line": 85 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_split_send_fragment.pod", + "type": "file", + "name": "SSL_CTX_set_split_send_fragment.pod", + "base_name": "SSL_CTX_set_split_send_fragment", + "extension": ".pod", + "size": 5885, + "date": "2017-05-25", + "sha1": "6ca55c6386925c1219ed193a9bcfd323b78a5f89", + "md5": "78862df4272dabd1dab9c114e07f8c5c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 127, + "end_line": 129, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 123, + "end_line": 125 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_ssl_version.pod", + "type": "file", + "name": "SSL_CTX_set_ssl_version.pod", + "base_name": "SSL_CTX_set_ssl_version", + "extension": ".pod", + "size": 1755, + "date": "2017-05-25", + "sha1": "13991a0541c3885d7aceef1cd8bd250ed4081997", + "md5": "5c4678b7cdea9798115a9918f1583810", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_timeout.pod", + "type": "file", + "name": "SSL_CTX_set_timeout.pod", + "base_name": "SSL_CTX_set_timeout", + "extension": ".pod", + "size": 2118, + "date": "2017-05-25", + "sha1": "c5e77ac79fcbcb61fb157893bab8236211d5083f", + "md5": "9c1545328d20b52e49f658d7ffb002d7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_tlsext_status_cb.pod", + "type": "file", + "name": "SSL_CTX_set_tlsext_status_cb.pod", + "base_name": "SSL_CTX_set_tlsext_status_cb", + "extension": ".pod", + "size": 5705, + "date": "2017-05-25", + "sha1": "94b456b454f231fbca2b41f37f4f3351e39ab980", + "md5": "e8ed102a8717c909ca44f2dd53cd0649", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 120, + "end_line": 122, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 116, + "end_line": 118 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_tlsext_ticket_key_cb.pod", + "type": "file", + "name": "SSL_CTX_set_tlsext_ticket_key_cb.pod", + "base_name": "SSL_CTX_set_tlsext_ticket_key_cb", + "extension": ".pod", + "size": 7705, + "date": "2017-05-25", + "sha1": "1de6673a71d43fc0056f33cc4066259ba0351e5f", + "md5": "ca97c7982cac2d484188373530559125", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 193, + "end_line": 195, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 189, + "end_line": 191 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod", + "type": "file", + "name": "SSL_CTX_set_tmp_dh_callback.pod", + "base_name": "SSL_CTX_set_tmp_dh_callback", + "extension": ".pod", + "size": 4980, + "date": "2017-05-25", + "sha1": "e28e67f6193f8c76ad23ffc21d56ba1f688dc60e", + "md5": "3942d081b6fa28649bd77d6eeb2af39f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 132, + "end_line": 134, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 128, + "end_line": 130 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_set_verify.pod", + "type": "file", + "name": "SSL_CTX_set_verify.pod", + "base_name": "SSL_CTX_set_verify", + "extension": ".pod", + "size": 11432, + "date": "2017-05-25", + "sha1": "98c5d819edf3cd1b2a9dd957ccb51e5c7a808b07", + "md5": "7887cae252559b6be43d89676282249c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 302, + "end_line": 304, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 298, + "end_line": 300 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_use_certificate.pod", + "type": "file", + "name": "SSL_CTX_use_certificate.pod", + "base_name": "SSL_CTX_use_certificate", + "extension": ".pod", + "size": 8433, + "date": "2017-05-25", + "sha1": "e932ae78aae2b6db45b5c933857ddbfc3bc2bf69", + "md5": "b31815210ed98c2f39167cf93aab1c4f", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 175, + "end_line": 177, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 171, + "end_line": 173 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_use_psk_identity_hint.pod", + "type": "file", + "name": "SSL_CTX_use_psk_identity_hint.pod", + "base_name": "SSL_CTX_use_psk_identity_hint", + "extension": ".pod", + "size": 2952, + "date": "2017-05-25", + "sha1": "a58fec83593c1e3c789455dea99ac28425756077", + "md5": "468ce05fbb48c73386847c1d5f098328", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 80, + "end_line": 82, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 76, + "end_line": 78 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 85, + "end_line": 85 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_CTX_use_serverinfo.pod", + "type": "file", + "name": "SSL_CTX_use_serverinfo.pod", + "base_name": "SSL_CTX_use_serverinfo", + "extension": ".pod", + "size": 2063, + "date": "2017-05-25", + "sha1": "c94e330eb03ed4c36ad7e76bb312f5cb0cac41e6", + "md5": "80d71a4abb785d359ee3c60d6e85cd3c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_do_handshake.pod", + "type": "file", + "name": "SSL_do_handshake.pod", + "base_name": "SSL_do_handshake", + "extension": ".pod", + "size": 2584, + "date": "2017-05-25", + "sha1": "bb48dc8e47e2803b4414f980a0dc3b4a3f92d518", + "md5": "b6b4ad4987debd733c960856c820140a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_extension_supported.pod", + "type": "file", + "name": "SSL_extension_supported.pod", + "base_name": "SSL_extension_supported", + "extension": ".pod", + "size": 6084, + "date": "2017-05-25", + "sha1": "9bb30ef80ed89f0468fd6d3b71645edd883b8e11", + "md5": "bfdfd70389328181d46551eab537402e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 140, + "end_line": 142, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 136, + "end_line": 138 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_free.pod", + "type": "file", + "name": "SSL_free.pod", + "base_name": "SSL_free", + "extension": ".pod", + "size": 1644, + "date": "2017-05-25", + "sha1": "295a67685e3a0d343ccce289d3336115a9a78811", + "md5": "2696977577d1ce7d1bf177c1199af022", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get0_peer_scts.pod", + "type": "file", + "name": "SSL_get0_peer_scts.pod", + "base_name": "SSL_get0_peer_scts", + "extension": ".pod", + "size": 1256, + "date": "2017-05-25", + "sha1": "6dc232f6b787e6afe3ab64f9632cc81bb1cc66f4", + "md5": "69df51de09e03c1a5d4494c412474ce4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 40, + "end_line": 42, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_all_async_fds.pod", + "type": "file", + "name": "SSL_get_all_async_fds.pod", + "base_name": "SSL_get_all_async_fds", + "extension": ".pod", + "size": 3486, + "date": "2017-05-25", + "sha1": "74eb86fd6448030a47ad08d97eb006cd27d7ce9b", + "md5": "80818f01696c78d565babb2570d271d2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_ciphers.pod", + "type": "file", + "name": "SSL_get_ciphers.pod", + "base_name": "SSL_get_ciphers", + "extension": ".pod", + "size": 3119, + "date": "2017-05-25", + "sha1": "360863c490e0791eee67605372570e9e710b5d80", + "md5": "3ef17570d1095e12d84d68470353a11c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 79, + "end_line": 81, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 75, + "end_line": 77 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_client_CA_list.pod", + "type": "file", + "name": "SSL_get_client_CA_list.pod", + "base_name": "SSL_get_client_CA_list", + "extension": ".pod", + "size": 1636, + "date": "2017-05-25", + "sha1": "0ca51ff82d1b6942c6e27edfdf1bc5162e8d2750", + "md5": "5b746bcf501e7e19e56d31bfe33b545a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 57, + "end_line": 59, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 53, + "end_line": 55 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_client_random.pod", + "type": "file", + "name": "SSL_get_client_random.pod", + "base_name": "SSL_get_client_random", + "extension": ".pod", + "size": 3363, + "date": "2017-05-25", + "sha1": "4a11dcc27b8774c7adbba91cd9cbd14be3dae578", + "md5": "8f02e8b4100e8d7b374eda70b9656135", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 83, + "end_line": 85, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 79, + "end_line": 81 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_current_cipher.pod", + "type": "file", + "name": "SSL_get_current_cipher.pod", + "base_name": "SSL_get_current_cipher", + "extension": ".pod", + "size": 1524, + "date": "2017-05-25", + "sha1": "eabf03bef17d7cb4020f95c2f01ea124cde75cac", + "md5": "3a5a9565c554e386bd8896b8bcd208eb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 50, + "end_line": 52, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 46, + "end_line": 48 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_default_timeout.pod", + "type": "file", + "name": "SSL_get_default_timeout.pod", + "base_name": "SSL_get_default_timeout", + "extension": ".pod", + "size": 1257, + "date": "2017-05-25", + "sha1": "fbe777954c5c187786a18a9f3acbdb8b970d4955", + "md5": "e234f2373ef91cea969e129a45362df7", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_error.pod", + "type": "file", + "name": "SSL_get_error.pod", + "base_name": "SSL_get_error", + "extension": ".pod", + "size": 5549, + "date": "2017-05-25", + "sha1": "deed2b5e8186a34895d02ecc16b0bde9bda77f5a", + "md5": "64b0a19f116a48cc64fcad0478092881", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 138, + "end_line": 140, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 134, + "end_line": 136 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_extms_support.pod", + "type": "file", + "name": "SSL_get_extms_support.pod", + "base_name": "SSL_get_extms_support", + "extension": ".pod", + "size": 922, + "date": "2017-05-25", + "sha1": "9281c37b3107597b8540a99002ad06a3021ac51f", + "md5": "71a6a7cd0c4b8f4127aaae7f818be3d1", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 35, + "end_line": 37, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 31, + "end_line": 33 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_fd.pod", + "type": "file", + "name": "SSL_get_fd.pod", + "base_name": "SSL_get_fd", + "extension": ".pod", + "size": 1219, + "date": "2017-05-25", + "sha1": "d6a4e7cf2483d087613197cd23ae447bda165967", + "md5": "13df7eec598004675483705f25775631", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_peer_cert_chain.pod", + "type": "file", + "name": "SSL_get_peer_cert_chain.pod", + "base_name": "SSL_get_peer_cert_chain", + "extension": ".pod", + "size": 2569, + "date": "2017-05-25", + "sha1": "27dc2b5b953c1c7c82631dd4ae864f7e6b743d6f", + "md5": "d00094490fd47afbb8c32bb878d12420", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 72, + "end_line": 74, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 68, + "end_line": 70 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_peer_certificate.pod", + "type": "file", + "name": "SSL_get_peer_certificate.pod", + "base_name": "SSL_get_peer_certificate", + "extension": ".pod", + "size": 1697, + "date": "2017-05-25", + "sha1": "261317573fa1654c205ba635a2d224f3161cd008", + "md5": "b327a9096c4db6bdb4eba1492dc6aee2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_psk_identity.pod", + "type": "file", + "name": "SSL_get_psk_identity.pod", + "base_name": "SSL_get_psk_identity", + "extension": ".pod", + "size": 1252, + "date": "2017-05-25", + "sha1": "efcbbc2357eb54cc9ce52ce13adc93b095450519", + "md5": "610acbfb7d88774261e4bc47c8899518", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 37, + "end_line": 39, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 33, + "end_line": 35 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 42, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_rbio.pod", + "type": "file", + "name": "SSL_get_rbio.pod", + "base_name": "SSL_get_rbio", + "extension": ".pod", + "size": 957, + "date": "2017-05-25", + "sha1": "4f8c07eae94542052ab7348a9d84d7326de86e35", + "md5": "b599a7d81e412b2dd240984fef03610e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 44, + "end_line": 46, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 40, + "end_line": 42 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_session.pod", + "type": "file", + "name": "SSL_get_session.pod", + "base_name": "SSL_get_session", + "extension": ".pod", + "size": 2492, + "date": "2017-05-25", + "sha1": "da6dadf5066b40a935d1c51e291b39c4ba098274", + "md5": "9ec2e5139369b392f642bbe5d17fecdc", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 77, + "end_line": 79, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 73, + "end_line": 75 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_shared_sigalgs.pod", + "type": "file", + "name": "SSL_get_shared_sigalgs.pod", + "base_name": "SSL_get_shared_sigalgs", + "extension": ".pod", + "size": 3335, + "date": "2017-05-25", + "sha1": "d47938b467528185b23d5d93e5be5d63297f27e1", + "md5": "e48bc7ae02080d913cb25552b16ea210", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 81, + "end_line": 83, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 77, + "end_line": 79 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_SSL_CTX.pod", + "type": "file", + "name": "SSL_get_SSL_CTX.pod", + "base_name": "SSL_get_SSL_CTX", + "extension": ".pod", + "size": 751, + "date": "2017-05-25", + "sha1": "9067e7551075da0302813183e39ff3818218c422", + "md5": "78614f1baafb15128ad5eb3ed7d827c4", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 30, + "end_line": 32, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 26, + "end_line": 28 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_verify_result.pod", + "type": "file", + "name": "SSL_get_verify_result.pod", + "base_name": "SSL_get_verify_result", + "extension": ".pod", + "size": 1622, + "date": "2017-05-25", + "sha1": "35b2f0e86935b61bb82dc3bb0e86c9c6e8f72f44", + "md5": "59e0c30be6bc43a5695c48618f894b2b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 61, + "end_line": 63, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 57, + "end_line": 59 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_get_version.pod", + "type": "file", + "name": "SSL_get_version.pod", + "base_name": "SSL_get_version", + "extension": ".pod", + "size": 1233, + "date": "2017-05-25", + "sha1": "4f9f6ca95e730aa27f5c4d1e05166f46f85e0bd5", + "md5": "8fe3e6a77ab355abc5c08f678f4e2a28", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 62, + "end_line": 64, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 58, + "end_line": 60 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_library_init.pod", + "type": "file", + "name": "SSL_library_init.pod", + "base_name": "SSL_library_init", + "extension": ".pod", + "size": 1270, + "date": "2017-05-25", + "sha1": "dda48d5947f9cad170d24c0d082eef08195d6780", + "md5": "4481bd683df41c023a606f0eef019865", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 52, + "end_line": 54, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 48, + "end_line": 50 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_load_client_CA_file.pod", + "type": "file", + "name": "SSL_load_client_CA_file.pod", + "base_name": "SSL_load_client_CA_file", + "extension": ".pod", + "size": 1572, + "date": "2017-05-25", + "sha1": "fea41df558f2f11f62b422bb236b98e5dfb757c2", + "md5": "d2d1b44a55976aa746545d4f90e66096", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 66, + "end_line": 68, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 62, + "end_line": 64 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_new.pod", + "type": "file", + "name": "SSL_new.pod", + "base_name": "SSL_new", + "extension": ".pod", + "size": 1576, + "date": "2017-05-25", + "sha1": "0821f6274a2d3bdf047721223f9ee130da25be81", + "md5": "87065cb017722cf93f52375973b85737", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 56, + "end_line": 58, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 52, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_pending.pod", + "type": "file", + "name": "SSL_pending.pod", + "base_name": "SSL_pending", + "extension": ".pod", + "size": 2698, + "date": "2017-05-25", + "sha1": "4a7bc6627582a5527eb9d18d225faa92b89a2e96", + "md5": "a42c57b8b279f7761af7f4d22ae97f31", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_read.pod", + "type": "file", + "name": "SSL_read.pod", + "base_name": "SSL_read", + "extension": ".pod", + "size": 4570, + "date": "2017-05-25", + "sha1": "abd89081445e3a0d3824a1dbc81826597a579c4b", + "md5": "94f2119ece3a0ed1066b05ef5260e835", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 116, + "end_line": 118, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 112, + "end_line": 114 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_rstate_string.pod", + "type": "file", + "name": "SSL_rstate_string.pod", + "base_name": "SSL_rstate_string", + "extension": ".pod", + "size": 1563, + "date": "2017-05-25", + "sha1": "7404bdf4abcc0c2786c47c7970c48c4a09eb3855", + "md5": "2c08dd8187f3418b2b786e7a3f013604", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 63, + "end_line": 65, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 59, + "end_line": 61 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_free.pod", + "type": "file", + "name": "SSL_SESSION_free.pod", + "base_name": "SSL_SESSION_free", + "extension": ".pod", + "size": 2726, + "date": "2017-05-25", + "sha1": "f8806749189cfaab05cdc1332e1eb358df321c15", + "md5": "f22647f0b16559c0eb407f0e520a4a3a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 73, + "end_line": 75, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 69, + "end_line": 71 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_get0_cipher.pod", + "type": "file", + "name": "SSL_SESSION_get0_cipher.pod", + "base_name": "SSL_SESSION_get0_cipher", + "extension": ".pod", + "size": 1015, + "date": "2017-05-25", + "sha1": "ff2656ffcbe51323383c7bc6326062ce6fd381d9", + "md5": "ca3e23a5be193ccacdf0c6837429af8e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 37, + "end_line": 39, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 33, + "end_line": 35 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_get0_hostname.pod", + "type": "file", + "name": "SSL_SESSION_get0_hostname.pod", + "base_name": "SSL_SESSION_get0_hostname", + "extension": ".pod", + "size": 896, + "date": "2017-05-25", + "sha1": "fd7a71fefc0c1d9e7bdfbec7d7a485d698436820", + "md5": "4cb2374f7009edb4ce59d2819799c3c2", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 32, + "end_line": 34, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 28, + "end_line": 30 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_get0_id_context.pod", + "type": "file", + "name": "SSL_SESSION_get0_id_context.pod", + "base_name": "SSL_SESSION_get0_id_context", + "extension": ".pod", + "size": 1641, + "date": "2017-05-25", + "sha1": "c72c7930469193cc856cf1285f364cd77a8f76b8", + "md5": "8019da105daa144c4605f6aa1957c042", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 47, + "end_line": 49 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_get0_peer.pod", + "type": "file", + "name": "SSL_SESSION_get0_peer.pod", + "base_name": "SSL_SESSION_get0_peer", + "extension": ".pod", + "size": 927, + "date": "2017-05-25", + "sha1": "a93d14883187d41379b7cdb9b702001d34377b43", + "md5": "c58fc060d1c2698e076980af1a92e683", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 33, + "end_line": 35, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 29, + "end_line": 31 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_get_compress_id.pod", + "type": "file", + "name": "SSL_SESSION_get_compress_id.pod", + "base_name": "SSL_SESSION_get_compress_id", + "extension": ".pod", + "size": 937, + "date": "2017-05-25", + "sha1": "472cc5b1b15f9e707ad476d872c072a30d652f4d", + "md5": "0c3c7c57b017b2270f5d2e81a77da1ab", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 34, + "end_line": 36, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_get_ex_data.pod", + "type": "file", + "name": "SSL_SESSION_get_ex_data.pod", + "base_name": "SSL_SESSION_get_ex_data", + "extension": ".pod", + "size": 1350, + "date": "2017-05-25", + "sha1": "c4313b259df60c4b9f743349ccf972c677aa9503", + "md5": "f18c68bd1a46b0ec26d18384dfc5ddda", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_get_protocol_version.pod", + "type": "file", + "name": "SSL_SESSION_get_protocol_version.pod", + "base_name": "SSL_SESSION_get_protocol_version", + "extension": ".pod", + "size": 1098, + "date": "2017-05-25", + "sha1": "bd71b17d6560ddfe2ee7a473b2394d0ac374ba2f", + "md5": "ecd265c85e0c866f04f4795927911934", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 39, + "end_line": 41, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 35, + "end_line": 37 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_get_time.pod", + "type": "file", + "name": "SSL_SESSION_get_time.pod", + "base_name": "SSL_SESSION_get_time", + "extension": ".pod", + "size": 2334, + "date": "2017-05-25", + "sha1": "8a7e5616cc0cd06f05b21509915d4292f4d7dcd8", + "md5": "4940b65be3f84db3f5130c17168aa746", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 71, + "end_line": 73, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 67, + "end_line": 69 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_has_ticket.pod", + "type": "file", + "name": "SSL_SESSION_has_ticket.pod", + "base_name": "SSL_SESSION_has_ticket", + "extension": ".pod", + "size": 1660, + "date": "2017-05-25", + "sha1": "7bf3505093ca57f737dc5efcff90bc12be6e713a", + "md5": "9cde65049b42b626eb11767660efd31a", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 48, + "end_line": 50, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 44, + "end_line": 46 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_print.pod", + "type": "file", + "name": "SSL_SESSION_print.pod", + "base_name": "SSL_SESSION_print", + "extension": ".pod", + "size": 1164, + "date": "2017-05-25", + "sha1": "3059cc516b0e984059cccfe8e350b410495f045e", + "md5": "8c5b45bc22e80ea46e9e8ca55a904e7e", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_session_reused.pod", + "type": "file", + "name": "SSL_session_reused.pod", + "base_name": "SSL_session_reused", + "extension": ".pod", + "size": 1117, + "date": "2017-05-25", + "sha1": "c06abee09d4946b3adb908a6402d842d08abfd8b", + "md5": "1ed87829379cf20f6ad4000388ba743c", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_SESSION_set1_id.pod", + "type": "file", + "name": "SSL_SESSION_set1_id.pod", + "base_name": "SSL_SESSION_set1_id", + "extension": ".pod", + "size": 1407, + "date": "2017-05-25", + "sha1": "d623736a3b1454f6fb03f8bd48874c547099ec36", + "md5": "db5ff56795e1af0cdcf57966535e4ad5", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 45, + "end_line": 47, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 41, + "end_line": 43 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_set1_host.pod", + "type": "file", + "name": "SSL_set1_host.pod", + "base_name": "SSL_set1_host", + "extension": ".pod", + "size": 4564, + "date": "2017-05-25", + "sha1": "0ba0005e6673614180f96484dea4ad67dbd419d6", + "md5": "edde7d73932a75c5f15e337f1758b627", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 116, + "end_line": 118, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 112, + "end_line": 114 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_set_bio.pod", + "type": "file", + "name": "SSL_set_bio.pod", + "base_name": "SSL_set_bio", + "extension": ".pod", + "size": 3653, + "date": "2017-05-25", + "sha1": "d1d17149e6b60b1d87a8466c79f87c855764a512", + "md5": "49cde302bef8bb9e4d5e2cddc9c33feb", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 103, + "end_line": 105, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 99, + "end_line": 101 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_set_connect_state.pod", + "type": "file", + "name": "SSL_set_connect_state.pod", + "base_name": "SSL_set_connect_state", + "extension": ".pod", + "size": 1941, + "date": "2017-05-25", + "sha1": "371c764dab379c4d9fb6b065d385cb749b3c2701", + "md5": "a6f604552cc528499b30c777c75d7fda", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 59, + "end_line": 61, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 55, + "end_line": 57 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_set_fd.pod", + "type": "file", + "name": "SSL_set_fd.pod", + "base_name": "SSL_set_fd", + "extension": ".pod", + "size": 1667, + "date": "2017-05-25", + "sha1": "d78ee4aaa0d19b0d7224569d1760050715dd499f", + "md5": "beaf3fbbbab4d043b6e31a6b4be223b3", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 58, + "end_line": 60, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 54, + "end_line": 56 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_set_session.pod", + "type": "file", + "name": "SSL_set_session.pod", + "base_name": "SSL_set_session", + "extension": ".pod", + "size": 2114, + "date": "2017-05-25", + "sha1": "fbaa1114b05607149539968b57066b4bce70cf09", + "md5": "16a8d2687351c53a16691057e131e922", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 65, + "end_line": 67, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 61, + "end_line": 63 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_set_shutdown.pod", + "type": "file", + "name": "SSL_set_shutdown.pod", + "base_name": "SSL_set_shutdown", + "extension": ".pod", + "size": 2212, + "date": "2017-05-25", + "sha1": "bb7c6a788c7b92bd02e0d4be82d5a2cbd02bc4d2", + "md5": "b072f7bb4191180f2ae20c7f34beeb1b", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 76, + "end_line": 78, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 72, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_set_verify_result.pod", + "type": "file", + "name": "SSL_set_verify_result.pod", + "base_name": "SSL_set_verify_result", + "extension": ".pod", + "size": 1230, + "date": "2017-05-25", + "sha1": "e7079621043771597f1c26135fc11dfe579e60a2", + "md5": "b108ed5c862da9908dfcf6183e7b9827", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 42, + "end_line": 44, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 38, + "end_line": 40 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_shutdown.pod", + "type": "file", + "name": "SSL_shutdown.pod", + "base_name": "SSL_shutdown", + "extension": ".pod", + "size": 5077, + "date": "2017-05-25", + "sha1": "3f761206e63ed12ba418f106977cbd9c82337ca2", + "md5": "6c82f51432b92cc461796283e3b46901", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 127, + "end_line": 129, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 123, + "end_line": 125 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_state_string.pod", + "type": "file", + "name": "SSL_state_string.pod", + "base_name": "SSL_state_string", + "extension": ".pod", + "size": 1591, + "date": "2017-05-25", + "sha1": "68dc39ce54c289ca213dc6269853d201b5c75648", + "md5": "61298edd54805e23b783bf0297a1a231", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 49, + "end_line": 51, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 45, + "end_line": 47 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_want.pod", + "type": "file", + "name": "SSL_want.pod", + "base_name": "SSL_want", + "extension": ".pod", + "size": 3029, + "date": "2017-05-25", + "sha1": "f4eb1ee6a286bc6c20ddf7e3d5447084854ff165", + "md5": "f1b29af2d1bb279476772c649dbbf93d", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 98, + "end_line": 100, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 94, + "end_line": 96 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/doc/ssl/SSL_write.pod", + "type": "file", + "name": "SSL_write.pod", + "base_name": "SSL_write", + "extension": ".pod", + "size": 4014, + "date": "2017-05-25", + "sha1": "88fd4458583dfe62e4241641d8484b4b1fef5148", + "md5": "ef4812a3a7dc9d5aa8c2a3e48ad3bd50", + "mime_type": "text/plain", + "file_type": "Perl POD document, ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 82.93, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 106, + "end_line": 108, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 102, + "end_line": 104 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines", + "type": "directory", + "name": "engines", + "base_name": "engines", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 28, + "dirs_count": 3, + "size_count": 272850, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 987, + "date": "2017-05-25", + "sha1": "12c249e73059d1568ccf5cf2cf10de30b29f8525", + "md5": "5160578600f4bb5ba1d25c736c109835", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_capi.c", + "type": "file", + "name": "e_capi.c", + "base_name": "e_capi", + "extension": ".c", + "size": 54992, + "date": "2017-05-25", + "sha1": "d8eff8a15a92e7bf2f863d8056f52ccadfb762ac", + "md5": "2a80a663ad4e3f1f44c0edb0ecaa4490", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_capi.ec", + "type": "file", + "name": "e_capi.ec", + "base_name": "e_capi", + "extension": ".ec", + "size": 42, + "date": "2017-05-25", + "sha1": "790538b0f4dd12e30f216494371fddc74809fd65", + "md5": "a25fa1307b2f27749962c90ec1151da4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_capi_err.c", + "type": "file", + "name": "e_capi_err.c", + "base_name": "e_capi_err", + "extension": ".c", + "size": 5626, + "date": "2017-05-25", + "sha1": "52fead31f38b709260c5002fe2cf8c3ad4b759f1", + "md5": "3b77748f8388180642d9f0f1f827c148", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_capi_err.h", + "type": "file", + "name": "e_capi_err.h", + "base_name": "e_capi_err", + "extension": ".h", + "size": 4105, + "date": "2017-05-25", + "sha1": "f150398c82aea5a272c859591f759e125d949917", + "md5": "34dfed265993370a5ef5e54aa920cd07", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_chil.c", + "type": "file", + "name": "e_chil.c", + "base_name": "e_chil", + "extension": ".c", + "size": 39996, + "date": "2017-05-25", + "sha1": "1778ba217250113a2996b6ef625422e1a4e918af", + "md5": "2a2e329de1ad4fd7941904b0080f6159", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_chil.ec", + "type": "file", + "name": "e_chil.ec", + "base_name": "e_chil", + "extension": ".ec", + "size": 37, + "date": "2017-05-25", + "sha1": "534330e7cf065c45096619e0f424aa9cc9c2f1c5", + "md5": "d11dd96d764ad670fb334f78a9d4fa04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_chil_err.c", + "type": "file", + "name": "e_chil_err.c", + "base_name": "e_chil_err", + "extension": ".c", + "size": 3738, + "date": "2017-05-25", + "sha1": "af0136e0e56457a5e735188994f53fa8107cb7a7", + "md5": "031d3faa6c3df90e0821fbb029a9ceba", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_chil_err.h", + "type": "file", + "name": "e_chil_err.h", + "base_name": "e_chil_err", + "extension": ".h", + "size": 2635, + "date": "2017-05-25", + "sha1": "7d060e79bcb0098b6406994e6f7290c8e29b34a9", + "md5": "1bcb5f3628849cfd79ceb69d2a8faf06", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_dasync.c", + "type": "file", + "name": "e_dasync.c", + "base_name": "e_dasync", + "extension": ".c", + "size": 25064, + "date": "2017-05-25", + "sha1": "4ff13c8b8589993f2c996588926d2756cc33ad6e", + "md5": "56e3db87affb9475ec6be4828335b7d2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_dasync.ec", + "type": "file", + "name": "e_dasync.ec", + "base_name": "e_dasync", + "extension": ".ec", + "size": 48, + "date": "2017-05-25", + "sha1": "e9c49a5b7eb225c713bbd51298001cfafabf3a73", + "md5": "6792de6c953ec612abf9c93497e200fe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_dasync_err.c", + "type": "file", + "name": "e_dasync_err.c", + "base_name": "e_dasync_err", + "extension": ".c", + "size": 3251, + "date": "2017-05-25", + "sha1": "d6075654ada5c5c46d6007e67fee66154c811f1f", + "md5": "9c91043ff812b596c73d12fc76d2948f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_dasync_err.h", + "type": "file", + "name": "e_dasync_err.h", + "base_name": "e_dasync_err", + "extension": ".h", + "size": 1891, + "date": "2017-05-25", + "sha1": "04cd6a08693ed4789346b2db3fa4cc918e99f2e5", + "md5": "55b9680c7c941114689ef342b8e3d3b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_ossltest.c", + "type": "file", + "name": "e_ossltest.c", + "base_name": "e_ossltest", + "extension": ".c", + "size": 16600, + "date": "2017-05-25", + "sha1": "54cabbe7557f954da0bc9aa3114438b555f2b715", + "md5": "240f1ba86c85b5497dcbd566b4ca583b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_ossltest.ec", + "type": "file", + "name": "e_ossltest.ec", + "base_name": "e_ossltest", + "extension": ".ec", + "size": 54, + "date": "2017-05-25", + "sha1": "a43cf1ec184de57ec489530664503211c2c54fbf", + "md5": "54df8703df8ec0c1fb78f75d274c0ea1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_ossltest_err.c", + "type": "file", + "name": "e_ossltest_err.c", + "base_name": "e_ossltest_err", + "extension": ".c", + "size": 2494, + "date": "2017-05-25", + "sha1": "50a9d29ad179a86d841ca2ff14adff3a8a44c091", + "md5": "1883d858dac7947a81432f49bce11818", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_ossltest_err.h", + "type": "file", + "name": "e_ossltest_err.h", + "base_name": "e_ossltest_err", + "extension": ".h", + "size": 1225, + "date": "2017-05-25", + "sha1": "18c11226380ed943fb7eb1160223bee5cb0d0e8b", + "md5": "2904ad7ad34d604ce541868fb4dd5247", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_padlock.c", + "type": "file", + "name": "e_padlock.c", + "base_name": "e_padlock", + "extension": ".c", + "size": 23226, + "date": "2017-05-25", + "sha1": "deb24586895e40a65bf8e67edde51dca710dbbac", + "md5": "47ff84ea49e3b07b79c68e82c7afa55e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/e_padlock.ec", + "type": "file", + "name": "e_padlock.ec", + "base_name": "e_padlock", + "extension": ".ec", + "size": 44, + "date": "2017-05-25", + "sha1": "cf5e1063f00ab46ca0e30e1f1f628f34daaa4c79", + "md5": "99c314c41df4c3a8c57d3a67816aa3ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/afalg", + "type": "directory", + "name": "afalg", + "base_name": "afalg", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 32119, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/afalg/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 353, + "date": "2017-05-25", + "sha1": "af26de4e2a4bdb0caa34f5d7a9eb0271d5106e8b", + "md5": "c6729a28142eb4b822e607f5ca3ea57c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/afalg/e_afalg.c", + "type": "file", + "name": "e_afalg.c", + "base_name": "e_afalg", + "extension": ".c", + "size": 23602, + "date": "2017-05-25", + "sha1": "63c3a3e2bc0e2acffb18028523f992106502150a", + "md5": "5c0f62fd9d61920be28b5dd7f315ebba", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/afalg/e_afalg.ec", + "type": "file", + "name": "e_afalg.ec", + "base_name": "e_afalg", + "extension": ".ec", + "size": 45, + "date": "2017-05-25", + "sha1": "da31abbcca9fde4077116438c8a393a50b2ac979", + "md5": "8f0b4940f65eafa23a96df40a3af92fe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "eC", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/afalg/e_afalg.h", + "type": "file", + "name": "e_afalg.h", + "base_name": "e_afalg", + "extension": ".h", + "size": 2034, + "date": "2017-05-25", + "sha1": "11b8d1c49c2d645d309a0a48cacb55d9ca870059", + "md5": "a99b54ae5d9a2c94a495757bc047366e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/afalg/e_afalg_err.c", + "type": "file", + "name": "e_afalg_err.c", + "base_name": "e_afalg_err", + "extension": ".c", + "size": 3733, + "date": "2017-05-25", + "sha1": "5aa0320beb5ded2c30079ac77db3b803080183cc", + "md5": "50e8bb19152efef791da57610688a92a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/afalg/e_afalg_err.h", + "type": "file", + "name": "e_afalg_err.h", + "base_name": "e_afalg_err", + "extension": ".h", + "size": 2352, + "date": "2017-05-25", + "sha1": "fb6185e07c10fc1ebd533f7c27f04f6ae8c3d7e7", + "md5": "737381e06ea46c7ffc3e324fcf5b91a8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/asm", + "type": "directory", + "name": "asm", + "base_name": "asm", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 31614, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/asm/e_padlock-x86.pl", + "type": "file", + "name": "e_padlock-x86.pl", + "base_name": "e_padlock-x86", + "extension": ".pl", + "size": 18599, + "date": "2017-05-25", + "sha1": "fb8b10559c0b4dd39b58e80cca0fdf09a6408493", + "md5": "0efe1cc85a7be9f2e865afd566ae0dea", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/asm/e_padlock-x86_64.pl", + "type": "file", + "name": "e_padlock-x86_64.pl", + "base_name": "e_padlock-x86_64", + "extension": ".pl", + "size": 13015, + "date": "2017-05-25", + "sha1": "5a37d4652dd42c0e5e9a342fdcb38603acff7045", + "md5": "548c7a2f0bda0d03f4e8402ebdeafc64", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 90.24, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 90.24, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 90.24, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Andy Polyakov for the OpenSSL project." + ], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/vendor_defns", + "type": "directory", + "name": "vendor_defns", + "base_name": "vendor_defns", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 23062, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/engines/vendor_defns/hwcryptohook.h", + "type": "file", + "name": "hwcryptohook.h", + "base_name": "hwcryptohook", + "extension": ".h", + "size": 23062, + "date": "2017-05-25", + "sha1": "c24066ec131bbaaef7e8b7912c32b1102b05cc92", + "md5": "6a2b5edc8e0082562fe7e82082e3840d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-simplified", + "score": 78.13, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 22, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-simplified_14.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + }, + { + "key": "warranty-disclaimer", + "score": 47.06, + "short_name": "Generic, Bare Warranty Disclaimer", + "category": "Unknown License", + "owner": "Unspecified", + "homepage_url": "", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:warranty-disclaimer", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 51, + "end_line": 53, + "matched_rule": { + "identifier": "warranty-disclaimer.RULE", + "license_choice": false, + "licenses": [ + "warranty-disclaimer" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1998-2000 nCipher Corporation Limited." + ], + "holders": [ + "nCipher Corporation Limited." + ], + "authors": [], + "start_line": 20, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external", + "type": "directory", + "name": "external", + "base_name": "external", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 27, + "dirs_count": 8, + "size_count": 142908, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl", + "type": "directory", + "name": "perl", + "base_name": "perl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 27, + "dirs_count": 7, + "size_count": 142908, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Downloaded.txt", + "type": "file", + "name": "Downloaded.txt", + "base_name": "Downloaded", + "extension": ".txt", + "size": 397, + "date": "2017-05-25", + "sha1": "7ff1851e04b14d7ec3c96e03805d4bd3b76b4b5f", + "md5": "e6163775b89433b8b6b500a7cf95e1b8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46", + "type": "directory", + "name": "Text-Template-1.46", + "base_name": "Text-Template-1.46", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 4, + "size_count": 141680, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/Artistic", + "type": "file", + "name": "Artistic", + "base_name": "Artistic", + "extension": "", + "size": 6111, + "date": "2017-05-25", + "sha1": "be0627fff2e8aef3d2a14d5d7486babc8a4873ba", + "md5": "f921793d03cc6d63ec4b15e9be8fd3f8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "artistic-perl-1.0", + "score": 100.0, + "short_name": "Artistic-Perl-1.0", + "category": "Copyleft Limited", + "owner": "Perl Foundation", + "homepage_url": "http://dev.perl.org/licenses/artistic.html", + "text_url": "http://dev.perl.org/licenses/artistic.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:artistic-perl-1.0", + "spdx_license_key": "Artistic-1.0-Perl", + "spdx_url": "https://spdx.org/licenses/Artistic-1.0-Perl", + "start_line": 5, + "end_line": 131, + "matched_rule": { + "identifier": "artistic-perl-1.0.LICENSE", + "license_choice": false, + "licenses": [ + "artistic-perl-1.0" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/COPYING", + "type": "file", + "name": "COPYING", + "base_name": "COPYING", + "extension": "", + "size": 18043, + "date": "2017-05-25", + "sha1": "ab8577d3eb0eedf3f98004e381a9cee30e7224e1", + "md5": "361b6b837cad26c6900a926b62aada5f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-2.0", + "score": 99.97, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 1, + "end_line": 340, + "matched_rule": { + "identifier": "gpl-2.0_100.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc." + ], + "holders": [ + "Free Software Foundation, Inc." + ], + "authors": [], + "start_line": 4, + "end_line": 8 + }, + { + "statements": [ + "copyrighted by the Free Software Foundation" + ], + "holders": [ + "the Free Software Foundation" + ], + "authors": [], + "start_line": 251, + "end_line": 257 + }, + { + "statements": [], + "holders": [], + "authors": [ + "James Hacker." + ], + "start_line": 330, + "end_line": 331 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/INSTALL", + "type": "file", + "name": "INSTALL", + "base_name": "INSTALL", + "extension": "", + "size": 584, + "date": "2017-05-25", + "sha1": "b457bd56a70b838ccc55d183ab09de64b6996958", + "md5": "e6e20eb00e2c04d90de9a649e2f55ace", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/Makefile.PL", + "type": "file", + "name": "Makefile.PL", + "base_name": "Makefile", + "extension": ".PL", + "size": 217, + "date": "2017-05-25", + "sha1": "5950942a8aa07dc9755f354151e833c269dbd3ef", + "md5": "db9397bb70131be47edae35b75e95397", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "CPAN Perl module", + "name": null, + "version": null, + "primary_language": null, + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/MANIFEST", + "type": "file", + "name": "MANIFEST", + "base_name": "MANIFEST", + "extension": "", + "size": 476, + "date": "2017-05-25", + "sha1": "d55ef286f57719261f7b57d12e4f8264f32c2a4f", + "md5": "6fe30124e308b9dd506cf22b85344170", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "CPAN Perl module", + "name": null, + "version": null, + "primary_language": null, + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/META.json", + "type": "file", + "name": "META.json", + "base_name": "META", + "extension": ".json", + "size": 791, + "date": "2017-05-25", + "sha1": "4863680e4a35d96d2f4f170ab96dada500b4a690", + "md5": "2d18f8c1549faba584c8307a3fd8ea19", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "CPAN Perl module", + "name": null, + "version": null, + "primary_language": null, + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/META.yml", + "type": "file", + "name": "META.yml", + "base_name": "META", + "extension": ".yml", + "size": 429, + "date": "2017-05-25", + "sha1": "3a60e91dbb96b2afc0e06c065f0e778102c7e0c1", + "md5": "c98937fe236331b264beb6a33329a9b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "CPAN Perl module", + "name": null, + "version": null, + "primary_language": null, + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 11701, + "date": "2017-05-25", + "sha1": "5d77dacc6fbc44c87a96bbf67cb5c988be4ce5ee", + "md5": "59f394e63299cd817b2eaf741cff1fd2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/lib", + "type": "directory", + "name": "lib", + "base_name": "lib", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 2, + "size_count": 66373, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/lib/Text", + "type": "directory", + "name": "Text", + "base_name": "Text", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 66373, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/lib/Text/Template.pm", + "type": "file", + "name": "Template.pm", + "base_name": "Template", + "extension": ".pm", + "size": 62082, + "date": "2017-05-25", + "sha1": "113b79701a4a976b654ad81402e2207226e34c19", + "md5": "a73f87adea447f454d235795ca741f0f", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "gpl-2.0-plus", + "score": 100.0, + "short_name": "GPL 2.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus", + "spdx_license_key": "GPL-2.0+", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 1847, + "end_line": 1850, + "matched_rule": { + "identifier": "gpl-2.0-plus_64.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0-plus" + ] + } + }, + { + "key": "gpl-2.0", + "score": 67.29, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 1852, + "end_line": 1861, + "matched_rule": { + "identifier": "gpl-2.0_107.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013 M. J. Dominus." + ], + "holders": [ + "M. J. Dominus." + ], + "authors": [], + "start_line": 6, + "end_line": 9 + }, + { + "statements": [ + "Copyright 2013 Mark Jason Dominus" + ], + "holders": [ + "Mark Jason Dominus" + ], + "authors": [], + "start_line": 1844, + "end_line": 1845 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/lib/Text/Template", + "type": "directory", + "name": "Template", + "base_name": "Template", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 4291, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/lib/Text/Template/Preprocess.pm", + "type": "file", + "name": "Preprocess.pm", + "base_name": "Preprocess", + "extension": ".pm", + "size": 4291, + "date": "2017-05-25", + "sha1": "02684c91af41c92de45f0d3ca610e913a0b17d00", + "md5": "fd9081a561787275786aef330d65ddf0", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "gpl-2.0-plus", + "score": 87.18, + "short_name": "GPL 2.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus", + "spdx_license_key": "GPL-2.0+", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 127, + "end_line": 136, + "matched_rule": { + "identifier": "gpl-2.0-plus_92.RULE", + "license_choice": false, + "licenses": [ + "gpl-2.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 20.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 138, + "end_line": 138, + "matched_rule": { + "identifier": "gpl_63.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013 Mark Jason Dominus" + ], + "holders": [ + "Mark Jason Dominus" + ], + "authors": [], + "start_line": 123, + "end_line": 124 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t", + "type": "directory", + "name": "t", + "base_name": "t", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 15, + "dirs_count": 0, + "size_count": 36955, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/00-version.t", + "type": "file", + "name": "00-version.t", + "base_name": "00-version", + "extension": ".t", + "size": 149, + "date": "2017-05-25", + "sha1": "4e6099155d8afe89d50339ba682cea804e785071", + "md5": "524f90207c648af8309909ed4f00dc47", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/01-basic.t", + "type": "file", + "name": "01-basic.t", + "base_name": "01-basic", + "extension": ".t", + "size": 6172, + "date": "2017-05-25", + "sha1": "29e008c1e05c5b2e75eb12a9ace5b625422daf6c", + "md5": "d14772090c8bbbd70b68daae10616b6f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/02-hash.t", + "type": "file", + "name": "02-hash.t", + "base_name": "02-hash", + "extension": ".t", + "size": 3215, + "date": "2017-05-25", + "sha1": "891e4a6f0a6564877452bec1e4026af1fbce462a", + "md5": "11a9c0284f53862ab310f78e4d1edca2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/03-out.t", + "type": "file", + "name": "03-out.t", + "base_name": "03-out", + "extension": ".t", + "size": 1221, + "date": "2017-05-25", + "sha1": "cb6de64424c205dbdeb71d8ea530e8f472b02aa6", + "md5": "0b271452f90f253b03f1816683d12c88", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/04-safe.t", + "type": "file", + "name": "04-safe.t", + "base_name": "04-safe", + "extension": ".t", + "size": 4508, + "date": "2017-05-25", + "sha1": "463cbc6b0e95aa458f6481414f11102cd687c6c4", + "md5": "0fc26cb1f621824e9a9d211bee70b865", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/05-safe2.t", + "type": "file", + "name": "05-safe2.t", + "base_name": "05-safe2", + "extension": ".t", + "size": 2801, + "date": "2017-05-25", + "sha1": "a52465b366e85c23f758f0db2998fec1fc363b93", + "md5": "db4ad97da803b50f217b11b0a0621ce1", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/06-ofh.t", + "type": "file", + "name": "06-ofh.t", + "base_name": "06-ofh", + "extension": ".t", + "size": 835, + "date": "2017-05-25", + "sha1": "2b86167a768c1a811c8c66b3b53f471b4d780b87", + "md5": "2ba20960dacd0893976ec5bb77fed0d9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/07-safe3.t", + "type": "file", + "name": "07-safe3.t", + "base_name": "07-safe3", + "extension": ".t", + "size": 2167, + "date": "2017-05-25", + "sha1": "7415cb479c01b81d94496f6b49beb4a3726f23c5", + "md5": "ec4078901a7be3a4093117f6f6fc738a", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/08-exported.t", + "type": "file", + "name": "08-exported.t", + "base_name": "08-exported", + "extension": ".t", + "size": 2283, + "date": "2017-05-25", + "sha1": "75e96ed59a3da15999194fcf76208b7511f9baf2", + "md5": "a5298ea901131cf7f58b4df12c386f3e", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/09-error.t", + "type": "file", + "name": "09-error.t", + "base_name": "09-error", + "extension": ".t", + "size": 1275, + "date": "2017-05-25", + "sha1": "4c615f1e1851620fc77194d112570f8ab6a523a7", + "md5": "a639c5542d00bea81f086f2c439142d8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/10-delimiters.t", + "type": "file", + "name": "10-delimiters.t", + "base_name": "10-delimiters", + "extension": ".t", + "size": 3051, + "date": "2017-05-25", + "sha1": "88fbc0c11ca2f741b3be9fa56494ce8972653b56", + "md5": "32f9a1d6cc02d6da5fb18f78bcd1b0fb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/11-prepend.t", + "type": "file", + "name": "11-prepend.t", + "base_name": "11-prepend", + "extension": ".t", + "size": 2483, + "date": "2017-05-25", + "sha1": "70a93244a424ebff566ebb12bffeaa94d5052950", + "md5": "1c27bc86b7ddfddc18118a19798953dc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/12-preprocess.t", + "type": "file", + "name": "12-preprocess.t", + "base_name": "12-preprocess", + "extension": ".t", + "size": 1451, + "date": "2017-05-25", + "sha1": "9d54e6b10b998e90e5ca045738211d6b787f8d5a", + "md5": "7a32234eae48cb5b1d2550e4cc6c048d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/13-taint.t", + "type": "file", + "name": "13-taint.t", + "base_name": "13-taint", + "extension": ".t", + "size": 3023, + "date": "2017-05-25", + "sha1": "ce35a9fcec37796920dd6c6093e1066bfe4bc121", + "md5": "9678d9b42bef5d0eda64bc435a2bf296", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/Text-Template-1.46/t/14-broken.t", + "type": "file", + "name": "14-broken.t", + "base_name": "14-broken", + "extension": ".t", + "size": 2321, + "date": "2017-05-25", + "sha1": "c3b024906a09905da5c5dec4193e2968dcf2b1fb", + "md5": "066c2c9b74576091ad2c624dbf50920c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/transfer", + "type": "directory", + "name": "transfer", + "base_name": "transfer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 831, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/transfer/Text", + "type": "directory", + "name": "Text", + "base_name": "Text", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 831, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/external/perl/transfer/Text/Template.pm", + "type": "file", + "name": "Template.pm", + "base_name": "Template", + "extension": ".pm", + "size": 831, + "date": "2017-05-25", + "sha1": "6217708eca82118f60b1434d18df290e28115fa8", + "md5": "cc8517c66838d54272fccfdfa82c525d", + "mime_type": "text/plain", + "file_type": "awk or perl script, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz", + "type": "directory", + "name": "fuzz", + "base_name": "fuzz", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 0, + "size_count": 41619, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/asn1.c", + "type": "file", + "name": "asn1.c", + "base_name": "asn1", + "extension": ".c", + "size": 6828, + "date": "2017-05-25", + "sha1": "2326ef7d3a540703e0b4654a01fb2bc69e98f242", + "md5": "5d5723ea1943215950ae0c96a11337e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/asn1parse.c", + "type": "file", + "name": "asn1parse.c", + "base_name": "asn1parse", + "extension": ".c", + "size": 837, + "date": "2017-05-25", + "sha1": "0b5ce525458fda83a8b3a2a15d27674e26f71a89", + "md5": "1fd9e7ef550dc6267e219355946376d8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/bignum.c", + "type": "file", + "name": "bignum.c", + "base_name": "bignum", + "extension": ".c", + "size": 2396, + "date": "2017-05-25", + "sha1": "a17eb84388c0db6e0c5d239423c49d4c51bedaa2", + "md5": "0a9cfcd0fe6f67ee8cc02b3420397334", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/bndiv.c", + "type": "file", + "name": "bndiv.c", + "base_name": "bndiv", + "extension": ".c", + "size": 3089, + "date": "2017-05-25", + "sha1": "3448e61945d868210c86f130dcd51f36203c40de", + "md5": "9ca64a426974f0ab47e98d36b888d2b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 3229, + "date": "2017-05-25", + "sha1": "201b88ef29bfcafae7c44e36b60fe2c76c1cdc5a", + "md5": "7fdd7501d4a5268f2ab7e41814229054", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/cms.c", + "type": "file", + "name": "cms.c", + "base_name": "cms", + "extension": ".c", + "size": 837, + "date": "2017-05-25", + "sha1": "a7867f196b7a692b77bb587e0b104db17c2b3467", + "md5": "563142bda260525466118429dd7281e1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/conf.c", + "type": "file", + "name": "conf.c", + "base_name": "conf", + "extension": ".c", + "size": 853, + "date": "2017-05-25", + "sha1": "70a526ca701c856f5a330b08fe9029d0ff6007db", + "md5": "167a86fad93e9a9069f77f12039de9ac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/crl.c", + "type": "file", + "name": "crl.c", + "base_name": "crl", + "extension": ".c", + "size": 891, + "date": "2017-05-25", + "sha1": "bb785c21bfe362223ec05a16f4fd96dacf6700e8", + "md5": "6f908b07eb3eb5e1f7bd3ce394aec4a7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/ct.c", + "type": "file", + "name": "ct.c", + "base_name": "ct", + "extension": ".c", + "size": 1000, + "date": "2017-05-25", + "sha1": "c343149b5fd75b86fae4c53c88789a67cf3f0198", + "md5": "e9b2385e67b64f4640143829ee50aa32", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/driver.c", + "type": "file", + "name": "driver.c", + "base_name": "driver", + "extension": ".c", + "size": 1147, + "date": "2017-05-25", + "sha1": "e5d62d9faee3bb76e141c5d948058bb2ef9881b9", + "md5": "22691243e630604b1a7f3aa7da972b88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/fuzzer.h", + "type": "file", + "name": "fuzzer.h", + "base_name": "fuzzer", + "extension": ".h", + "size": 451, + "date": "2017-05-25", + "sha1": "305836a75f124e8a5ea3b70778a19d6b070791f6", + "md5": "5c1dc31139a014489dfe0c157112fd82", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/helper.py", + "type": "file", + "name": "helper.py", + "base_name": "helper", + "extension": ".py", + "size": 1357, + "date": "2017-05-25", + "sha1": "42d1922cb908a7a9a0b27932841d945f0efed094", + "md5": "a06e40e86f9aad25304cfc717cdf45a7", + "mime_type": "text/x-python", + "file_type": "Python script, ASCII text executable", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 1804, + "date": "2017-05-25", + "sha1": "da27e95c203d4cdd85e99382c3c39e109fc8e9d3", + "md5": "ec1607d44f0170963469205eee9b29c0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/server.c", + "type": "file", + "name": "server.c", + "base_name": "server", + "extension": ".c", + "size": 14772, + "date": "2017-05-25", + "sha1": "98dedc878847432ce2e4475619aedc74d5ba41dc", + "md5": "e50e371e780b095c7b4dea9d69070fdd", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/test-corpus.c", + "type": "file", + "name": "test-corpus.c", + "base_name": "test-corpus", + "extension": ".c", + "size": 1176, + "date": "2017-05-25", + "sha1": "dedfdb31bd2746ad151e735338b83744ab151c77", + "md5": "239aac00919075413e6c24e9a8cc09b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/fuzz/x509.c", + "type": "file", + "name": "x509.c", + "base_name": "x509", + "extension": ".c", + "size": 952, + "date": "2017-05-25", + "sha1": "2248ce80bfc2e78698ca28862a1cb580f77c2600", + "md5": "3a3691fdc82488cfc977f07566f99e55", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include", + "type": "directory", + "name": "include", + "base_name": "include", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 87, + "dirs_count": 2, + "size_count": 1262425, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 30166, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/asn1t.h", + "type": "file", + "name": "asn1t.h", + "base_name": "asn1t", + "extension": ".h", + "size": 565, + "date": "2017-05-25", + "sha1": "857fd5f28a5e88499e674f50252b8b6c1df9d7e9", + "md5": "c93bb92247ed8979e2ea18ee3c0c62f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/bio.h", + "type": "file", + "name": "bio.h", + "base_name": "bio", + "extension": ".h", + "size": 794, + "date": "2017-05-25", + "sha1": "2c84c801bc06eae20924717b9bd08dd8f814b031", + "md5": "8ff584efb244ae8789083977aab6b26a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/comp.h", + "type": "file", + "name": "comp.h", + "base_name": "comp", + "extension": ".h", + "size": 390, + "date": "2017-05-25", + "sha1": "ca8ab3c76924ce697e6a3dca9ea74b142a1a22cc", + "md5": "6552ecdea28adf6e2d27275445492d0b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/conf.h", + "type": "file", + "name": "conf.h", + "base_name": "conf", + "extension": ".h", + "size": 666, + "date": "2017-05-25", + "sha1": "ccc4554877bcf54434cf37b1c54c30da097a3f79", + "md5": "47404248e82f15255e290550a430dc87", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/constant_time_locl.h", + "type": "file", + "name": "constant_time_locl.h", + "base_name": "constant_time_locl", + "extension": ".h", + "size": 6274, + "date": "2017-05-25", + "sha1": "0d796e91f347e6d3977e9cd5106696c81d0b8410", + "md5": "bd7678e9a98e584523ed754bf78c5215", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/dane.h", + "type": "file", + "name": "dane.h", + "base_name": "dane", + "extension": ".h", + "size": 3578, + "date": "2017-05-25", + "sha1": "46d983758786570fb7537c2090698f2cb437eb70", + "md5": "a5b206ba273d8efa359d08ab59549acb", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/dso.h", + "type": "file", + "name": "dso.h", + "base_name": "dso", + "extension": ".h", + "size": 10792, + "date": "2017-05-25", + "sha1": "1dbac7f1ff2e38aeeb7d0c08fa747cffcdc124d0", + "md5": "b11c1797c7c8492895ab8ccacb0950f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/err.h", + "type": "file", + "name": "err.h", + "base_name": "err", + "extension": ".h", + "size": 418, + "date": "2017-05-25", + "sha1": "7bc6afcd4f1d7a77a115d0660e68df281cc6506b", + "md5": "3175492892671281ac93136021ca7575", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/numbers.h", + "type": "file", + "name": "numbers.h", + "base_name": "numbers", + "extension": ".h", + "size": 1906, + "date": "2017-05-25", + "sha1": "82c8697696628483b08ee93304691e8788f319ef", + "md5": "0c539904105e5b5fb1e56c19899c62e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/o_dir.h", + "type": "file", + "name": "o_dir.h", + "base_name": "o_dir", + "extension": ".h", + "size": 2418, + "date": "2017-05-25", + "sha1": "9dd27c35c68ef8fadb448b9921201de673f58907", + "md5": "0562d7205241cf0d1dce9e1bbf3875d1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-simplified", + "score": 100.0, + "short_name": "BSD-Simplified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "text_url": "http://opensource.org/licenses/bsd-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-2-Clause", + "start_line": 20, + "end_line": 39, + "matched_rule": { + "identifier": "bsd-simplified_28.RULE", + "license_choice": false, + "licenses": [ + "bsd-simplified" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2004, Richard Levitte " + ], + "holders": [ + "Richard Levitte" + ], + "authors": [], + "start_line": 17, + "end_line": 18 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/o_str.h", + "type": "file", + "name": "o_str.h", + "base_name": "o_str", + "extension": ".h", + "size": 505, + "date": "2017-05-25", + "sha1": "40a688efa6cb9051f3de58e129cc2df0e2319720", + "md5": "afa55612afca86d1bca0edec9066ab71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2003-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/internal/thread_once.h", + "type": "file", + "name": "thread_once.h", + "base_name": "thread_once", + "extension": ".h", + "size": 1860, + "date": "2017-05-25", + "sha1": "c218c67cc68a44b79145cb78133a60c1c2bf4d51", + "md5": "5781800fe884416da65fe3eb3969510a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl", + "type": "directory", + "name": "openssl", + "base_name": "openssl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 75, + "dirs_count": 0, + "size_count": 1232259, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/__DECC_INCLUDE_EPILOGUE.H", + "type": "file", + "name": "__DECC_INCLUDE_EPILOGUE.H", + "base_name": "__DECC_INCLUDE_EPILOGUE", + "extension": ".H", + "size": 556, + "date": "2017-05-25", + "sha1": "5f848946189b2808fdbd730c811650361aeef9c3", + "md5": "a06e40cc4176b1cbe4c30cd57b4cb72f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/__DECC_INCLUDE_PROLOGUE.H", + "type": "file", + "name": "__DECC_INCLUDE_PROLOGUE.H", + "base_name": "__DECC_INCLUDE_PROLOGUE", + "extension": ".H", + "size": 627, + "date": "2017-05-25", + "sha1": "596a3e43a62a89a3721cdc0ca3c4d45654897000", + "md5": "a29d554c45941209edb31401032531d3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/aes.h", + "type": "file", + "name": "aes.h", + "base_name": "aes", + "extension": ".h", + "size": 3349, + "date": "2017-05-25", + "sha1": "fd01d7b1fa7929906db7486943e3c68510794d01", + "md5": "1fe491c6755e6f1014a9b9704ce9bf5b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/asn1.h", + "type": "file", + "name": "asn1.h", + "base_name": "asn1", + "extension": ".h", + "size": 46411, + "date": "2017-05-25", + "sha1": "3df405ed1c9876d25551b732f9c2985ecbf1fdf6", + "md5": "ab597a58ec068ea57ea813e0cca691c4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/asn1_mac.h", + "type": "file", + "name": "asn1_mac.h", + "base_name": "asn1_mac", + "extension": ".h", + "size": 395, + "date": "2017-05-25", + "sha1": "9fe8dd066ed9109c09862222a25b15bf109ad34c", + "md5": "926348f025372ccacaf16c663b051aec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/asn1t.h", + "type": "file", + "name": "asn1t.h", + "base_name": "asn1t", + "extension": ".h", + "size": 32502, + "date": "2017-05-25", + "sha1": "4642be4516e5af219da061da7b4edfa948bd590e", + "md5": "0ed00c886623e13ef3bb34b5156d4968", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 30, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 30, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 30, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/async.h", + "type": "file", + "name": "async.h", + "base_name": "async", + "extension": ".h", + "size": 3292, + "date": "2017-05-25", + "sha1": "e05991d4dbc495c5a65b4a86b1827e21144563ab", + "md5": "3c60c8fa0b456dc2a4440de7f155446b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/bio.h", + "type": "file", + "name": "bio.h", + "base_name": "bio", + "extension": ".h", + "size": 37643, + "date": "2017-05-25", + "sha1": "f659c04eb00fbcce6931b936d90c78425ec18d43", + "md5": "c50c13bc5f3434c33e052b39711e451b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/blowfish.h", + "type": "file", + "name": "blowfish.h", + "base_name": "blowfish", + "extension": ".h", + "size": 1847, + "date": "2017-05-25", + "sha1": "04ba89a4b5829781a5d0347858ed25ba8ca2c4c8", + "md5": "7e7efd03e9788db2a80ec3b86c50ccd7", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/bn.h", + "type": "file", + "name": "bn.h", + "base_name": "bn", + "extension": ".h", + "size": 24932, + "date": "2017-05-25", + "sha1": "f77d49e9cd4c0263872d50f999f09cc80a941f11", + "md5": "db31c0ebc3cab0b94f1512f1e594647b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/buffer.h", + "type": "file", + "name": "buffer.h", + "base_name": "buffer", + "extension": ".h", + "size": 2095, + "date": "2017-05-25", + "sha1": "c3c9597f1807537e1737c3c58da9a540850f42f1", + "md5": "a297b7b91c282e92d733b418ca49ce71", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/camellia.h", + "type": "file", + "name": "camellia.h", + "base_name": "camellia", + "extension": ".h", + "size": 3179, + "date": "2017-05-25", + "sha1": "4747317d07b854c7a37f0fc50675798e5ad3c52f", + "md5": "3cbdd1cd1b3c842d31bef989e630402c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/cast.h", + "type": "file", + "name": "cast.h", + "base_name": "cast", + "extension": ".h", + "size": 1674, + "date": "2017-05-25", + "sha1": "b60f5fc1e2b295dd8c1797358b0eec121e5bb433", + "md5": "4ccd1f55ecd549e61aaba7b49ca05d25", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/cmac.h", + "type": "file", + "name": "cmac.h", + "base_name": "cmac", + "extension": ".h", + "size": 1064, + "date": "2017-05-25", + "sha1": "4ac7c970fbe73b7459ee2f90c967aec8806816be", + "md5": "6f3232824538b358381945b2898a47f4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/cms.h", + "type": "file", + "name": "cms.h", + "base_name": "cms", + "extension": ".h", + "size": 26518, + "date": "2017-05-25", + "sha1": "70560813453f96eb5db4e4c8cd88e0bb7a92be87", + "md5": "4944b7455f37fe8815a22c7ae5743b75", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/comp.h", + "type": "file", + "name": "comp.h", + "base_name": "comp", + "extension": ".h", + "size": 2033, + "date": "2017-05-25", + "sha1": "c3faf61ab35d62fb21f70a69abb2bfaff0a037f9", + "md5": "bdefe8c3473874ef6d6869119554a957", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/conf.h", + "type": "file", + "name": "conf.h", + "base_name": "conf", + "extension": ".h", + "size": 8073, + "date": "2017-05-25", + "sha1": "9a259eb75530cdfdc58eb1e4dc95e4b02f5d802c", + "md5": "b0e359219960aa0a850bcc0116f6a7b9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/conf_api.h", + "type": "file", + "name": "conf_api.h", + "base_name": "conf_api", + "extension": ".h", + "size": 1300, + "date": "2017-05-25", + "sha1": "684908ecc08d24667e489c6ce75e2e318d685b7b", + "md5": "829179180a4cb85b2ad608c4cc28bf06", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/crypto.h", + "type": "file", + "name": "crypto.h", + "base_name": "crypto", + "extension": ".h", + "size": 17787, + "date": "2017-05-25", + "sha1": "5bed6b655b7a9573c44c0f7a3bbc0ef2ff438c8a", + "md5": "3030a554e6d2fb1852d87b1c529e1cc8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ct.h", + "type": "file", + "name": "ct.h", + "base_name": "ct", + "extension": ".h", + "size": 18985, + "date": "2017-05-25", + "sha1": "3bb3c80adf92004e8108c02f8c043ad545895d05", + "md5": "03bf116462712da19aabb257fe22cc63", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/des.h", + "type": "file", + "name": "des.h", + "base_name": "des", + "extension": ".h", + "size": 7627, + "date": "2017-05-25", + "sha1": "ce73b0ff456ad81d50590e5097248010892b7701", + "md5": "38e6b1b2fdcc4367bd308e973a4247a3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/dh.h", + "type": "file", + "name": "dh.h", + "base_name": "dh", + "extension": ".h", + "size": 14661, + "date": "2017-05-25", + "sha1": "3b0e901c5bdb6fbf5869c6d8df65939fbd079c53", + "md5": "6262d1d951c2048cd0b10c943af5ed5d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/dsa.h", + "type": "file", + "name": "dsa.h", + "base_name": "dsa", + "extension": ".h", + "size": 11773, + "date": "2017-05-25", + "sha1": "76ed0e972eb456ace437bd2b8f5756e7a4203f1f", + "md5": "ee9868775b10c19dcbf98c9900bf653e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Steven Schoch " + ], + "start_line": 11, + "end_line": 12 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/dtls1.h", + "type": "file", + "name": "dtls1.h", + "base_name": "dtls1", + "extension": ".h", + "size": 1616, + "date": "2017-05-25", + "sha1": "dd10faf8cf8f3d9faa44a45655dd796fb6480670", + "md5": "4a07ac235fe9e38f5698dc32ca8501b3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/e_os2.h", + "type": "file", + "name": "e_os2.h", + "base_name": "e_os2", + "extension": ".h", + "size": 8950, + "date": "2017-05-25", + "sha1": "27aa6dade6a2b2cede477b6e7c0b5d897d1fe36b", + "md5": "1bf114a514184afb378951fd6e91b4c2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ebcdic.h", + "type": "file", + "name": "ebcdic.h", + "base_name": "ebcdic", + "extension": ".h", + "size": 924, + "date": "2017-05-25", + "sha1": "cf9167f536cf690a3cce863e530a3f952afd489f", + "md5": "9a0ab751702219dec33afc302f43b147", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ec.h", + "type": "file", + "name": "ec.h", + "base_name": "ec", + "extension": ".h", + "size": 70378, + "date": "2017-05-25", + "sha1": "67089c8888ac32d02343ae150d6702144df53b62", + "md5": "6510c05069fdefe2176d6ae9cd937548", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ecdh.h", + "type": "file", + "name": "ecdh.h", + "base_name": "ecdh", + "extension": ".h", + "size": 358, + "date": "2017-05-25", + "sha1": "89752ac2395c5c28b1da2d7e4ffcd7455e0f535f", + "md5": "a31fd955a1012e150f038b98feff2a60", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ecdsa.h", + "type": "file", + "name": "ecdsa.h", + "base_name": "ecdsa", + "extension": ".h", + "size": 358, + "date": "2017-05-25", + "sha1": "89752ac2395c5c28b1da2d7e4ffcd7455e0f535f", + "md5": "a31fd955a1012e150f038b98feff2a60", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/engine.h", + "type": "file", + "name": "engine.h", + "base_name": "engine", + "extension": ".h", + "size": 39584, + "date": "2017-05-25", + "sha1": "7f8dcff4d684e074e816af6a03df91307c2cc661", + "md5": "ae0d349e354733aa742b28f86f87ac26", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/err.h", + "type": "file", + "name": "err.h", + "base_name": "err", + "extension": ".h", + "size": 10636, + "date": "2017-05-25", + "sha1": "f42069ff7cde56af0518d6ab228f44ec6704257f", + "md5": "3f2065f67d5c672b0376670b7ce965d3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/evp.h", + "type": "file", + "name": "evp.h", + "base_name": "evp", + "extension": ".h", + "size": 74604, + "date": "2017-05-25", + "sha1": "c587f9d9a3ebd62b0b01167b1df0cf4fb874d9ed", + "md5": "6c9316f451a93d14138bacfeea07be98", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/hmac.h", + "type": "file", + "name": "hmac.h", + "base_name": "hmac", + "extension": ".h", + "size": 1553, + "date": "2017-05-25", + "sha1": "a30c85a6cd906922e84c150b1adea71546920363", + "md5": "1892cba22b3720f8cc3a571b2023d6b2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/idea.h", + "type": "file", + "name": "idea.h", + "base_name": "idea", + "extension": ".h", + "size": 2099, + "date": "2017-05-25", + "sha1": "f4e85f1a33444625a6f886856678379a3ef86bbd", + "md5": "89bb79567ff1d3e8b087add0dce79651", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/kdf.h", + "type": "file", + "name": "kdf.h", + "base_name": "kdf", + "extension": ".h", + "size": 2842, + "date": "2017-05-25", + "sha1": "f767d44adb9c06ad59d340cdd5659d1a2fbdea19", + "md5": "566a6bc126609b976c1e2a7eacd02aa0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/lhash.h", + "type": "file", + "name": "lhash.h", + "base_name": "lhash", + "extension": ".h", + "size": 8145, + "date": "2017-05-25", + "sha1": "f7f0deb1cf5900f82309c0dd6f7be56716bfa33d", + "md5": "d791e3c94265699f81f37a62b222a905", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/md2.h", + "type": "file", + "name": "md2.h", + "base_name": "md2", + "extension": ".h", + "size": 1054, + "date": "2017-05-25", + "sha1": "494e60fa1147f0a5c9c12125504eaa9f3f3c5db4", + "md5": "261ca3b3b8b40bc2ea7273e5534ccc88", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/md4.h", + "type": "file", + "name": "md4.h", + "base_name": "md4", + "extension": ".h", + "size": 1322, + "date": "2017-05-25", + "sha1": "35599855d5da1521f2969449461e762d4a920086", + "md5": "c0080b025a91c0730a3b55f53f33cf7c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/md5.h", + "type": "file", + "name": "md5.h", + "base_name": "md5", + "extension": ".h", + "size": 1320, + "date": "2017-05-25", + "sha1": "f11d9d89db381c679cd01b89e518e7234b0d02ab", + "md5": "a05b534a22be4a2ee377ddd19994a5af", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/mdc2.h", + "type": "file", + "name": "mdc2.h", + "base_name": "mdc2", + "extension": ".h", + "size": 1053, + "date": "2017-05-25", + "sha1": "71e3f990ee603890c9192ec7ac3463a56586da2e", + "md5": "461fae96a1e2f8cd641753ad59e3bcd9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/modes.h", + "type": "file", + "name": "modes.h", + "base_name": "modes", + "extension": ".h", + "size": 10415, + "date": "2017-05-25", + "sha1": "b8f61f0c20ff791684307c0b7f5e8837b4400fc5", + "md5": "4defb9676e8e27d820721a68dc15731f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/obj_mac.h", + "type": "file", + "name": "obj_mac.h", + "base_name": "obj_mac", + "extension": ".h", + "size": 191201, + "date": "2017-05-25", + "sha1": "2922bc46d66966eaf1c43f5bddaf283ad1adc7d3", + "md5": "18213a5f8b5d977e56a7356fee616e5e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 5, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/objects.h", + "type": "file", + "name": "objects.h", + "base_name": "objects", + "extension": ".h", + "size": 44811, + "date": "2017-05-25", + "sha1": "626439a29447faf9e5ad764b58c92d369b6b064c", + "md5": "0c49b2c288291fcd6e13ae4fd7c1a747", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ocsp.h", + "type": "file", + "name": "ocsp.h", + "base_name": "ocsp", + "extension": ".h", + "size": 18411, + "date": "2017-05-25", + "sha1": "45ea589fff61b044d96190e2939e2fbd4c184d7a", + "md5": "05f417f96d4f685dda0a278d7091810e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/opensslconf.h.in", + "type": "file", + "name": "opensslconf.h.in", + "base_name": "opensslconf.h", + "extension": ".in", + "size": 3788, + "date": "2017-05-25", + "sha1": "180a32a0ab89110c04081b741213780e52e9b6f4", + "md5": "3ce5e4faa89d296061fb459a61109a55", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 4, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/opensslv.h", + "type": "file", + "name": "opensslv.h", + "base_name": "opensslv", + "extension": ".h", + "size": 4208, + "date": "2017-05-25", + "sha1": "35de136b4233ca4f1aa3225dc71e88a23f12e643", + "md5": "eec5a4fe33cf2e6fbb7046f3c793884b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ossl_typ.h", + "type": "file", + "name": "ossl_typ.h", + "base_name": "ossl_typ", + "extension": ".h", + "size": 6023, + "date": "2017-05-25", + "sha1": "ff966db873a1f75a49cfad6b87f20a91f79d8ade", + "md5": "ec6d5cdc7aebaaa748f916ec6b48ae89", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/pem.h", + "type": "file", + "name": "pem.h", + "base_name": "pem", + "extension": ".h", + "size": 20680, + "date": "2017-05-25", + "sha1": "0cf3ee9567cdd1835a17f0ce8ef5fdfdea58ac18", + "md5": "a5b33e4781e6ae6cf776ba24f39b81ab", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/pem2.h", + "type": "file", + "name": "pem2.h", + "base_name": "pem2", + "extension": ".h", + "size": 463, + "date": "2017-05-25", + "sha1": "bb2e30938214a7e2c96eed29725e47b384e86ad2", + "md5": "f0a13efb9110714b1f8fa41c409245b4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/pkcs12.h", + "type": "file", + "name": "pkcs12.h", + "base_name": "pkcs12", + "extension": ".h", + "size": 12999, + "date": "2017-05-25", + "sha1": "77c65fbdbd68b6f7f490b150345baa983c61262c", + "md5": "5f9176a464d06ebe341dce86b8d4d337", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/pkcs7.h", + "type": "file", + "name": "pkcs7.h", + "base_name": "pkcs7", + "extension": ".h", + "size": 16331, + "date": "2017-05-25", + "sha1": "35479eb06f57411be37ac4592f84d97599411d56", + "md5": "84a79bd5e5c7303081c75378698da6ec", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/rand.h", + "type": "file", + "name": "rand.h", + "base_name": "rand", + "extension": ".h", + "size": 2634, + "date": "2017-05-25", + "sha1": "c3d0909e9fc2ee0f2c44fb4fdd021e6eac4b1122", + "md5": "2eb9376e32c8e3ed73e25e7985f2ef5c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/rc2.h", + "type": "file", + "name": "rc2.h", + "base_name": "rc2", + "extension": ".h", + "size": 1534, + "date": "2017-05-25", + "sha1": "5f3c2fc758afe16df9925c560a9c91477e7f5307", + "md5": "f99acbe6bb832ddcdafff758d719e8e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/rc4.h", + "type": "file", + "name": "rc4.h", + "base_name": "rc4", + "extension": ".h", + "size": 825, + "date": "2017-05-25", + "sha1": "d35987dfdbfca6f5c877307737fddb9f4b89c15b", + "md5": "adacdb0815ebd6ba4b14354255971086", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/rc5.h", + "type": "file", + "name": "rc5.h", + "base_name": "rc5", + "extension": ".h", + "size": 1988, + "date": "2017-05-25", + "sha1": "9d531d34575b3a17a24b33508c9e6ff762ef1262", + "md5": "abf58bf4c91faf041a4b94d94060a7d3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ripemd.h", + "type": "file", + "name": "ripemd.h", + "base_name": "ripemd", + "extension": ".h", + "size": 1243, + "date": "2017-05-25", + "sha1": "5143555c6514d549ec1a95e2bc8ce973f672150b", + "md5": "32f0286704f206769249aed9182bdcf2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/rsa.h", + "type": "file", + "name": "rsa.h", + "base_name": "rsa", + "extension": ".h", + "size": 27404, + "date": "2017-05-25", + "sha1": "1f87726ff16f2d9928949a23ce827aacefaaf7bf", + "md5": "f64b58123371795c837c28aa4c8d570b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/safestack.h", + "type": "file", + "name": "safestack.h", + "base_name": "safestack", + "extension": ".h", + "size": 6300, + "date": "2017-05-25", + "sha1": "f0e9fd911f44d70663c45f6bb1aeb8701fcc9904", + "md5": "b78f71932c8cb866e117fdacf5282134", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/seed.h", + "type": "file", + "name": "seed.h", + "base_name": "seed", + "extension": ".h", + "size": 3518, + "date": "2017-05-25", + "sha1": "57e8b670cf2e4f4f2f9e499f9ef16c38a2405709", + "md5": "450cee303355eaa1fe735c831528468b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "bsd-new", + "score": 84.58, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 13, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-new_181.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2007-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2007" + ], + "holders": [], + "authors": [], + "start_line": 11, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/sha.h", + "type": "file", + "name": "sha.h", + "base_name": "sha", + "extension": ".h", + "size": 3831, + "date": "2017-05-25", + "sha1": "96ed47038a1d226b3238037abdc0ca6873b132b7", + "md5": "b9e5afb99b7becb95f2bbcdf1339e953", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/srp.h", + "type": "file", + "name": "srp.h", + "base_name": "srp", + "extension": ".h", + "size": 3672, + "date": "2017-05-25", + "sha1": "55340d877e572f1cd3fb0ab07909df093ad2a8a0", + "md5": "deaff141b295a4a45aebd0565b9de4e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/srtp.h", + "type": "file", + "name": "srtp.h", + "base_name": "srtp", + "extension": ".h", + "size": 1316, + "date": "2017-05-25", + "sha1": "6fa02a5c501c7cacd848d2c9ae46b3d35f45d753", + "md5": "46d9445631593c865f391739cda815d8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Rescorla " + ], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [ + "Copyright (c) 2006, Network Resonance, Inc.", + "Copyright (c) 2011, RTFM, Inc." + ], + "holders": [ + "Network Resonance, Inc.", + "RTFM, Inc." + ], + "authors": [], + "start_line": 13, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ssl.h", + "type": "file", + "name": "ssl.h", + "base_name": "ssl", + "extension": ".h", + "size": 124454, + "date": "2017-05-25", + "sha1": "7e3dc61b9a19d446d4e15754c590d94d8adfaf0e", + "md5": "b8d1b3d6fb1b477bc54072cfc634c38e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ssl2.h", + "type": "file", + "name": "ssl2.h", + "base_name": "ssl2", + "extension": ".h", + "size": 542, + "date": "2017-05-25", + "sha1": "654045f73cd0aff1274b1f611f42420741133fcb", + "md5": "29861f974e3256592642e226c80c8a5b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ssl3.h", + "type": "file", + "name": "ssl3.h", + "base_name": "ssl3", + "extension": ".h", + "size": 13014, + "date": "2017-05-25", + "sha1": "dc9b43c2ecf17e77d995acc5d121aaf0109509f3", + "md5": "98d310c8cb4e6065f3be0024957e92f9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/stack.h", + "type": "file", + "name": "stack.h", + "base_name": "stack", + "extension": ".h", + "size": 2860, + "date": "2017-05-25", + "sha1": "4cce6174cfcd6f3b0f69291a2afb9d0990796e22", + "md5": "8a731a19d4b9260097351af4fad6f31d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/symhacks.h", + "type": "file", + "name": "symhacks.h", + "base_name": "symhacks", + "extension": ".h", + "size": 2076, + "date": "2017-05-25", + "sha1": "4d8629fff89ff39ab0f81507650178632d50a336", + "md5": "7a5c282616cc5c37f1b55876fdc92161", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/tls1.h", + "type": "file", + "name": "tls1.h", + "base_name": "tls1", + "extension": ".h", + "size": 49487, + "date": "2017-05-25", + "sha1": "7c4e8fcc2570f889c4231876f26d46fe4a90e1fa", + "md5": "9374db567f2a48cee48beb33f37b2952", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 24, + "end_line": 24 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 26, + "end_line": 28 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ts.h", + "type": "file", + "name": "ts.h", + "base_name": "ts", + "extension": ".h", + "size": 27348, + "date": "2017-05-25", + "sha1": "6bad06788e2bb0e49200974f67a456708e3fc45a", + "md5": "93351f356de373b950a18bf88ac95ac4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/txt_db.h", + "type": "file", + "name": "txt_db.h", + "base_name": "txt_db", + "extension": ".h", + "size": 1662, + "date": "2017-05-25", + "sha1": "7e6cdb876a29373e4bf16e95f5cd214177b9e55a", + "md5": "7c8c5770a233de69adafe44baba47a58", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/ui.h", + "type": "file", + "name": "ui.h", + "base_name": "ui", + "extension": ".h", + "size": 16856, + "date": "2017-05-25", + "sha1": "932edcf7209803f75c3bddf5e2f37a1177bfa64b", + "md5": "a2b19ac1d2ca71f87b12b8142b08f74d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/whrlpool.h", + "type": "file", + "name": "whrlpool.h", + "base_name": "whrlpool", + "extension": ".h", + "size": 1377, + "date": "2017-05-25", + "sha1": "528d0afdd195aa1b11528afff0216999635aa076", + "md5": "a8b0d0f09b12792cba263c2972b66a0d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/x509.h", + "type": "file", + "name": "x509.h", + "base_name": "x509", + "extension": ".h", + "size": 47982, + "date": "2017-05-25", + "sha1": "b37191e3dbf4ef29f3e19671377207704ad9fa6d", + "md5": "741a89f581519a5a852a579e103409e4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Pat Richard " + ], + "start_line": 255, + "end_line": 257 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/x509_vfy.h", + "type": "file", + "name": "x509_vfy.h", + "base_name": "x509_vfy", + "extension": ".h", + "size": 27625, + "date": "2017-05-25", + "sha1": "e884db730b3a9674a46cd73c2e9cf40471e9883a", + "md5": "3cf7282754f67c87ac475a18ec078b7f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/include/openssl/x509v3.h", + "type": "file", + "name": "x509v3.h", + "base_name": "x509v3", + "extension": ".h", + "size": 38262, + "date": "2017-05-25", + "sha1": "30ee2266d0f2a69b693aab076e0359686ff8b54e", + "md5": "c3d258eba96c1be8ff92a044da23b3f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms", + "type": "directory", + "name": "ms", + "base_name": "ms", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 23281, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/applink.c", + "type": "file", + "name": "applink.c", + "base_name": "applink", + "extension": ".c", + "size": 3508, + "date": "2017-05-25", + "sha1": "c764e8954385160b38f58b311c821c0232fae75a", + "md5": "cbea35e9cc59c24f7b8a4430c976ef36", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/cmp.pl", + "type": "file", + "name": "cmp.pl", + "base_name": "cmp", + "extension": ".pl", + "size": 1194, + "date": "2017-05-25", + "sha1": "b272c91ccba5a3492b0fa4b1aee7422c92ca6468", + "md5": "2b92c027ff8e83870ae145db49f48871", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/segrenam.pl", + "type": "file", + "name": "segrenam.pl", + "base_name": "segrenam", + "extension": ".pl", + "size": 2744, + "date": "2017-05-25", + "sha1": "04db5c2bbddffc6abd3c7ad579993525f7a885fe", + "md5": "8c3a55b9657d4a4b42caf7ab3a78ddcd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/tlhelp32.h", + "type": "file", + "name": "tlhelp32.h", + "base_name": "tlhelp32", + "extension": ".h", + "size": 4405, + "date": "2017-05-25", + "sha1": "1314d24695d6bb6436cb1b0dcfc7db0ea117f5ad", + "md5": "d3c289b50a51f988183d38daffe48844", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "lgpl-2.1", + "score": 38.67, + "short_name": "LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", + "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1", + "spdx_license_key": "LGPL-2.1", + "spdx_url": "https://spdx.org/licenses/LGPL-2.1", + "start_line": 8, + "end_line": 10, + "matched_rule": { + "identifier": "lgpl-2.1_65.RULE", + "license_choice": false, + "licenses": [ + "lgpl-2.1" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Mumit Khan " + ], + "start_line": 4, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/uplink-common.pl", + "type": "file", + "name": "uplink-common.pl", + "base_name": "uplink-common", + "extension": ".pl", + "size": 1109, + "date": "2017-05-25", + "sha1": "5a8582b6bcc4aac6b8c4ca2a776cdcbf733c3920", + "md5": "0b5c99ee5d834b210a8e5d7b8ba03f4c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/uplink-ia64.pl", + "type": "file", + "name": "uplink-ia64.pl", + "base_name": "uplink-ia64", + "extension": ".pl", + "size": 1411, + "date": "2017-05-25", + "sha1": "93f617bb4053c3ff0bbc7cae7e96427e9e118079", + "md5": "b0e4663cb3f75086ed4579f59515c50a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/uplink-x86.pl", + "type": "file", + "name": "uplink-x86.pl", + "base_name": "uplink-x86", + "extension": ".pl", + "size": 1067, + "date": "2017-05-25", + "sha1": "8d2af9e276813c558028be11ccbea731e67bcdc0", + "md5": "483b130bf484397008fd23a2ad957e38", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/uplink-x86_64.pl", + "type": "file", + "name": "uplink-x86_64.pl", + "base_name": "uplink-x86_64", + "extension": ".pl", + "size": 1523, + "date": "2017-05-25", + "sha1": "6237db8b1e9a70b8f7a4b28d497b6c694834e64d", + "md5": "a7a4437f7667c3d07223b3e0e08a0a33", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/uplink.c", + "type": "file", + "name": "uplink.c", + "base_name": "uplink", + "extension": ".c", + "size": 4090, + "date": "2017-05-25", + "sha1": "7a6759f97282c77ad615eddfc4d644cc48719afa", + "md5": "5bcb20ee6bf7b2a76664c69d5a4ce413", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ms/uplink.h", + "type": "file", + "name": "uplink.h", + "base_name": "uplink", + "extension": ".h", + "size": 2230, + "date": "2017-05-25", + "sha1": "fdfe733a4be9dcf36a1fcac2f3648be3284450f2", + "md5": "3fd95e82fd2ac67b9cf3dd0ef010b315", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/os-dep", + "type": "directory", + "name": "os-dep", + "base_name": "os-dep", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 46, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/os-dep/haiku.h", + "type": "file", + "name": "haiku.h", + "base_name": "haiku", + "extension": ".h", + "size": 46, + "date": "2017-05-25", + "sha1": "719c72789228b8acf94f63f36c5d48f99840b5f7", + "md5": "de120cca30b30c0019615acf513f0048", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl", + "type": "directory", + "name": "ssl", + "base_name": "ssl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 48, + "dirs_count": 2, + "size_count": 1414333, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/bio_ssl.c", + "type": "file", + "name": "bio_ssl.c", + "base_name": "bio_ssl", + "extension": ".c", + "size": 13664, + "date": "2017-05-25", + "sha1": "25f4afa0ba151472f9b511eae01664eaeff9151d", + "md5": "25e93078a88c8390b2fe1faa1dcb1082", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 657, + "date": "2017-05-25", + "sha1": "020fa9311b5ec19a723c42966372baecadad2bb3", + "md5": "8278032cfc54745f779d3397e211e2fe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/d1_lib.c", + "type": "file", + "name": "d1_lib.c", + "base_name": "d1_lib", + "extension": ".c", + "size": 32359, + "date": "2017-05-25", + "sha1": "f00184b7829b7047206a3fd9fc0cb7047b2ba4de", + "md5": "7940093744d4c2219e2e06eafcb66d21", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/d1_msg.c", + "type": "file", + "name": "d1_msg.c", + "base_name": "d1_msg", + "extension": ".c", + "size": 2435, + "date": "2017-05-25", + "sha1": "752112ca3f3936bffd71a302b193c0d975d0956c", + "md5": "035b35b68afc2b2580213ac9d191f3ac", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/d1_srtp.c", + "type": "file", + "name": "d1_srtp.c", + "base_name": "d1_srtp", + "extension": ".c", + "size": 8794, + "date": "2017-05-25", + "sha1": "b348fade860b5e1275163192c99924d390854c14", + "md5": "6a1fb01c420b622777603eaaf28500e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Eric Rescorla " + ], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [ + "Copyright (c) 2006, Network Resonance, Inc.", + "Copyright (c) 2011, RTFM, Inc." + ], + "holders": [ + "Network Resonance, Inc.", + "RTFM, Inc." + ], + "authors": [], + "start_line": 13, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/methods.c", + "type": "file", + "name": "methods.c", + "base_name": "methods", + "extension": ".c", + "size": 8239, + "date": "2017-05-25", + "sha1": "0fc9697c4f72fb718736c4aa1c6298c73908860e", + "md5": "dc4441728e48388785a50f6b840cb755", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/packet_locl.h", + "type": "file", + "name": "packet_locl.h", + "base_name": "packet_locl", + "extension": ".h", + "size": 15690, + "date": "2017-05-25", + "sha1": "d2c518fd94db2089751b98d8afdbd66e7baa01c6", + "md5": "f6f60a99a82f8e843cca80731635e222", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/pqueue.c", + "type": "file", + "name": "pqueue.c", + "base_name": "pqueue", + "extension": ".c", + "size": 2879, + "date": "2017-05-25", + "sha1": "aaa5894976dc7dddc003f0e7c44516fdffb9dfe8", + "md5": "fe72c53b9b43a7813d6ae8c69d0144ed", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/s3_cbc.c", + "type": "file", + "name": "s3_cbc.c", + "base_name": "s3_cbc", + "extension": ".c", + "size": 19837, + "date": "2017-05-25", + "sha1": "de16a74b7675bff3157654cd14300e1e79ccb4e1", + "md5": "7b52a568cb1c591238325edae9ec2211", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/s3_enc.c", + "type": "file", + "name": "s3_enc.c", + "base_name": "s3_enc", + "extension": ".c", + "size": 16971, + "date": "2017-05-25", + "sha1": "74697102220ac03f1efed749cc8c919f64d24eb9", + "md5": "bf66549bbb8b4f307b183cd6605564b0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/s3_lib.c", + "type": "file", + "name": "s3_lib.c", + "base_name": "s3_lib", + "extension": ".c", + "size": 104428, + "date": "2017-05-25", + "sha1": "6db5b7f2d40db066f2d592756c402b4361caa7d8", + "md5": "f74ae49d88ee547a7eb8864d305c3e52", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 24, + "end_line": 24 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 26, + "end_line": 28 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/s3_msg.c", + "type": "file", + "name": "s3_msg.c", + "base_name": "s3_msg", + "extension": ".c", + "size": 3917, + "date": "2017-05-25", + "sha1": "6d6033e09926336cd29df24ad6c29d26f86a1a6f", + "md5": "c5d6ded136f2cd09eac92aaa2196bb89", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_asn1.c", + "type": "file", + "name": "ssl_asn1.c", + "base_name": "ssl_asn1", + "extension": ".c", + "size": 11247, + "date": "2017-05-25", + "sha1": "cee9d12838d7b3423169173bdb55a62985f785d3", + "md5": "e0c4294dd689d475be84aafbbdf0e562", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_cert.c", + "type": "file", + "name": "ssl_cert.c", + "base_name": "ssl_cert", + "extension": ".c", + "size": 31267, + "date": "2017-05-25", + "sha1": "27065c9d74bbda1268e7ca640c7627dc2f44b09f", + "md5": "b48958bcd8572075e89f949008168495", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_ciph.c", + "type": "file", + "name": "ssl_ciph.c", + "base_name": "ssl_ciph", + "extension": ".c", + "size": 61853, + "date": "2017-05-25", + "sha1": "4f996a2aea2325b2a98961f97a7b262ae7b4b5ee", + "md5": "fd1fcb2b01791421975a6fd006863ec6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_conf.c", + "type": "file", + "name": "ssl_conf.c", + "base_name": "ssl_conf", + "extension": ".c", + "size": 26893, + "date": "2017-05-25", + "sha1": "c1a716d8c8a88dd5ce944e382ae47ac9840161c2", + "md5": "f0c489071b3b7ab11fff043125b353e2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_err.c", + "type": "file", + "name": "ssl_err.c", + "base_name": "ssl_err", + "extension": ".c", + "size": 36764, + "date": "2017-05-25", + "sha1": "615d9d26cf71e2b09aca681a0635ee54548d7f23", + "md5": "840e4064ac69ba618d5bb58dc56a4995", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_init.c", + "type": "file", + "name": "ssl_init.c", + "base_name": "ssl_init", + "extension": ".c", + "size": 6302, + "date": "2017-05-25", + "sha1": "2af2928e95a1c38b2e3c2e01c1e8ec6cc0b6df36", + "md5": "9a6f16ab03891b4ef940b3f48709deda", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_lib.c", + "type": "file", + "name": "ssl_lib.c", + "base_name": "ssl_lib", + "extension": ".c", + "size": 121216, + "date": "2017-05-25", + "sha1": "54bd6536ae2adef314ce0c812015a7765a461b22", + "md5": "54ad8adf241fd5f6e8c59480057ae4f5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_locl.h", + "type": "file", + "name": "ssl_locl.h", + "base_name": "ssl_locl", + "extension": ".h", + "size": 83405, + "date": "2017-05-25", + "sha1": "d87a4e0a06dca678f858d7ca1c9aab777a858d90", + "md5": "a4d60f3985034dfd47260fbdcd26e1c9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_mcnf.c", + "type": "file", + "name": "ssl_mcnf.c", + "base_name": "ssl_mcnf", + "extension": ".c", + "size": 5990, + "date": "2017-05-25", + "sha1": "1b1f33113678ed96c5911d3fde258dddde6896f6", + "md5": "1007870cc09c13818ea2c82592ae29a2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_rsa.c", + "type": "file", + "name": "ssl_rsa.c", + "base_name": "ssl_rsa", + "extension": ".c", + "size": 27700, + "date": "2017-05-25", + "sha1": "bf104ea2237e071427376697b6661a95db3266f8", + "md5": "0c1ce7ee8925e63ba9c0449f1a0dd154", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_sess.c", + "type": "file", + "name": "ssl_sess.c", + "base_name": "ssl_sess", + "extension": ".c", + "size": 36625, + "date": "2017-05-25", + "sha1": "d8b4750321677624e467bbfe8b298e4e232dda67", + "md5": "14d6836a3238960533cacd67f61bbdb1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_stat.c", + "type": "file", + "name": "ssl_stat.c", + "base_name": "ssl_stat", + "extension": ".c", + "size": 11252, + "date": "2017-05-25", + "sha1": "3f6ebfa41d63f895a32b0f3d182743c1094936ad", + "md5": "6f5457b5897dbd9b142b5390fffe50b0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_txt.c", + "type": "file", + "name": "ssl_txt.c", + "base_name": "ssl_txt", + "extension": ".c", + "size": 6845, + "date": "2017-05-25", + "sha1": "e8fd5647af99865b70a3dc28133a887536ee06bf", + "md5": "ef33ed347c841110d3894153520ae739", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/ssl_utst.c", + "type": "file", + "name": "ssl_utst.c", + "base_name": "ssl_utst", + "extension": ".c", + "size": 721, + "date": "2017-05-25", + "sha1": "f5278f987f0ec95959e4e244c823392f3d5f238b", + "md5": "d4f7ff324476c79df4416b7e7aa59ef4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/t1_enc.c", + "type": "file", + "name": "t1_enc.c", + "base_name": "t1_enc", + "extension": ".c", + "size": 22283, + "date": "2017-05-25", + "sha1": "85ed0146598932ca5bbd4b0b3423597c4ddaf49e", + "md5": "945249adf40f3693a00e53d9a680d4c6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 14, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 13, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 17, + "end_line": 19 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/t1_ext.c", + "type": "file", + "name": "t1_ext.c", + "base_name": "t1_ext", + "extension": ".c", + "size": 9192, + "date": "2017-05-25", + "sha1": "321533b2e95040b8e7e3eec1d93ce8bc82272491", + "md5": "e7bcc00261191790d0cccd6ae9c2a393", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/t1_lib.c", + "type": "file", + "name": "t1_lib.c", + "base_name": "t1_lib", + "extension": ".c", + "size": 136792, + "date": "2017-05-25", + "sha1": "4f02db86b7c77d9c27b8d510636772fc7530198e", + "md5": "9e7a307e432c4af0267c01f1c777cd1e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/t1_reneg.c", + "type": "file", + "name": "t1_reneg.c", + "base_name": "t1_reneg", + "extension": ".c", + "size": 5175, + "date": "2017-05-25", + "sha1": "e98e79bd2454afb31a516f641672366d28ac4fdd", + "md5": "d6a6bf50ce4e85fb2639ffdbfc9c6b6b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/t1_trce.c", + "type": "file", + "name": "t1_trce.c", + "base_name": "t1_trce", + "extension": ".c", + "size": 46723, + "date": "2017-05-25", + "sha1": "4696eba9ad95b17b2efbcd0a37829357eb9bbfe3", + "md5": "bbe1ba6753a527d56d1a397be703396e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/tls_srp.c", + "type": "file", + "name": "tls_srp.c", + "base_name": "tls_srp", + "extension": ".c", + "size": 13455, + "date": "2017-05-25", + "sha1": "421050ee8e2c7adb273d7bc4e4d8b60036b35dd8", + "md5": "af301a4a346776a03c3a463fa491a31f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record", + "type": "directory", + "name": "record", + "base_name": "record", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 173522, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record/dtls1_bitmap.c", + "type": "file", + "name": "dtls1_bitmap.c", + "base_name": "dtls1_bitmap", + "extension": ".c", + "size": 2166, + "date": "2017-05-25", + "sha1": "888af6d5286fe3eb9b2227dafc93cb5989b6c86e", + "md5": "12cec09b6d69e1bc6be40f6b745c0ca8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 3544, + "date": "2017-05-25", + "sha1": "fb651e2fe16381f7cb9f3d9aa810ad52410d032e", + "md5": "57cc9d7282eaf79507ceb0be416dfed4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record/rec_layer_d1.c", + "type": "file", + "name": "rec_layer_d1.c", + "base_name": "rec_layer_d1", + "extension": ".c", + "size": 39647, + "date": "2017-05-25", + "sha1": "bfe6c11be43a538e540be47635852175f8036f2f", + "md5": "39f20384387dba07260225ea31c50c51", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record/rec_layer_s3.c", + "type": "file", + "name": "rec_layer_s3.c", + "base_name": "rec_layer_s3", + "extension": ".c", + "size": 51711, + "date": "2017-05-25", + "sha1": "65defc3245faff518ffb2b447a9e409bd3d589b8", + "md5": "2368e1d670e4523b9a9d977908dd6c8c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record/record.h", + "type": "file", + "name": "record.h", + "base_name": "record", + "extension": ".h", + "size": 9922, + "date": "2017-05-25", + "sha1": "6f9d89ffe3936c7b557f8fc165a4695c2379305c", + "md5": "5e69c8ae5f609a1fdad44d27c994c95a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record/record_locl.h", + "type": "file", + "name": "record_locl.h", + "base_name": "record_locl", + "extension": ".h", + "size": 6235, + "date": "2017-05-25", + "sha1": "69bd18882a443ba6fc9a7714310e96e6d13b9364", + "md5": "d0732bb2a5a9a1c0932073cf2e8eb5ce", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record/ssl3_buffer.c", + "type": "file", + "name": "ssl3_buffer.c", + "base_name": "ssl3_buffer", + "extension": ".c", + "size": 3959, + "date": "2017-05-25", + "sha1": "042366a0e04ba869a8bca93f205f608a9e9bd7fd", + "md5": "6e84b6eecf681e01a706e78a840cd26d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/record/ssl3_record.c", + "type": "file", + "name": "ssl3_record.c", + "base_name": "ssl3_record", + "extension": ".c", + "size": 56338, + "date": "2017-05-25", + "sha1": "9cf1e0a96ffeb43a975ef7e64eed2d6447e9b2aa", + "md5": "e14410358440e2313874eaea6adff03f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem", + "type": "directory", + "name": "statem", + "base_name": "statem", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 309241, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 3358, + "date": "2017-05-25", + "sha1": "cc82c7751b46166d2048626d06dfd75ac433936f", + "md5": "c9e989aecc3fa5a691976aed18fdd481", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem/statem.c", + "type": "file", + "name": "statem.c", + "base_name": "statem", + "extension": ".c", + "size": 25675, + "date": "2017-05-25", + "sha1": "6fbc3c2ac108d39bc137e44530c57b1870180d62", + "md5": "c26cf10694b186313601b0ebefd8d708", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem/statem.h", + "type": "file", + "name": "statem.h", + "base_name": "statem", + "extension": ".h", + "size": 4273, + "date": "2017-05-25", + "sha1": "889ebce19210615275dd4d3464f04ee362c1b267", + "md5": "33234ad0d4f4f318cfe53ecb5f6e2a21", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem/statem_clnt.c", + "type": "file", + "name": "statem_clnt.c", + "base_name": "statem_clnt", + "extension": ".c", + "size": 91816, + "date": "2017-05-25", + "sha1": "ea3b64ad1c0c09ee2e77b56e2467e0cfdd1e56a5", + "md5": "ffcab7f91ff024145e21f520c949fb19", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 24, + "end_line": 24 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 26, + "end_line": 28 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem/statem_dtls.c", + "type": "file", + "name": "statem_dtls.c", + "base_name": "statem_dtls", + "extension": ".c", + "size": 38552, + "date": "2017-05-25", + "sha1": "be2b84f6e8e0a0ec332920400b1bde4852910880", + "md5": "e43a5e01eeb58237fec66e6ceb19cee6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem/statem_lib.c", + "type": "file", + "name": "statem_lib.c", + "base_name": "statem_lib", + "extension": ".c", + "size": 33920, + "date": "2017-05-25", + "sha1": "8dabe7e029d66963d253244bbb8643d4eab475d9", + "md5": "92158e4354658f3fecc95d8763645d8c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem/statem_locl.h", + "type": "file", + "name": "statem_locl.h", + "base_name": "statem_locl", + "extension": ".h", + "size": 5816, + "date": "2017-05-25", + "sha1": "85fab35084e1cd8d69efd5b38012d97a796de0c0", + "md5": "8de1babb95621593868ab20ffabac5dd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/ssl/statem/statem_srvr.c", + "type": "file", + "name": "statem_srvr.c", + "base_name": "statem_srvr", + "extension": ".c", + "size": 105831, + "date": "2017-05-25", + "sha1": "5c95fbedb9cc00a8d909e55f91e6055c6a121f24", + "md5": "a4e2d3de57c36d7b909c8298589cefca", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 24, + "end_line": 24 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 26, + "end_line": 28 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 30, + "end_line": 32 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test", + "type": "directory", + "name": "test", + "base_name": "test", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 563, + "dirs_count": 11, + "size_count": 3048327, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/aborttest.c", + "type": "file", + "name": "aborttest.c", + "base_name": "aborttest", + "extension": ".c", + "size": 464, + "date": "2017-05-25", + "sha1": "b62bae98a90445d2e43003b3988b42e8a8a10e9a", + "md5": "32e42d9911530e546bc269132bd37663", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/afalgtest.c", + "type": "file", + "name": "afalgtest.c", + "base_name": "afalgtest", + "extension": ".c", + "size": 3691, + "date": "2017-05-25", + "sha1": "e22f5fbd6f0a64fa0b2f5c834a0a01f210b29e52", + "md5": "50e64cc34b37bf94add5d3ad12506d34", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/asynciotest.c", + "type": "file", + "name": "asynciotest.c", + "base_name": "asynciotest", + "extension": ".c", + "size": 10973, + "date": "2017-05-25", + "sha1": "cfafe4d6f78be0266da4a0ded75147a309573d3b", + "md5": "fef926f6d017b7c1b127bc5904c353b5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/asynctest.c", + "type": "file", + "name": "asynctest.c", + "base_name": "asynctest", + "extension": ".c", + "size": 8937, + "date": "2017-05-25", + "sha1": "7d723d0cd910449b50e7917c7e6eab92d122b2a8", + "md5": "d5bd335583e66ded8916902c8b13bf2c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/bad_dtls_test.c", + "type": "file", + "name": "bad_dtls_test.c", + "base_name": "bad_dtls_test", + "extension": ".c", + "size": 20800, + "date": "2017-05-25", + "sha1": "7b30c32e55996d1498b973e6ac06970247b422eb", + "md5": "cf981f5ce71b6f253ce4386b7e53c2f2", + "mime_type": "text/x-c", + "file_type": "C source, UTF-8 Unicode text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/bftest.c", + "type": "file", + "name": "bftest.c", + "base_name": "bftest", + "extension": ".c", + "size": 17446, + "date": "2017-05-25", + "sha1": "89fe9b6b5c425a67165e5c4662e3c30b3e904d5b", + "md5": "ab27c95cb392a5f77430ba5199e2c17a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/bio_enc_test.c", + "type": "file", + "name": "bio_enc_test.c", + "base_name": "bio_enc_test", + "extension": ".c", + "size": 4230, + "date": "2017-05-25", + "sha1": "e39dd177f88c122c1bfed079f12fc741018e9bb3", + "md5": "efbc1fa3561bc7304719ff626fe59a4e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/bioprinttest.c", + "type": "file", + "name": "bioprinttest.c", + "base_name": "bioprinttest", + "extension": ".c", + "size": 9726, + "date": "2017-05-25", + "sha1": "7966431f7592fcd59a3850b89bfba9ec8a22eefb", + "md5": "037a4f8ddbb43a413eb2b858e902dd17", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/bntest.c", + "type": "file", + "name": "bntest.c", + "base_name": "bntest", + "extension": ".c", + "size": 52207, + "date": "2017-05-25", + "sha1": "33a6f001a665aeb005c3fc4c6839be25690e042f", + "md5": "1e755d2fdd2a570a11ed478c47c3e3f3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 8923, + "date": "2017-05-25", + "sha1": "8a10336f35711e961ac94686103b2d1254791f1e", + "md5": "a70db4dd28d4e8035d23258614eea420", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/CAss.cnf", + "type": "file", + "name": "CAss.cnf", + "base_name": "CAss", + "extension": ".cnf", + "size": 2243, + "date": "2017-05-25", + "sha1": "db88bc928305afb566adefef5015363f43ec722d", + "md5": "5c0a16264b3e9bd888a4c55ecd46540d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/CAssdh.cnf", + "type": "file", + "name": "CAssdh.cnf", + "base_name": "CAssdh", + "extension": ".cnf", + "size": 728, + "date": "2017-05-25", + "sha1": "7478674d2fcbc105013fd891641d24629d590603", + "md5": "8e5b0b18bf6e7b8fc3c36fa10f05af97", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/CAssdsa.cnf", + "type": "file", + "name": "CAssdsa.cnf", + "base_name": "CAssdsa", + "extension": ".cnf", + "size": 729, + "date": "2017-05-25", + "sha1": "cb76c023a226281c5f3524c819261fbac34d2aa4", + "md5": "1437aab236d980dd66457c6024038d47", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/CAssrsa.cnf", + "type": "file", + "name": "CAssrsa.cnf", + "base_name": "CAssrsa", + "extension": ".cnf", + "size": 708, + "date": "2017-05-25", + "sha1": "32edc4bdd420e2aedf901789025250206e4e1386", + "md5": "de33b2060549b17a723a31967dd26a71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/casttest.c", + "type": "file", + "name": "casttest.c", + "base_name": "casttest", + "extension": ".c", + "size": 4621, + "date": "2017-05-25", + "sha1": "a9a62338f8ba0ebd794f86b53dd5b5aad1e25aec", + "md5": "e431d3bfeaf3625f7f135e8568f14088", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/CAtsa.cnf", + "type": "file", + "name": "CAtsa.cnf", + "base_name": "CAtsa", + "extension": ".cnf", + "size": 4959, + "date": "2017-05-25", + "sha1": "3af58dc2001685d70a6e86947e12950e7ea8c54b", + "md5": "b5212fe72a10cda6e6f89cc5fea21b01", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/cipherlist_test.c", + "type": "file", + "name": "cipherlist_test.c", + "base_name": "cipherlist_test", + "extension": ".c", + "size": 5590, + "date": "2017-05-25", + "sha1": "2c0179a69deafa78ac48aabf3fd753cb84341002", + "md5": "45ce78e91efb761fd7dcd71d95ff3ad3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/clienthellotest.c", + "type": "file", + "name": "clienthellotest.c", + "base_name": "clienthellotest", + "extension": ".c", + "size": 3992, + "date": "2017-05-25", + "sha1": "2bc3e6f5b919c627f46a47944c1225dce2d46046", + "md5": "95e350931c1091423eefa3c744c3d32a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/cms-examples.pl", + "type": "file", + "name": "cms-examples.pl", + "base_name": "cms-examples", + "extension": ".pl", + "size": 8896, + "date": "2017-05-25", + "sha1": "58445783211e594f87fc8e7576181735e7fee09b", + "md5": "4cfddde1ef3e25e22087e81ef32fa792", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/constant_time_test.c", + "type": "file", + "name": "constant_time_test.c", + "base_name": "constant_time_test", + "extension": ".c", + "size": 9851, + "date": "2017-05-25", + "sha1": "b61542506ffe260026b8f9b09f20b1786980bb7b", + "md5": "548805530d879bb00b0656c5b465aa96", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/crltest.c", + "type": "file", + "name": "crltest.c", + "base_name": "crltest", + "extension": ".c", + "size": 14945, + "date": "2017-05-25", + "sha1": "0fc3c5f590a3fc954d69fe0c90dd16b990e6dee0", + "md5": "6f3e99140e44eca2c6112b92e72589de", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ct_test.c", + "type": "file", + "name": "ct_test.c", + "base_name": "ct_test", + "extension": ".c", + "size": 18168, + "date": "2017-05-25", + "sha1": "99dc4c1b16e3d50040e3ba60928745bfdfc24a70", + "md5": "f5b3833db828b5dd09a10c565107ffce", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i_test.c", + "type": "file", + "name": "d2i_test.c", + "base_name": "d2i_test", + "extension": ".c", + "size": 5353, + "date": "2017-05-25", + "sha1": "7629218570bd33f3901fdbe274b7cb2b2f8b81f3", + "md5": "458bc787aab366e36a50878208155911", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/danetest.c", + "type": "file", + "name": "danetest.c", + "base_name": "danetest", + "extension": ".c", + "size": 13058, + "date": "2017-05-25", + "sha1": "c5b0a8871d2fbc121fbd59104c82666dee6a69fe", + "md5": "864794b3bc68d440bd042a20e7f53ecc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/danetest.in", + "type": "file", + "name": "danetest.in", + "base_name": "danetest", + "extension": ".in", + "size": 89688, + "date": "2017-05-25", + "sha1": "0d1b27807114cb7e4f4895a4a37914948feb4cc6", + "md5": "a44cedb6378d0b852d53412b89db236d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/danetest.pem", + "type": "file", + "name": "danetest.pem", + "base_name": "danetest", + "extension": ".pem", + "size": 652, + "date": "2017-05-25", + "sha1": "e6eda46af336576945e89e5b8f732d4271b214be", + "md5": "9c09e39960d1985c9e354c58b759f013", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/destest.c", + "type": "file", + "name": "destest.c", + "base_name": "destest", + "extension": ".c", + "size": 29989, + "date": "2017-05-25", + "sha1": "24c1f219c651bf0aabf01e6c75a49f4b650ab73f", + "md5": "ad96bd48f5c3c68f9e197ddcfd0fe38c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/dhtest.c", + "type": "file", + "name": "dhtest.c", + "base_name": "dhtest", + "extension": ".c", + "size": 24479, + "date": "2017-05-25", + "sha1": "d80848717c90ff23f346db8aa8b6837e1a7af426", + "md5": "258db3df72c908bbca0b32b520fbe51e", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/dsatest.c", + "type": "file", + "name": "dsatest.c", + "base_name": "dsatest", + "extension": ".c", + "size": 5282, + "date": "2017-05-25", + "sha1": "96a83ea56a0f47d37864716075a2c744a3650100", + "md5": "2661f69f4d74603a966c5fd6aca57c9a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/dtlstest.c", + "type": "file", + "name": "dtlstest.c", + "base_name": "dtlstest", + "extension": ".c", + "size": 3942, + "date": "2017-05-25", + "sha1": "d9d24d31f258bb848d11c7b0ff18036eeffc4846", + "md5": "6f04de55ec977aa4fc9097ff0b5616bc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/dtlsv1listentest.c", + "type": "file", + "name": "dtlsv1listentest.c", + "base_name": "dtlsv1listentest", + "extension": ".c", + "size": 13871, + "date": "2017-05-25", + "sha1": "29eaa73d4e1cdefefae43cbb3792d0b6a74000e9", + "md5": "9fe9eb9b2fe1bcbadd3789e89b39de69", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ecdsatest.c", + "type": "file", + "name": "ecdsatest.c", + "base_name": "ecdsatest", + "extension": ".c", + "size": 16119, + "date": "2017-05-25", + "sha1": "a6cce7a1975f3c115d02c1296b0d9a528df76312", + "md5": "f26cc5ca31acf7ad024a9852ce335d3d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2002-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ectest.c", + "type": "file", + "name": "ectest.c", + "base_name": "ectest", + "extension": ".c", + "size": 57229, + "date": "2017-05-25", + "sha1": "363a6ae923a383da9d2c71fadcda8df101b97fe9", + "md5": "c3a7ce5507d12985dfbce480a2bb6ac4", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 16, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 13, + "end_line": 14 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories." + ], + "start_line": 19, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/enginetest.c", + "type": "file", + "name": "enginetest.c", + "base_name": "enginetest", + "extension": ".c", + "size": 5998, + "date": "2017-05-25", + "sha1": "83659c86c04bfd221c73d504b76fd7cef56e273a", + "md5": "e9dedeeb9264cadf5b55521586833a14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/evp_extra_test.c", + "type": "file", + "name": "evp_extra_test.c", + "base_name": "evp_extra_test", + "extension": ".c", + "size": 16667, + "date": "2017-05-25", + "sha1": "492129a0f212434eb2a0017c8a3c595bf7347a93", + "md5": "d9c57d4c404f1516c04315cb24bbb9b2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/evp_test.c", + "type": "file", + "name": "evp_test.c", + "base_name": "evp_test", + "extension": ".c", + "size": 56973, + "date": "2017-05-25", + "sha1": "62bfdc231de771b8e742c9c2344934863a917f32", + "md5": "4c4c979a9a16db6904ca2362d0cc3f71", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/evptests.txt", + "type": "file", + "name": "evptests.txt", + "base_name": "evptests", + "extension": ".txt", + "size": 710370, + "date": "2017-05-25", + "sha1": "1cb6f2865f45787b92a2f6fc129970471be879ea", + "md5": "299552fae350a67e8e2dc706127d7cc5", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2001-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/exdatatest.c", + "type": "file", + "name": "exdatatest.c", + "base_name": "exdatatest", + "extension": ".c", + "size": 3102, + "date": "2017-05-25", + "sha1": "f592d1dcde9017aa53886ba2ae62c25ac6dd9730", + "md5": "e04659e670cd74c5276853b105ef69d3", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/exptest.c", + "type": "file", + "name": "exptest.c", + "base_name": "exptest", + "extension": ".c", + "size": 6900, + "date": "2017-05-25", + "sha1": "ea0cb1a712ee15089abe70a3d93912a65ae63937", + "md5": "76852001dedb72f31da6502e4486620a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/generate_buildtest.pl", + "type": "file", + "name": "generate_buildtest.pl", + "base_name": "generate_buildtest", + "extension": ".pl", + "size": 784, + "date": "2017-05-25", + "sha1": "12f3e2efaeaf7fe8cbb11820d6d2dac891bdf8ed", + "md5": "6530addb59cc1654698a95f961d7b29e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/generate_ssl_tests.pl", + "type": "file", + "name": "generate_ssl_tests.pl", + "base_name": "generate_ssl_tests", + "extension": ".pl", + "size": 4447, + "date": "2017-05-25", + "sha1": "9e8e1f6e9e9f19a81954b33acb8db0eddf9ab920", + "md5": "9bf74dfe66b57759686fe37b8ff02a3b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/gmdifftest.c", + "type": "file", + "name": "gmdifftest.c", + "base_name": "gmdifftest", + "extension": ".c", + "size": 2433, + "date": "2017-05-25", + "sha1": "1dacb3f6359dac48efaa96878eff552f621fdcee", + "md5": "fd2a074c1194d30037b8e68c992484f8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/handshake_helper.c", + "type": "file", + "name": "handshake_helper.c", + "base_name": "handshake_helper", + "extension": ".c", + "size": 38051, + "date": "2017-05-25", + "sha1": "e7c7a22ce101621e0a19c1f62d8cfde6605e0a36", + "md5": "160fe75d93929966739ae2aa4ba327f0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/handshake_helper.h", + "type": "file", + "name": "handshake_helper.h", + "base_name": "handshake_helper", + "extension": ".h", + "size": 2232, + "date": "2017-05-25", + "sha1": "9a1c350ed6b79058138463d128248fc8d05e2368", + "md5": "42fb3b1740c46e89f51597eee15f52a8", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/heartbeat_test.c", + "type": "file", + "name": "heartbeat_test.c", + "base_name": "heartbeat_test", + "extension": ".c", + "size": 11784, + "date": "2017-05-25", + "sha1": "1a9c727b60a0075fc8fc1728bc9f57d9a666e05a", + "md5": "1ce6b22be1dbc40dd7d072d0651bc0c1", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mike Bland (mbland@acm.org, http://mike-bland.com/)" + ], + "start_line": 15, + "end_line": 18 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/hmactest.c", + "type": "file", + "name": "hmactest.c", + "base_name": "hmactest", + "extension": ".c", + "size": 9530, + "date": "2017-05-25", + "sha1": "304be6e160b95d45a72b8c23833a61841e34e83c", + "md5": "e5cdd335fb505476865d381355f64a36", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ideatest.c", + "type": "file", + "name": "ideatest.c", + "base_name": "ideatest", + "extension": ".c", + "size": 5226, + "date": "2017-05-25", + "sha1": "a062e769663150b3ba6c1c038b70fedbb63a6938", + "md5": "1efef7edc77e04937b3a7e6e3b4eb7e5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/igetest.c", + "type": "file", + "name": "igetest.c", + "base_name": "igetest", + "extension": ".c", + "size": 16483, + "date": "2017-05-25", + "sha1": "9af902636d8a18998ebb996ccaa3663b41dfd056", + "md5": "d6bc15b0444adbb31ad5034de393be81", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/md2test.c", + "type": "file", + "name": "md2test.c", + "base_name": "md2test", + "extension": ".c", + "size": 2154, + "date": "2017-05-25", + "sha1": "6fced0ec6fbd1ae0b0d43b688d9abf843fc35713", + "md5": "cccdc3560410e9cac18ad1b8fc625b65", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/md4test.c", + "type": "file", + "name": "md4test.c", + "base_name": "md4test", + "extension": ".c", + "size": 2071, + "date": "2017-05-25", + "sha1": "ce29cc0974d5a18e193a2080046a97129c836b94", + "md5": "67238553826f798593c3791c1197eb62", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/md5test.c", + "type": "file", + "name": "md5test.c", + "base_name": "md5test", + "extension": ".c", + "size": 2072, + "date": "2017-05-25", + "sha1": "6970edf44ad99c4211c7bb66704500280c04547d", + "md5": "a42faeea421972ba87bbcd8fa3ccba83", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/mdc2test.c", + "type": "file", + "name": "mdc2test.c", + "base_name": "mdc2test", + "extension": ".c", + "size": 2575, + "date": "2017-05-25", + "sha1": "c9af6836828cb407ce8d8c1bf9bc1442a9493593", + "md5": "d9fe14303c306bbcb4855244c2d0f988", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/memleaktest.c", + "type": "file", + "name": "memleaktest.c", + "base_name": "memleaktest", + "extension": ".c", + "size": 1142, + "date": "2017-05-25", + "sha1": "0ba7405194aa91e014d370d1821a9468876152a3", + "md5": "a46fe4d681703a8029da581d8856990d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/methtest.c", + "type": "file", + "name": "methtest.c", + "base_name": "methtest", + "extension": ".c", + "size": 1642, + "date": "2017-05-25", + "sha1": "f7be3f7fe0a692b1d17095bf92668446f02120a5", + "md5": "fd4aa08d299af988e906e6ff148004e0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/P1ss.cnf", + "type": "file", + "name": "P1ss.cnf", + "base_name": "P1ss", + "extension": ".cnf", + "size": 1000, + "date": "2017-05-25", + "sha1": "59a8acfc2d50d5d2bcd638f2e82e168d1c3d419b", + "md5": "d30712b36fc0c19d417c8b01d7eca8cb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/P2ss.cnf", + "type": "file", + "name": "P2ss.cnf", + "base_name": "P2ss", + "extension": ".cnf", + "size": 1102, + "date": "2017-05-25", + "sha1": "ec90d9f753ca4d55f66f65839a9860c94497db24", + "md5": "753be1fbc2a642f28b5f1b11df96dc22", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/p5_crpt2_test.c", + "type": "file", + "name": "p5_crpt2_test.c", + "base_name": "p5_crpt2_test", + "extension": ".c", + "size": 4830, + "date": "2017-05-25", + "sha1": "6839d51c046494aafa24c5a083aa001dceafe4e4", + "md5": "8f49db6f9fb3a2cf9eae4bd108fb7ee0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/packettest.c", + "type": "file", + "name": "packettest.c", + "base_name": "packettest", + "extension": ".c", + "size": 15272, + "date": "2017-05-25", + "sha1": "ee0bfaec47ca2612c9d13b9f68f08446559a65d9", + "md5": "b521641299613f90f457ef78a4ef8499", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/pbelutest.c", + "type": "file", + "name": "pbelutest.c", + "base_name": "pbelutest", + "extension": ".c", + "size": 1346, + "date": "2017-05-25", + "sha1": "28c17124606136e078a9a7829d30df5a409a01cf", + "md5": "cd728e6e267acc3407c7cb7c87d3c899", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/pkcs7-1.pem", + "type": "file", + "name": "pkcs7-1.pem", + "base_name": "pkcs7-1", + "extension": ".pem", + "size": 851, + "date": "2017-05-25", + "sha1": "1f4eb62e8fe83b89bfbbb0faa51f146a726e0920", + "md5": "5636a9df1d9fae3480e231045f493f3b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/pkcs7.pem", + "type": "file", + "name": "pkcs7.pem", + "base_name": "pkcs7", + "extension": ".pem", + "size": 3744, + "date": "2017-05-25", + "sha1": "ebe39e1f0469db03364890861114731343b3309d", + "md5": "164c1b63301b452b9fb4211c430eb592", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/pkits-test.pl", + "type": "file", + "name": "pkits-test.pl", + "base_name": "pkits-test", + "extension": ".pl", + "size": 31914, + "date": "2017-05-25", + "sha1": "8622a1a63a5e00cad90fed31678b1bb8ec3fbdb3", + "md5": "1f28617a6de04033b751592ef53d62bd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2008-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/r160test.c", + "type": "file", + "name": "r160test.c", + "base_name": "r160test", + "extension": ".c", + "size": 334, + "date": "2017-05-25", + "sha1": "cc871307e010e415b71fcfaa240bc613726aba96", + "md5": "02b4566ff9853ba1663fd7c5818a8d66", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/randtest.c", + "type": "file", + "name": "randtest.c", + "base_name": "randtest", + "extension": ".c", + "size": 3767, + "date": "2017-05-25", + "sha1": "b32e37b0160aadaf3ccb8a3b81b997f17f61aedb", + "md5": "b12db049cc54912e82c13ed3abba701c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/rc2test.c", + "type": "file", + "name": "rc2test.c", + "base_name": "rc2test", + "extension": ".c", + "size": 2933, + "date": "2017-05-25", + "sha1": "26b0f236658cabb6d3ff73287bfa52d5ebc23d01", + "md5": "a33848c594de8b0ffe967e7e7af4a44f", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/rc4test.c", + "type": "file", + "name": "rc4test.c", + "base_name": "rc4test", + "extension": ".c", + "size": 5778, + "date": "2017-05-25", + "sha1": "867ce0bcdd7621d5115b12af319153bf18981c1f", + "md5": "d1239ca76b1f850003b754524e9fb093", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/rc5test.c", + "type": "file", + "name": "rc5test.c", + "base_name": "rc5test", + "extension": ".c", + "size": 10439, + "date": "2017-05-25", + "sha1": "c5b0604940b2ef598e670786368b1c56bf2b1d36", + "md5": "0e0551e485bef904c77a081497df4c00", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/README", + "type": "file", + "name": "README", + "base_name": "README", + "extension": "", + "size": 2898, + "date": "2017-05-25", + "sha1": "b10210347c4ec77a0c0cbba53af8f89c9cd42a2b", + "md5": "cf6fe485bdc5a2a65b02b2cfd0b7703c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "reStructuredText", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/README.ssltest.md", + "type": "file", + "name": "README.ssltest.md", + "base_name": "README.ssltest", + "extension": ".md", + "size": 9182, + "date": "2017-05-25", + "sha1": "a5b5739824a478024e66cb404eda4ae1ff77e8ab", + "md5": "3c0e335465e0a5143e5a4bf2ff3f4500", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/rmdtest.c", + "type": "file", + "name": "rmdtest.c", + "base_name": "rmdtest", + "extension": ".c", + "size": 2443, + "date": "2017-05-25", + "sha1": "1c17a2060a336b605bc28dfb185938fc6320e5ea", + "md5": "74a0192acf3f6b7750869e6200ffe33b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/rsa_test.c", + "type": "file", + "name": "rsa_test.c", + "base_name": "rsa_test", + "extension": ".c", + "size": 12975, + "date": "2017-05-25", + "sha1": "03b11069bbe0830de386e2266c13db5a79873cb3", + "md5": "126b1b0efca4bd0f5c7405fda59fe578", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/run_tests.pl", + "type": "file", + "name": "run_tests.pl", + "base_name": "run_tests", + "extension": ".pl", + "size": 2804, + "date": "2017-05-25", + "sha1": "00eb346aa2d7748e062edbec2b428f1b1cd244a4", + "md5": "21679616cbef3e498842c9a635566051", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/sanitytest.c", + "type": "file", + "name": "sanitytest.c", + "base_name": "sanitytest", + "extension": ".c", + "size": 2082, + "date": "2017-05-25", + "sha1": "ef1c6f27698487f6b90df4bb33dc0894b4ba249f", + "md5": "ffd326fdb0e0a5fdd8357de2c9dfe327", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/secmemtest.c", + "type": "file", + "name": "secmemtest.c", + "base_name": "secmemtest", + "extension": ".c", + "size": 4947, + "date": "2017-05-25", + "sha1": "36c4bc1c2b3fc2ffe756a6410f54de944ac42e52", + "md5": "eb7334acb29c6fee23f0e1bb2be3c900", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/serverinfo.pem", + "type": "file", + "name": "serverinfo.pem", + "base_name": "serverinfo", + "extension": ".pem", + "size": 740, + "date": "2017-05-25", + "sha1": "6a1f596630b47cc0e58d79ea8d3c1978574e9c4f", + "md5": "126dd7db1bc368bea9b3d4eb54fff6a7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/sha1test.c", + "type": "file", + "name": "sha1test.c", + "base_name": "sha1test", + "extension": ".c", + "size": 2775, + "date": "2017-05-25", + "sha1": "967a3409cd5a8a6b6741ae01ad3af0dd8e9c3047", + "md5": "5cd35326dff8a8934551172dea8cbf5c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/sha256t.c", + "type": "file", + "name": "sha256t.c", + "base_name": "sha256t", + "extension": ".c", + "size": 5768, + "date": "2017-05-25", + "sha1": "7e0651efb0796a7067e6a84bdd1b9721322a44af", + "md5": "3cc168cba9cc9db573bd3d87cfa5b601", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/sha512t.c", + "type": "file", + "name": "sha512t.c", + "base_name": "sha512t", + "extension": ".c", + "size": 6990, + "date": "2017-05-25", + "sha1": "750b268b0840b4a97e926fd1274346f16905dbe1", + "md5": "abaf1804e59ff10b122b30c887c436f2", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/shibboleth.pfx", + "type": "file", + "name": "shibboleth.pfx", + "base_name": "shibboleth", + "extension": ".pfx", + "size": 2519, + "date": "2017-05-25", + "sha1": "1aa3da3f3fbe783efeedbf23ff0d6cb70ec350ad", + "md5": "66b1d3c11fbf8020c7bd863aee9d34b2", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/shlibloadtest.c", + "type": "file", + "name": "shlibloadtest.c", + "base_name": "shlibloadtest", + "extension": ".c", + "size": 5985, + "date": "2017-05-25", + "sha1": "f8074edfdd747fc855d748ff2b04d7e942bc531d", + "md5": "0ea24d9ff98e34d46d383b8f128cddcc", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smcont.txt", + "type": "file", + "name": "smcont.txt", + "base_name": "smcont", + "extension": ".txt", + "size": 83, + "date": "2017-05-25", + "sha1": "50aa7be7747fbc7c5d2872b21ea87b7fd7265fac", + "md5": "7a2b5241b1769e94f13687fa40e6c985", + "mime_type": "text/plain", + "file_type": "ASCII text, with no line terminators", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/srptest.c", + "type": "file", + "name": "srptest.c", + "base_name": "srptest", + "extension": ".c", + "size": 8749, + "date": "2017-05-25", + "sha1": "c38510657ae026d67b1de29e4046b2a5b5c4f4fa", + "md5": "6e35b7a7d37c6dbb0e6bf7ce743efb14", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl_test.c", + "type": "file", + "name": "ssl_test.c", + "base_name": "ssl_test", + "extension": ".c", + "size": 12321, + "date": "2017-05-25", + "sha1": "a7486c5df6b74d3b24f11e261ad02d67e7de7e08", + "md5": "01df948a36aacc36e59a5574fcea2748", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl_test.tmpl", + "type": "file", + "name": "ssl_test.tmpl", + "base_name": "ssl_test", + "extension": ".tmpl", + "size": 4424, + "date": "2017-05-25", + "sha1": "53d419024d05a201dcdd6e0f9b796dbf9db2d1c9", + "md5": "6548dc52339694de89bba22902d2d07d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Cheetah", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl_test_ctx.c", + "type": "file", + "name": "ssl_test_ctx.c", + "base_name": "ssl_test_ctx", + "extension": ".c", + "size": 20550, + "date": "2017-05-25", + "sha1": "3fb53cc37b91db11dea80ea8f82f7d66ab9354ac", + "md5": "eade9ded9e2087c6f7ce17da51a3d92b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl_test_ctx.h", + "type": "file", + "name": "ssl_test_ctx.h", + "base_name": "ssl_test_ctx", + "extension": ".h", + "size": 6440, + "date": "2017-05-25", + "sha1": "652d612a5838cab63f6ed80a081010259ac38522", + "md5": "06cbd385230960431a9c01ee9166e677", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl_test_ctx_test.c", + "type": "file", + "name": "ssl_test_ctx_test.c", + "base_name": "ssl_test_ctx_test", + "extension": ".c", + "size": 11985, + "date": "2017-05-25", + "sha1": "a6cddbd2c0c1337c05f9d2d665fa6315a3b855e2", + "md5": "aba47943cb986b46291a22c153810902", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl_test_ctx_test.conf", + "type": "file", + "name": "ssl_test_ctx_test.conf", + "base_name": "ssl_test_ctx_test", + "extension": ".conf", + "size": 1864, + "date": "2017-05-25", + "sha1": "34579b236b989e5a7482aa89b505b105e7cf4bc2", + "md5": "b5facaa00d4ca8e91b95e2fbdc10ee60", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "INI", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/sslapitest.c", + "type": "file", + "name": "sslapitest.c", + "base_name": "sslapitest", + "extension": ".c", + "size": 34691, + "date": "2017-05-25", + "sha1": "9e16d0649c1aaa2b4074fded6431b26342146b9f", + "md5": "eac744b89e7d50da99251a2c4ddf9176", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/sslcorrupttest.c", + "type": "file", + "name": "sslcorrupttest.c", + "base_name": "sslcorrupttest", + "extension": ".c", + "size": 7245, + "date": "2017-05-25", + "sha1": "16cb91403223b7042dbc3f52379d8c9c03db70c0", + "md5": "d0b79a733e381e88a25dcf9c33a2de1a", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssltest_old.c", + "type": "file", + "name": "ssltest_old.c", + "base_name": "ssltest_old", + "extension": ".c", + "size": 105629, + "date": "2017-05-25", + "sha1": "6af24e2afadea078784fd6a5a4695f7203411bb6", + "md5": "33fa96fed2943dae9685535304342923", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2002 Sun Microsystems, Inc." + ], + "holders": [ + "Sun Microsystems, Inc." + ], + "authors": [], + "start_line": 11, + "end_line": 11 + }, + { + "statements": [], + "holders": [], + "authors": [ + "SUN MICROSYSTEMS, INC." + ], + "start_line": 12, + "end_line": 13 + }, + { + "statements": [ + "Copyright 2005 Nokia." + ], + "holders": [ + "Nokia." + ], + "authors": [], + "start_line": 16, + "end_line": 16 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Nokia Corporation" + ], + "start_line": 18, + "end_line": 20 + }, + { + "statements": [], + "holders": [], + "authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation" + ], + "start_line": 22, + "end_line": 24 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssltestlib.c", + "type": "file", + "name": "ssltestlib.c", + "base_name": "ssltestlib", + "extension": ".c", + "size": 19819, + "date": "2017-05-25", + "sha1": "ff89c9258e69a5e353344323d493288419859bbe", + "md5": "5f767ad588fd790addefffb933d676f6", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssltestlib.h", + "type": "file", + "name": "ssltestlib.h", + "base_name": "ssltestlib", + "extension": ".h", + "size": 1344, + "date": "2017-05-25", + "sha1": "163c27bb47aa33afbe2fc9193e72267d17ea7b28", + "md5": "ec9832edac2587103fb1f9a856c8972b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/Sssdsa.cnf", + "type": "file", + "name": "Sssdsa.cnf", + "base_name": "Sssdsa", + "extension": ".cnf", + "size": 821, + "date": "2017-05-25", + "sha1": "8e9fea7306e8a666eb4bb77d43f87d2a3c3c4bbc", + "md5": "011da1f1c1b323bde480a563e06f299b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/Sssrsa.cnf", + "type": "file", + "name": "Sssrsa.cnf", + "base_name": "Sssrsa", + "extension": ".cnf", + "size": 798, + "date": "2017-05-25", + "sha1": "11611544133c6e985e73e28bdcabd2822ed040d8", + "md5": "4dfc1b9b87ce2236eafe1ca39aea13a2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/test.cnf", + "type": "file", + "name": "test.cnf", + "base_name": "test", + "extension": ".cnf", + "size": 2637, + "date": "2017-05-25", + "sha1": "17440d2cc4229139423b50bfae03c5b74cbb801c", + "md5": "f5f00cf668eb83cd19e07336725462c2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testcrl.pem", + "type": "file", + "name": "testcrl.pem", + "base_name": "testcrl", + "extension": ".pem", + "size": 938, + "date": "2017-05-25", + "sha1": "bfe23d4bec1c31a1b25627a31138d1ce82718a24", + "md5": "3d6d3b3c0c0024d8410d0a9256e9a870", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testdsa.pem", + "type": "file", + "name": "testdsa.pem", + "base_name": "testdsa", + "extension": ".pem", + "size": 672, + "date": "2017-05-25", + "sha1": "9e9d2f01211b973341f4735a5092e8a813b89e67", + "md5": "f48309791386ce8c5e3fefe614216df7", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testdsapub.pem", + "type": "file", + "name": "testdsapub.pem", + "base_name": "testdsapub", + "extension": ".pem", + "size": 654, + "date": "2017-05-25", + "sha1": "68e06a1f7609cb21ca7d16afac2905763ae28ffe", + "md5": "96191129860f79d8a35e5eb849d34ec0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testec-p256.pem", + "type": "file", + "name": "testec-p256.pem", + "base_name": "testec-p256", + "extension": ".pem", + "size": 227, + "date": "2017-05-25", + "sha1": "bfe1e1608429aee0a97f646eb6e808ea8a4bf0f9", + "md5": "d68a856691d95d530d5c10d638592f1a", + "mime_type": "text/plain", + "file_type": "PEM EC private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testecpub-p256.pem", + "type": "file", + "name": "testecpub-p256.pem", + "base_name": "testecpub-p256", + "extension": ".pem", + "size": 178, + "date": "2017-05-25", + "sha1": "8df43a324d2763a889bfdfc278dad5e2168432fc", + "md5": "c4f930dffbce990021cbaeb8cb085f7d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testp7.pem", + "type": "file", + "name": "testp7.pem", + "base_name": "testp7", + "extension": ".pem", + "size": 2854, + "date": "2017-05-25", + "sha1": "01973d933b2ccf794ba411803bfcb6808e688609", + "md5": "774028abd40a175221ed5498b69bc388", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testreq2.pem", + "type": "file", + "name": "testreq2.pem", + "base_name": "testreq2", + "extension": ".pem", + "size": 371, + "date": "2017-05-25", + "sha1": "1c21cfdc959a9b1a51011a1df50e71fc0c306bcb", + "md5": "2ef02b7b366b24d73765bab6c46b0e9a", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testrsa.pem", + "type": "file", + "name": "testrsa.pem", + "base_name": "testrsa", + "extension": ".pem", + "size": 497, + "date": "2017-05-25", + "sha1": "72472944db5057267a659bd695098f342de7af14", + "md5": "68f931406c1b3832776fbe954bd5dc12", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testrsapub.pem", + "type": "file", + "name": "testrsapub.pem", + "base_name": "testrsapub", + "extension": ".pem", + "size": 182, + "date": "2017-05-25", + "sha1": "5c0cc2af58eac72b41a8a8cc51fc05ee21756a0e", + "md5": "caff536b2095d7990b6c23400df3d8e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testsid.pem", + "type": "file", + "name": "testsid.pem", + "base_name": "testsid", + "extension": ".pem", + "size": 2384, + "date": "2017-05-25", + "sha1": "dd3bfd2021d0fbe3981424396c19faec23401d7a", + "md5": "fcb37e76c089645a9911a6576efb8a4c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testutil.c", + "type": "file", + "name": "testutil.c", + "base_name": "testutil", + "extension": ".c", + "size": 3053, + "date": "2017-05-25", + "sha1": "2ce590bb27d3b5ae35c745f5a26a73d595c260fc", + "md5": "a29fcdeed2408c114c2935d80605ade5", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testutil.h", + "type": "file", + "name": "testutil.h", + "base_name": "testutil", + "extension": ".h", + "size": 3906, + "date": "2017-05-25", + "sha1": "4bf91ccb24fc981b83eb976b900d3a0e9ce1d649", + "md5": "533eabc1dae7bd4ec1b0c028cdac4584", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testx509.pem", + "type": "file", + "name": "testx509.pem", + "base_name": "testx509", + "extension": ".pem", + "size": 530, + "date": "2017-05-25", + "sha1": "a392087de04a7c8173b2646acdb04a86285c2c84", + "md5": "d8520328643dfc6e1721630a5bc4ff9e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/threadstest.c", + "type": "file", + "name": "threadstest.c", + "base_name": "threadstest", + "extension": ".c", + "size": 4929, + "date": "2017-05-25", + "sha1": "2146b81c3a28f770a1a32eef6f9bd625eb6c6899", + "md5": "63898cba0ffbe568f1c34e00df1dcfc9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/Uss.cnf", + "type": "file", + "name": "Uss.cnf", + "base_name": "Uss", + "extension": ".cnf", + "size": 1018, + "date": "2017-05-25", + "sha1": "d61f5a98c3aaf7e8e428815fd44d166bfa4d6467", + "md5": "57e0ddc455face3a6239d93a8e42d1c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/v3-cert1.pem", + "type": "file", + "name": "v3-cert1.pem", + "base_name": "v3-cert1", + "extension": ".pem", + "size": 944, + "date": "2017-05-25", + "sha1": "045b99cb97fa3f561e773f7af34e8848a529535a", + "md5": "ef95828b48559af8f295f08b7a314d05", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/v3-cert2.pem", + "type": "file", + "name": "v3-cert2.pem", + "base_name": "v3-cert2", + "extension": ".pem", + "size": 940, + "date": "2017-05-25", + "sha1": "d1331c48b9b0e957152c603883f63d21d47fcd13", + "md5": "981e370c298e3bdd08d958e99b23ce30", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/v3ext.c", + "type": "file", + "name": "v3ext.c", + "base_name": "v3ext", + "extension": ".c", + "size": 965, + "date": "2017-05-25", + "sha1": "3053ddb38effbf9ae4a7ead9a2f72c2fe3df872b", + "md5": "30834fd192c98c0bd28e32dc2d808017", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/v3nametest.c", + "type": "file", + "name": "v3nametest.c", + "base_name": "v3nametest", + "extension": ".c", + "size": 11493, + "date": "2017-05-25", + "sha1": "8d017ee94cc9655af10163a666b8d5141275332b", + "md5": "14fc84b3adc674be3563375efc9c5125", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2012-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/verify_extra_test.c", + "type": "file", + "name": "verify_extra_test.c", + "base_name": "verify_extra_test", + "extension": ".c", + "size": 4038, + "date": "2017-05-25", + "sha1": "c25add1d33e72df4278fcd556c5235af4afe5ef7", + "md5": "19b2db6d918d5d489bde145c668155ee", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/wp_test.c", + "type": "file", + "name": "wp_test.c", + "base_name": "wp_test", + "extension": ".c", + "size": 8404, + "date": "2017-05-25", + "sha1": "2b7353c9e1262fdb8eceff3630b400665fea8336", + "md5": "eedfda8c4bb87946ba103b00854150fe", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/x509aux.c", + "type": "file", + "name": "x509aux.c", + "base_name": "x509aux", + "extension": ".c", + "size": 6141, + "date": "2017-05-25", + "sha1": "8436d19d976bc9bcff008b7a62185a3b105fd3bc", + "md5": "28493cf5249fc82ea0cfc8a92399d69b", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 66.67, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "apache-2.0_23.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs", + "type": "directory", + "name": "certs", + "base_name": "certs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 162, + "dirs_count": 0, + "size_count": 230582, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/alt1-cert.pem", + "type": "file", + "name": "alt1-cert.pem", + "base_name": "alt1-cert", + "extension": ".pem", + "size": 1302, + "date": "2017-05-25", + "sha1": "0debc74ef66a7d304919dc2bcc93ce3517639ed4", + "md5": "0a63a2ae9da7ad0634ffe14010fff93f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/alt1-key.pem", + "type": "file", + "name": "alt1-key.pem", + "base_name": "alt1-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "66f7fce5a4792b0cd117467fe74e247822e75b2f", + "md5": "0a0c89e18c113fcdd9a0f1acd3b8ae37", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/alt2-cert.pem", + "type": "file", + "name": "alt2-cert.pem", + "base_name": "alt2-cert", + "extension": ".pem", + "size": 1216, + "date": "2017-05-25", + "sha1": "bc4ed92dca86bb7d1738c36689c18670708af19d", + "md5": "11f6d012a487d02d58e76dec7b09fe2a", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/alt2-key.pem", + "type": "file", + "name": "alt2-key.pem", + "base_name": "alt2-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "48b9cbd49860b5f8bfb34c773ec2afe1f016a124", + "md5": "58b279c2dfb63991ae5a23c6db4817c2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/alt3-cert.pem", + "type": "file", + "name": "alt3-cert.pem", + "base_name": "alt3-cert", + "extension": ".pem", + "size": 1265, + "date": "2017-05-25", + "sha1": "00bd9eb8ad00cfb81f7633658212d834a62a2c35", + "md5": "66e116257fef0bdc7f20e0251fd72ed3", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/alt3-key.pem", + "type": "file", + "name": "alt3-key.pem", + "base_name": "alt3-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "15bd4e7dcd307d440c2de6a7de2468421e886fbd", + "md5": "d9b028fc62ee7229ba277ec802d08256", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/bad-pc3-cert.pem", + "type": "file", + "name": "bad-pc3-cert.pem", + "base_name": "bad-pc3-cert", + "extension": ".pem", + "size": 1245, + "date": "2017-05-25", + "sha1": "8d2404d88570d11397108cf1fdab1cc4497ea557", + "md5": "9901378c2c849b94c40cd69b26ced7a1", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/bad-pc3-key.pem", + "type": "file", + "name": "bad-pc3-key.pem", + "base_name": "bad-pc3-key", + "extension": ".pem", + "size": 1708, + "date": "2017-05-25", + "sha1": "8eac02d64be7d3fd004357d08a5f072e1253e63f", + "md5": "2e1ce2571a807ad1db644358bc231260", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/bad-pc4-cert.pem", + "type": "file", + "name": "bad-pc4-cert.pem", + "base_name": "bad-pc4-cert", + "extension": ".pem", + "size": 1269, + "date": "2017-05-25", + "sha1": "69a8002195e1dcc5225cece2e7300b2cb7d65fa7", + "md5": "4e47b1b3006bbf0337a4493e753b10fd", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/bad-pc4-key.pem", + "type": "file", + "name": "bad-pc4-key.pem", + "base_name": "bad-pc4-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "7c50cddfd7eb782143a721a60414107409649c56", + "md5": "77a3e6b5eba001c31bf423abc96047bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/bad-pc6-cert.pem", + "type": "file", + "name": "bad-pc6-cert.pem", + "base_name": "bad-pc6-cert", + "extension": ".pem", + "size": 1265, + "date": "2017-05-25", + "sha1": "c85c3e40900f76db6c69e1b7e72c3f316ba5ae2e", + "md5": "ec2dddd04af25a7c0348e3190f11dbca", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/bad-pc6-key.pem", + "type": "file", + "name": "bad-pc6-key.pem", + "base_name": "bad-pc6-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "4d139deff929f766bb366e595a421dc2fe5ade10", + "md5": "1ebb0c3ec04c813705c84eac89cff810", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/bad.key", + "type": "file", + "name": "bad.key", + "base_name": "bad", + "extension": ".key", + "size": 1675, + "date": "2017-05-25", + "sha1": "bf2c0f7b531e1df7896b32a2794f616c040772e3", + "md5": "20e1bc94e73a9d9a87e786082d0f2f8b", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/bad.pem", + "type": "file", + "name": "bad.pem", + "base_name": "bad", + "extension": ".pem", + "size": 1261, + "date": "2017-05-25", + "sha1": "1df488220fac0582685b9a7022f7a75897542aab", + "md5": "6919cfc779720990ab20df9041fd2309", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt1-cert.pem", + "type": "file", + "name": "badalt1-cert.pem", + "base_name": "badalt1-cert", + "extension": ".pem", + "size": 1204, + "date": "2017-05-25", + "sha1": "0a5feb3d37f3c2bcfdbcf4b933403e4aa01f6882", + "md5": "fdd7e5ed47468bd4d26ea09047aab75f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt1-key.pem", + "type": "file", + "name": "badalt1-key.pem", + "base_name": "badalt1-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "1d98e51a8298d4162721a0177a4577b541768781", + "md5": "9139a24aacb26938888734ef98db75b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt10-cert.pem", + "type": "file", + "name": "badalt10-cert.pem", + "base_name": "badalt10-cert", + "extension": ".pem", + "size": 1285, + "date": "2017-05-25", + "sha1": "2bac6025a7248c30fe23f4a73c27e4c2b833372a", + "md5": "abe52bd538ddad04ce1e7963411c32c6", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt10-key.pem", + "type": "file", + "name": "badalt10-key.pem", + "base_name": "badalt10-key", + "extension": ".pem", + "size": 1708, + "date": "2017-05-25", + "sha1": "338b424f50d06d9c40b8be71d0995cfabf702288", + "md5": "324ecca639f0a1dc16753ab2f3077476", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt2-cert.pem", + "type": "file", + "name": "badalt2-cert.pem", + "base_name": "badalt2-cert", + "extension": ".pem", + "size": 1200, + "date": "2017-05-25", + "sha1": "76eb0014c0e1895de20153aee0bb4ce9eec490c2", + "md5": "a9c2c38fc5818efcf4a9f06416865b7e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt2-key.pem", + "type": "file", + "name": "badalt2-key.pem", + "base_name": "badalt2-key", + "extension": ".pem", + "size": 1708, + "date": "2017-05-25", + "sha1": "147eeac73b571a2fd720b9f91d414a6ac4e91493", + "md5": "dddfbd0a211b1160a9d612fccf5b3c7d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt3-cert.pem", + "type": "file", + "name": "badalt3-cert.pem", + "base_name": "badalt3-cert", + "extension": ".pem", + "size": 1245, + "date": "2017-05-25", + "sha1": "88d462298a7f1096a447300a7bce6f43e8ba74ff", + "md5": "58f707334d93e86322ec9143aabce5d6", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt3-key.pem", + "type": "file", + "name": "badalt3-key.pem", + "base_name": "badalt3-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "c5b0ab139211aa5ea4fffc4187e69644290997d5", + "md5": "e9a011642b4be48337f9b8ffca226894", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt4-cert.pem", + "type": "file", + "name": "badalt4-cert.pem", + "base_name": "badalt4-cert", + "extension": ".pem", + "size": 1245, + "date": "2017-05-25", + "sha1": "b9e0c566fcb9e9be27db4f8fc25d39e55655f016", + "md5": "63356639acc84edae260362c358acbff", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt4-key.pem", + "type": "file", + "name": "badalt4-key.pem", + "base_name": "badalt4-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "776332d68d252f0224c423b2967193527eebcd8b", + "md5": "1dfb494aff064f10aef0e2d7c1b69190", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt5-cert.pem", + "type": "file", + "name": "badalt5-cert.pem", + "base_name": "badalt5-cert", + "extension": ".pem", + "size": 1212, + "date": "2017-05-25", + "sha1": "7d4dae88e4aa32a301566c999b50fe0f946f6cba", + "md5": "02aa602fd74720384fae6067b565578b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt5-key.pem", + "type": "file", + "name": "badalt5-key.pem", + "base_name": "badalt5-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "39724d96d76c2fa50ef2fee8851f5dbfbeb08b6c", + "md5": "61fd24537675c9340ff30249fad7ad15", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt6-cert.pem", + "type": "file", + "name": "badalt6-cert.pem", + "base_name": "badalt6-cert", + "extension": ".pem", + "size": 1306, + "date": "2017-05-25", + "sha1": "3716bea4d44f040f776f2e2104c31e15bb8b6368", + "md5": "533378a09bed3ddba99fed4ac9c5d8e8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt6-key.pem", + "type": "file", + "name": "badalt6-key.pem", + "base_name": "badalt6-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "97f2a7ae84b589b73d2b7417f832e1ec161b1b11", + "md5": "9528ac196c0b6bbdd7d758f93f51ffa6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt7-cert.pem", + "type": "file", + "name": "badalt7-cert.pem", + "base_name": "badalt7-cert", + "extension": ".pem", + "size": 1387, + "date": "2017-05-25", + "sha1": "7765ca78b628f70cfbb947e258c96cc28b5d45fc", + "md5": "c665b74cd74a6668ee0f786735e7ed71", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt7-key.pem", + "type": "file", + "name": "badalt7-key.pem", + "base_name": "badalt7-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "e5a75f6ecbc5fbcb2a94af22540fbb8392779085", + "md5": "45ed0aa76afb3187745cfefa66cb5ff9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt8-cert.pem", + "type": "file", + "name": "badalt8-cert.pem", + "base_name": "badalt8-cert", + "extension": ".pem", + "size": 1277, + "date": "2017-05-25", + "sha1": "c0b1360b22ef8dca80db3527028b00ae4d047853", + "md5": "0819ec5b3ad63ba0085921725fcc9dd7", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt8-key.pem", + "type": "file", + "name": "badalt8-key.pem", + "base_name": "badalt8-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "6b023beecfc87bd3f46283c1b237a24221b5ab38", + "md5": "95886869c2d93dfff31ace63e2f41de0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt9-cert.pem", + "type": "file", + "name": "badalt9-cert.pem", + "base_name": "badalt9-cert", + "extension": ".pem", + "size": 1277, + "date": "2017-05-25", + "sha1": "366d56a8725b8ad6c4447e3e8c735cc05357eabb", + "md5": "12f97f909565be4099bbabcc0cea4df5", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/badalt9-key.pem", + "type": "file", + "name": "badalt9-key.pem", + "base_name": "badalt9-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "54eafc30feabcb000d331b20fe178b075da8566f", + "md5": "87df8477a877221e6806def72709ae89", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca+anyEKU.pem", + "type": "file", + "name": "ca+anyEKU.pem", + "base_name": "ca+anyEKU", + "extension": ".pem", + "size": 1102, + "date": "2017-05-25", + "sha1": "5cd68450a9e7e9b38cf832d543f179ba42b7f8f0", + "md5": "b3627ac8ed2e9da2f16b0b3e39a9ef8a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca+clientAuth.pem", + "type": "file", + "name": "ca+clientAuth.pem", + "base_name": "ca+clientAuth", + "extension": ".pem", + "size": 1110, + "date": "2017-05-25", + "sha1": "c4cb9bb83efad77d8ef790a30e54e293a5ac9fa9", + "md5": "78d093e9178d1b514a6b4cb3300fd048", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca+serverAuth.pem", + "type": "file", + "name": "ca+serverAuth.pem", + "base_name": "ca+serverAuth", + "extension": ".pem", + "size": 1110, + "date": "2017-05-25", + "sha1": "00e974e3ff64de1aedaaa6f5dd08c1cfca287d35", + "md5": "ee1cebb12e1fe853874dcfdb3f1ffef2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-anyEKU.pem", + "type": "file", + "name": "ca-anyEKU.pem", + "base_name": "ca-anyEKU", + "extension": ".pem", + "size": 1102, + "date": "2017-05-25", + "sha1": "87c132f20643c6617949ace9d17f3ddd7b103bde", + "md5": "a2e6ae375b533179e30948dfe41a8c8c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-cert-768.pem", + "type": "file", + "name": "ca-cert-768.pem", + "base_name": "ca-cert-768", + "extension": ".pem", + "size": 847, + "date": "2017-05-25", + "sha1": "1dd0dc5cb6a980a26cc2276d107a3a03ddc70c42", + "md5": "b5a13bac383d3a09ab74fc5aa3d0d85b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-cert-768i.pem", + "type": "file", + "name": "ca-cert-768i.pem", + "base_name": "ca-cert-768i", + "extension": ".pem", + "size": 855, + "date": "2017-05-25", + "sha1": "1bebc6142c6f80fedf769a6fad086e0fc63f8d83", + "md5": "51442eea395f19ce8de37769bce74336", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-cert-md5-any.pem", + "type": "file", + "name": "ca-cert-md5-any.pem", + "base_name": "ca-cert-md5-any", + "extension": ".pem", + "size": 1102, + "date": "2017-05-25", + "sha1": "0b0046dad48d311bbd03db9e5149544d86b88ddf", + "md5": "517e31eaaad4ae874b390ee63c81383a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-cert-md5.pem", + "type": "file", + "name": "ca-cert-md5.pem", + "base_name": "ca-cert-md5", + "extension": ".pem", + "size": 1074, + "date": "2017-05-25", + "sha1": "e2e8dbda33d1f69f42ae9ac837e5306dbfad51c6", + "md5": "0ab118a67c01c2adae98ab8fe3e4d59b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-cert.pem", + "type": "file", + "name": "ca-cert.pem", + "base_name": "ca-cert", + "extension": ".pem", + "size": 1074, + "date": "2017-05-25", + "sha1": "4d2d964a15d95c832ab436e87925b9c0081453d1", + "md5": "ab9100ed0455fabfd9448d3128d7c568", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-cert2.pem", + "type": "file", + "name": "ca-cert2.pem", + "base_name": "ca-cert2", + "extension": ".pem", + "size": 1074, + "date": "2017-05-25", + "sha1": "dd7ebe794f7c32d304beef9952a357086a74ceec", + "md5": "88c40616fa73dc811e354f247ebd9c07", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-clientAuth.pem", + "type": "file", + "name": "ca-clientAuth.pem", + "base_name": "ca-clientAuth", + "extension": ".pem", + "size": 1110, + "date": "2017-05-25", + "sha1": "eed37027d493f2d26da1a3f532daa2a4da864843", + "md5": "5514924e9edfa65d1fcada270387b40c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-expired.pem", + "type": "file", + "name": "ca-expired.pem", + "base_name": "ca-expired", + "extension": ".pem", + "size": 1070, + "date": "2017-05-25", + "sha1": "5eb73a8c5b34bb63e46451800c4761f19fe248ac", + "md5": "afdf55172ee2d4fcee67727024553f26", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-key-768.pem", + "type": "file", + "name": "ca-key-768.pem", + "base_name": "ca-key-768", + "extension": ".pem", + "size": 717, + "date": "2017-05-25", + "sha1": "126b890a0e86bb16b026fa1dac1fc267e9398139", + "md5": "0136de034a8484fc0afcfed7d06b6c51", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-key.pem", + "type": "file", + "name": "ca-key.pem", + "base_name": "ca-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "f6d01304ce6f7793f92704272a42aed92f2d6cfc", + "md5": "60b8acd7f611384e544085dc8f9b0252", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-key2.pem", + "type": "file", + "name": "ca-key2.pem", + "base_name": "ca-key2", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "1ff9add518b08b078244d57c08d20454a791d291", + "md5": "3d5817eacb8a41ecd5bb50beb9fba144", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-name2.pem", + "type": "file", + "name": "ca-name2.pem", + "base_name": "ca-name2", + "extension": ".pem", + "size": 1074, + "date": "2017-05-25", + "sha1": "063b6cfec5fe1b7e4e0f2f9a1fa3ce6e84061ec6", + "md5": "51ca82f0201f538ef4bf31f8176aca58", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-nonbc.pem", + "type": "file", + "name": "ca-nonbc.pem", + "base_name": "ca-nonbc", + "extension": ".pem", + "size": 1074, + "date": "2017-05-25", + "sha1": "77db879c548ed8eb8c05db62534f393b635ad6c1", + "md5": "1f3e10cb8cff3013779a8351e5fa1d49", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-nonca.pem", + "type": "file", + "name": "ca-nonca.pem", + "base_name": "ca-nonca", + "extension": ".pem", + "size": 1119, + "date": "2017-05-25", + "sha1": "b93bdc35caa07bbc6d2dc597a4314d65bd465c56", + "md5": "8e7ef70d9140b034f5f080296ef6d26a", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-root2.pem", + "type": "file", + "name": "ca-root2.pem", + "base_name": "ca-root2", + "extension": ".pem", + "size": 1074, + "date": "2017-05-25", + "sha1": "82bfd4dccc356bef0bc9607048d7027d0d7a7325", + "md5": "cc9b0bc1bfb03e4338e63b997d058c47", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ca-serverAuth.pem", + "type": "file", + "name": "ca-serverAuth.pem", + "base_name": "ca-serverAuth", + "extension": ".pem", + "size": 1110, + "date": "2017-05-25", + "sha1": "80bdf6ac7cc684ea9dc5039c1f5a3d113cdd7b2b", + "md5": "76633902bd4798daed583a8f5a47814c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/cca+anyEKU.pem", + "type": "file", + "name": "cca+anyEKU.pem", + "base_name": "cca+anyEKU", + "extension": ".pem", + "size": 1131, + "date": "2017-05-25", + "sha1": "c99f7d279ce191b853352487a449aee9d45ce0b5", + "md5": "4209b08ca7b15cff6dc39284f5e1a724", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/cca+clientAuth.pem", + "type": "file", + "name": "cca+clientAuth.pem", + "base_name": "cca+clientAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "86199e370e9dd036033e3560f8d6d54428a3e01d", + "md5": "079be4fa8a269da39f26f01e330a8c95", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/cca+serverAuth.pem", + "type": "file", + "name": "cca+serverAuth.pem", + "base_name": "cca+serverAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "ab7792bcda8a216af642d3a5dd0cb2e5e0cad642", + "md5": "12dcd2f71a92ff361b57eee5d627400d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/cca-anyEKU.pem", + "type": "file", + "name": "cca-anyEKU.pem", + "base_name": "cca-anyEKU", + "extension": ".pem", + "size": 1131, + "date": "2017-05-25", + "sha1": "9a2f86393d7eeace31548b5dee1bcb864f851bb7", + "md5": "4a8ee2a8630e95c1a7d4c4bfdbd7378b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/cca-cert.pem", + "type": "file", + "name": "cca-cert.pem", + "base_name": "cca-cert", + "extension": ".pem", + "size": 1103, + "date": "2017-05-25", + "sha1": "a5f5687cb40dbff1d052c7c7f4f3a3a703602355", + "md5": "b91fa100f0327d61e8893ec7d7a35b8c", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/cca-clientAuth.pem", + "type": "file", + "name": "cca-clientAuth.pem", + "base_name": "cca-clientAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "86199e370e9dd036033e3560f8d6d54428a3e01d", + "md5": "079be4fa8a269da39f26f01e330a8c95", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/cca-serverAuth.pem", + "type": "file", + "name": "cca-serverAuth.pem", + "base_name": "cca-serverAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "aedd60279576f6f9767939e660d9f87a984d25d8", + "md5": "69f0cd58e6e47a23162b60e58b08c383", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/croot+anyEKU.pem", + "type": "file", + "name": "croot+anyEKU.pem", + "base_name": "croot+anyEKU", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "5f1c1800b89427286e91657d3a3e681349ab2811", + "md5": "17f1c21abde4b9f9309b615db8ad63ee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/croot+clientAuth.pem", + "type": "file", + "name": "croot+clientAuth.pem", + "base_name": "croot+clientAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "66e4a8e8846ff7a8c088965f457e903be7c59ea6", + "md5": "f90af645c14b6e016e1d577e54b08862", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/croot+serverAuth.pem", + "type": "file", + "name": "croot+serverAuth.pem", + "base_name": "croot+serverAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "19fd40090111cfc47aca6a5a6b797f533df5ec86", + "md5": "f700e70f822dc4ed57e3ec255ddf8574", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/croot-anyEKU.pem", + "type": "file", + "name": "croot-anyEKU.pem", + "base_name": "croot-anyEKU", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "10ddaf03ac7a8030a2b2d554641f36bc4ae28ec1", + "md5": "ecb622e210cd5ed34bc6c613be9ccbae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/croot-cert.pem", + "type": "file", + "name": "croot-cert.pem", + "base_name": "croot-cert", + "extension": ".pem", + "size": 1111, + "date": "2017-05-25", + "sha1": "69795a21e68491fbe0b732d3b63c9b8b81ab7ece", + "md5": "1271db40db5e5e360025a37ee279f4a8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/croot-clientAuth.pem", + "type": "file", + "name": "croot-clientAuth.pem", + "base_name": "croot-clientAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "f323184872d406d9c00a78cb7d2ed1e18121886e", + "md5": "6f0bed74d9efa7f7a407e1ba780a4bf3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/croot-serverAuth.pem", + "type": "file", + "name": "croot-serverAuth.pem", + "base_name": "croot-serverAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "930cbe4432847a38d9938d6f44b9cfbe8220d9aa", + "md5": "8c36b1f1efb66b3b0bbc6c203ac90b63", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee+clientAuth.pem", + "type": "file", + "name": "ee+clientAuth.pem", + "base_name": "ee+clientAuth", + "extension": ".pem", + "size": 1180, + "date": "2017-05-25", + "sha1": "3740d73ff1d8b47c6f68663868263057638b31da", + "md5": "237bb9c991fd7f260c4d7b1f2047b5a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee+serverAuth.pem", + "type": "file", + "name": "ee+serverAuth.pem", + "base_name": "ee+serverAuth", + "extension": ".pem", + "size": 1180, + "date": "2017-05-25", + "sha1": "f8f4c16fd8f7a18a5fd4fca33942ab8850cd97b2", + "md5": "d3304a32056e4089a59987179eae53cb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-cert-768.pem", + "type": "file", + "name": "ee-cert-768.pem", + "base_name": "ee-cert-768", + "extension": ".pem", + "size": 916, + "date": "2017-05-25", + "sha1": "22044b3f4ed68f272b74365715c50268955dcbf5", + "md5": "01a6af00a3fe6cfcb754c06ea279ba42", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-cert-768i.pem", + "type": "file", + "name": "ee-cert-768i.pem", + "base_name": "ee-cert-768i", + "extension": ".pem", + "size": 924, + "date": "2017-05-25", + "sha1": "d8d6a543626689a4299169b8d1e345d70579094b", + "md5": "8990584ad109eb8b2691387a8901a7cc", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-cert-md5.pem", + "type": "file", + "name": "ee-cert-md5.pem", + "base_name": "ee-cert-md5", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "899f6cd67b0ad7ff4bc40f9d695d4cee128e6823", + "md5": "e886135943022d315f42260328bd8498", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-cert.pem", + "type": "file", + "name": "ee-cert.pem", + "base_name": "ee-cert", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "ed2a0fcc18aa6d0d5dc4d139327532c8f89fa840", + "md5": "efcc5f61bdfb95dc2740d875f944d975", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-cert2.pem", + "type": "file", + "name": "ee-cert2.pem", + "base_name": "ee-cert2", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "2d9dc974d77bc071c53a2edfdbb394dbd948193e", + "md5": "a25e7f1c02587d42535b16ff8bf0c09f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-client-chain.pem", + "type": "file", + "name": "ee-client-chain.pem", + "base_name": "ee-client-chain", + "extension": ".pem", + "size": 2217, + "date": "2017-05-25", + "sha1": "6e929b7846626d33f6991fce5b62367fa0b46f67", + "md5": "ac8965ffdf8599f2cd631ce40b3d5deb", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-client.pem", + "type": "file", + "name": "ee-client.pem", + "base_name": "ee-client", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "a4d75010bc9338682486856fdba16cd1e3a75281", + "md5": "7ff7cdeebfee7f712f01f1a0f8712dcf", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-clientAuth.pem", + "type": "file", + "name": "ee-clientAuth.pem", + "base_name": "ee-clientAuth", + "extension": ".pem", + "size": 1180, + "date": "2017-05-25", + "sha1": "50dfa71dc430f1176520c23b726b352129fea45c", + "md5": "bd5e2e6c0c55f6ad7c4582e6531c674a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-expired.pem", + "type": "file", + "name": "ee-expired.pem", + "base_name": "ee-expired", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "4b3b5d3d0a7126cebf2b1136e9433002a764a2c5", + "md5": "7b89b7a88eaa2899d569e157c875a8a4", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-key-768.pem", + "type": "file", + "name": "ee-key-768.pem", + "base_name": "ee-key-768", + "extension": ".pem", + "size": 717, + "date": "2017-05-25", + "sha1": "3e07c2290034dc9097462ffbf4b64ed942d99f20", + "md5": "167bfafeb8c0dabb012e3fa7f37eef31", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-key.pem", + "type": "file", + "name": "ee-key.pem", + "base_name": "ee-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "dde8053f2d9baaa5a2534e6bdc10711da82addca", + "md5": "33b966d58c9fb846e1bbbe792400c7bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-name2.pem", + "type": "file", + "name": "ee-name2.pem", + "base_name": "ee-name2", + "extension": ".pem", + "size": 1147, + "date": "2017-05-25", + "sha1": "fb334d2eae2971b2a7b0def89683049e5df90a26", + "md5": "83af9957115b602e3a0373d2b17dbb57", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ee-serverAuth.pem", + "type": "file", + "name": "ee-serverAuth.pem", + "base_name": "ee-serverAuth", + "extension": ".pem", + "size": 1180, + "date": "2017-05-25", + "sha1": "49d0b501490f9a3cf15066ec20516abeb5601e8e", + "md5": "240e5b7b8b6f21171db047723491aadc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/embeddedSCTs1-key.pem", + "type": "file", + "name": "embeddedSCTs1-key.pem", + "base_name": "embeddedSCTs1-key", + "extension": ".pem", + "size": 887, + "date": "2017-05-25", + "sha1": "780a84223b18f40da02a640a184ec23f58fcfd6d", + "md5": "ba6515e0532ce115989c1e0518b38200", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/embeddedSCTs1.pem", + "type": "file", + "name": "embeddedSCTs1.pem", + "base_name": "embeddedSCTs1", + "extension": ".pem", + "size": 1220, + "date": "2017-05-25", + "sha1": "43141d9e4215ae536fd14dc0b1882d3223f63903", + "md5": "7908ee827c4f3ecc58d7173b303b5807", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/embeddedSCTs1.sct", + "type": "file", + "name": "embeddedSCTs1.sct", + "base_name": "embeddedSCTs1", + "extension": ".sct", + "size": 580, + "date": "2017-05-25", + "sha1": "78241f8c33e1c6c29bde2f32b9407c84d29c5b18", + "md5": "df963a06ab60360b8abf95de3e137f15", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 4, + "end_line": 7 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/embeddedSCTs1_issuer.pem", + "type": "file", + "name": "embeddedSCTs1_issuer.pem", + "base_name": "embeddedSCTs1_issuer", + "extension": ".pem", + "size": 1038, + "date": "2017-05-25", + "sha1": "253f5baec5497146de307e28a652c33d0a1b2a4d", + "md5": "36e5462bfa22ada28ecb27f8dd305e71", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/embeddedSCTs3.pem", + "type": "file", + "name": "embeddedSCTs3.pem", + "base_name": "embeddedSCTs3", + "extension": ".pem", + "size": 2748, + "date": "2017-05-25", + "sha1": "c641357dbde001025507c95728c31327de6e10c1", + "md5": "dbc57b975ae584dbe36a7ed4ebf8de49", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/embeddedSCTs3.sct", + "type": "file", + "name": "embeddedSCTs3.sct", + "base_name": "embeddedSCTs3", + "extension": ".sct", + "size": 1739, + "date": "2017-05-25", + "sha1": "f8d2f54dd6a1340919ffbf26744d2dd5c3b06b59", + "md5": "0c698f14c6e131215ea61fcca104d52a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 4, + "end_line": 7 + }, + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 16, + "end_line": 19 + }, + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 28, + "end_line": 31 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/embeddedSCTs3_issuer.pem", + "type": "file", + "name": "embeddedSCTs3_issuer.pem", + "base_name": "embeddedSCTs3_issuer", + "extension": ".pem", + "size": 2159, + "date": "2017-05-25", + "sha1": "c1e7f33df6a1db0c7c3df44b75b3074f31e5d62c", + "md5": "c08b7de61dca895158bf3a416055e4b3", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/interCA.key", + "type": "file", + "name": "interCA.key", + "base_name": "interCA", + "extension": ".key", + "size": 1675, + "date": "2017-05-25", + "sha1": "df0429e2b88b357bd81efe6a5a0240477ff320cd", + "md5": "ce53b09318de337b067bd07f718af4cb", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/interCA.pem", + "type": "file", + "name": "interCA.pem", + "base_name": "interCA", + "extension": ".pem", + "size": 1273, + "date": "2017-05-25", + "sha1": "282b2c7a1e13e283aa6b5d9869db5f5fc1657ab4", + "md5": "4a0a727959598ba5dd61adbb0f514fa1", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/leaf.key", + "type": "file", + "name": "leaf.key", + "base_name": "leaf", + "extension": ".key", + "size": 1679, + "date": "2017-05-25", + "sha1": "0503f3377d72dbf55d1123a91628e9b2c9472612", + "md5": "409403bd9f4ba18a707792a2e81be0ad", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/leaf.pem", + "type": "file", + "name": "leaf.pem", + "base_name": "leaf", + "extension": ".pem", + "size": 1273, + "date": "2017-05-25", + "sha1": "c84448237b7be0ad533e7e19b9c18d2f56b03cc0", + "md5": "0a2b3aca09b7e0dc76bf77e2a8f64cb0", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/mkcert.sh", + "type": "file", + "name": "mkcert.sh", + "base_name": "mkcert", + "extension": ".sh", + "size": 6934, + "date": "2017-05-25", + "sha1": "4c3a321ea081d268334e74eb3dcefb08f5c2228e", + "md5": "10240539feeb9884547970773be66f8c", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl-ssleay", + "score": 10.0, + "short_name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "text_url": "http://www.openssl.org/source/license.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl-ssleay", + "spdx_license_key": "OpenSSL", + "spdx_url": "https://spdx.org/licenses/OpenSSL", + "start_line": 6, + "end_line": 6, + "matched_rule": { + "identifier": "openssl-ssleay_2.RULE", + "license_choice": false, + "licenses": [ + "openssl-ssleay" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016 Viktor Dukhovni " + ], + "holders": [ + "Viktor Dukhovni" + ], + "authors": [], + "start_line": 3, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/nca+anyEKU.pem", + "type": "file", + "name": "nca+anyEKU.pem", + "base_name": "nca+anyEKU", + "extension": ".pem", + "size": 1155, + "date": "2017-05-25", + "sha1": "b0a793f6e8e4818aa5bdc55caa8b6e9c45e2d120", + "md5": "780e401a62e4d3060ee32e675c00fba0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/nca+serverAuth.pem", + "type": "file", + "name": "nca+serverAuth.pem", + "base_name": "nca+serverAuth", + "extension": ".pem", + "size": 1155, + "date": "2017-05-25", + "sha1": "b0a793f6e8e4818aa5bdc55caa8b6e9c45e2d120", + "md5": "780e401a62e4d3060ee32e675c00fba0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ncca-cert.pem", + "type": "file", + "name": "ncca-cert.pem", + "base_name": "ncca-cert", + "extension": ".pem", + "size": 1265, + "date": "2017-05-25", + "sha1": "ed84f55f0505f202ea58ab18f274a1ead59a315c", + "md5": "a34616f3ab116d45e8fe95a9205ceff7", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ncca-key.pem", + "type": "file", + "name": "ncca-key.pem", + "base_name": "ncca-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "b089fe6b18ba4e4e380376352838853f76603f54", + "md5": "f7b841e9bd1a25efc25a5d7d56d6b06b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ncca1-cert.pem", + "type": "file", + "name": "ncca1-cert.pem", + "base_name": "ncca1-cert", + "extension": ".pem", + "size": 1220, + "date": "2017-05-25", + "sha1": "dd2e01da91c5fe141cb1a29ee9e44cb7a4678823", + "md5": "8aa336740ba52816d03b99b8eb5aaa56", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ncca1-key.pem", + "type": "file", + "name": "ncca1-key.pem", + "base_name": "ncca1-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "f80d505fc30fec7b9d80960565277dc76c1241e7", + "md5": "b8b1c2e1c47b098bbed1ecb4871e7e36", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ncca2-cert.pem", + "type": "file", + "name": "ncca2-cert.pem", + "base_name": "ncca2-cert", + "extension": ".pem", + "size": 1200, + "date": "2017-05-25", + "sha1": "8c550781bef0cfdb51118f4c31182d484499a80e", + "md5": "50f7b62fbc84dc076ac3ec709dc82d23", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ncca2-key.pem", + "type": "file", + "name": "ncca2-key.pem", + "base_name": "ncca2-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "5cf9a1a2c0d15e07e2bc2e2611bce554bcf55541", + "md5": "4b3123100a6b604a02633ed17cebed10", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ncca3-cert.pem", + "type": "file", + "name": "ncca3-cert.pem", + "base_name": "ncca3-cert", + "extension": ".pem", + "size": 1192, + "date": "2017-05-25", + "sha1": "8702767d825d28db60435cf74c35e9788e3bf974", + "md5": "185dd9733ec2db181bef0de1c05843a1", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/ncca3-key.pem", + "type": "file", + "name": "ncca3-key.pem", + "base_name": "ncca3-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "6463838d1b388bba9953572b715bbc61ad17a402", + "md5": "1117e2b055c470110391fa3e20a77d30", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/nroot+anyEKU.pem", + "type": "file", + "name": "nroot+anyEKU.pem", + "base_name": "nroot+anyEKU", + "extension": ".pem", + "size": 1163, + "date": "2017-05-25", + "sha1": "f9ec6d9481d90a20a2edb8caecbef128b95b7b44", + "md5": "819eeeb24d2c2bb3441e921ab9ac2738", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/nroot+serverAuth.pem", + "type": "file", + "name": "nroot+serverAuth.pem", + "base_name": "nroot+serverAuth", + "extension": ".pem", + "size": 1167, + "date": "2017-05-25", + "sha1": "374f231acec2422710cda3ad9b678019ac1b5d0b", + "md5": "7459494e6c74cb3751d9eff9308f6d04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/pathlen.pem", + "type": "file", + "name": "pathlen.pem", + "base_name": "pathlen", + "extension": ".pem", + "size": 1294, + "date": "2017-05-25", + "sha1": "e5e3a038c11d47cdb75a6744b3012b816c9feb8f", + "md5": "d4dd9e3a7470d36ff5038c59910dceae", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/pc1-cert.pem", + "type": "file", + "name": "pc1-cert.pem", + "base_name": "pc1-cert", + "extension": ".pem", + "size": 1204, + "date": "2017-05-25", + "sha1": "4884b78f498b86d22782bb2e205424be9a8a2d0b", + "md5": "90541a546205b9556b15b4052210655d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/pc1-key.pem", + "type": "file", + "name": "pc1-key.pem", + "base_name": "pc1-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "0d92fc08edcc497cda1c6c2f1aac0192c3100bcd", + "md5": "556214e762ff0acd89855eb6ed342fa5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/pc2-cert.pem", + "type": "file", + "name": "pc2-cert.pem", + "base_name": "pc2-cert", + "extension": ".pem", + "size": 1269, + "date": "2017-05-25", + "sha1": "891d80a018e098d58bb63d85248bad31865bf979", + "md5": "7974ebeadd6b1ce3a78bd80b3b3932ab", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/pc2-key.pem", + "type": "file", + "name": "pc2-key.pem", + "base_name": "pc2-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "16979a895e9657aa188f8ccd88b18d4d0cbba282", + "md5": "50296d3f712cf80d6b88365c52967232", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/pc5-cert.pem", + "type": "file", + "name": "pc5-cert.pem", + "base_name": "pc5-cert", + "extension": ".pem", + "size": 1265, + "date": "2017-05-25", + "sha1": "b9e874291caf949e51fe53ccb6cbbbad05ae2a43", + "md5": "b7849bec0e35c9077edef90abd360586", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/pc5-key.pem", + "type": "file", + "name": "pc5-key.pem", + "base_name": "pc5-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "e04d059fb82efd969cd99f6a8f0042f09b883510", + "md5": "1d609537d05d447d8e79185b7bc880e7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root+anyEKU.pem", + "type": "file", + "name": "root+anyEKU.pem", + "base_name": "root+anyEKU", + "extension": ".pem", + "size": 1110, + "date": "2017-05-25", + "sha1": "3a35f9e0835aa54119e80f46f8708d92fe963f7b", + "md5": "af4d6cb8d79ee7d01dfce9bfe8afc07d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root+clientAuth.pem", + "type": "file", + "name": "root+clientAuth.pem", + "base_name": "root+clientAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-05-25", + "sha1": "4f2ee859cc2f9844feb9b2f0d2f2935951f63496", + "md5": "efaa8f2601686e985cdcd34ffe9e4bbd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root+serverAuth.pem", + "type": "file", + "name": "root+serverAuth.pem", + "base_name": "root+serverAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-05-25", + "sha1": "6903bbd1d92d2daf8b25151c13dc46db4e38c544", + "md5": "b31399f01ff388014d580de6c04f71a9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-anyEKU.pem", + "type": "file", + "name": "root-anyEKU.pem", + "base_name": "root-anyEKU", + "extension": ".pem", + "size": 1110, + "date": "2017-05-25", + "sha1": "4d233e6ef1cab7d6d8c917c6e678913f2449c2d3", + "md5": "5378312c906665ed5a1f1f730f031c9e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-cert-768.pem", + "type": "file", + "name": "root-cert-768.pem", + "base_name": "root-cert-768", + "extension": ".pem", + "size": 635, + "date": "2017-05-25", + "sha1": "a5b5fb8b5692703abbcf392ed0b532fb5b98391d", + "md5": "09e69e1e591530f8abff446282ce659e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-cert-md5.pem", + "type": "file", + "name": "root-cert-md5.pem", + "base_name": "root-cert-md5", + "extension": ".pem", + "size": 1082, + "date": "2017-05-25", + "sha1": "29a1c88967d892d5016e151aeab17deb21cc2090", + "md5": "fb704dad6db7f9af52da360397e4728d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-cert.pem", + "type": "file", + "name": "root-cert.pem", + "base_name": "root-cert", + "extension": ".pem", + "size": 1082, + "date": "2017-05-25", + "sha1": "3ce6df52ab9e42657d8b8b181cc046dfd6f20b4e", + "md5": "4e256e3b22d3d72b970679d4e9a5247e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-cert2.pem", + "type": "file", + "name": "root-cert2.pem", + "base_name": "root-cert2", + "extension": ".pem", + "size": 1082, + "date": "2017-05-25", + "sha1": "6c5ea25b474ede5a7b6693f80dfe8e2d86e9fca3", + "md5": "284a06750d3d9cfccd1c6cba85ee44a9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-clientAuth.pem", + "type": "file", + "name": "root-clientAuth.pem", + "base_name": "root-clientAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-05-25", + "sha1": "0b2dc70389e06cc3bc37840957bf89274a491527", + "md5": "72700b0a5c41c4fbcd3b7e093e919b66", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-key-768.pem", + "type": "file", + "name": "root-key-768.pem", + "base_name": "root-key-768", + "extension": ".pem", + "size": 717, + "date": "2017-05-25", + "sha1": "be4a795b5c89c926d355cad134e32088263d6540", + "md5": "aa2f854b9080facae0a698ae1379531a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-key.pem", + "type": "file", + "name": "root-key.pem", + "base_name": "root-key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "789d397ba8cb72ef2f6559fcc3cbe4c6307d785a", + "md5": "196f424fe77707349603663535c9b374", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-key2.pem", + "type": "file", + "name": "root-key2.pem", + "base_name": "root-key2", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "28f3143500b756fcb0178ae224834f07c2baeab0", + "md5": "a3248735ac9c806ab07024471fa93e4f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-name2.pem", + "type": "file", + "name": "root-name2.pem", + "base_name": "root-name2", + "extension": ".pem", + "size": 1090, + "date": "2017-05-25", + "sha1": "796d5bc44200e6b0398677633082a51905b42281", + "md5": "e6939c7a78716f14ff24591f133074bc", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-nonca.pem", + "type": "file", + "name": "root-nonca.pem", + "base_name": "root-nonca", + "extension": ".pem", + "size": 1131, + "date": "2017-05-25", + "sha1": "bb3ee1c9da63f89d6f8aa91366599c92babef08e", + "md5": "a4da4ddc62e1b133799bc952cd791a8e", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-noserver.pem", + "type": "file", + "name": "root-noserver.pem", + "base_name": "root-noserver", + "extension": ".pem", + "size": 1115, + "date": "2017-05-25", + "sha1": "2f6078e5700a354275d7efc12c8c4aab55e22c55", + "md5": "1b92c31c216c99b192809c69c3c38b40", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root-serverAuth.pem", + "type": "file", + "name": "root-serverAuth.pem", + "base_name": "root-serverAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-05-25", + "sha1": "df2a08205c2faea012d35cbd61f29d2a8d1e43a9", + "md5": "3862c4bf0e4c11268227708ed7753937", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root2+clientAuth.pem", + "type": "file", + "name": "root2+clientAuth.pem", + "base_name": "root2+clientAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-05-25", + "sha1": "929f897ecd9d1ff022eeae84ca3b2c372a06d9df", + "md5": "1c922ddeef7c95de97d7377f16d643d5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root2+serverAuth.pem", + "type": "file", + "name": "root2+serverAuth.pem", + "base_name": "root2+serverAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-05-25", + "sha1": "a82b40b9a5a9084ddf46ff3c93ef6d9457ef0fc3", + "md5": "2b7382213dfa1d11f7abae7992fe3e93", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/root2-serverAuth.pem", + "type": "file", + "name": "root2-serverAuth.pem", + "base_name": "root2-serverAuth", + "extension": ".pem", + "size": 1115, + "date": "2017-05-25", + "sha1": "3d8625527e94fcdd6417daccf41e28b7c5a43fba", + "md5": "49dc8ae5ac4e11ea9fa6f6e9ccf4f46a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/rootCA.key", + "type": "file", + "name": "rootCA.key", + "base_name": "rootCA", + "extension": ".key", + "size": 1679, + "date": "2017-05-25", + "sha1": "ef86f75278e81b8236744166d0aca1266563a3ff", + "md5": "6b4bbde6a624a2090c0f0d21e7897251", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/rootCA.pem", + "type": "file", + "name": "rootCA.pem", + "base_name": "rootCA", + "extension": ".pem", + "size": 1273, + "date": "2017-05-25", + "sha1": "a444da49deafb5fc5367b4fbe0a41729ccc910a8", + "md5": "7016badc654eb29f4e870c423c9c2da8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/rootcert.pem", + "type": "file", + "name": "rootcert.pem", + "base_name": "rootcert", + "extension": ".pem", + "size": 1082, + "date": "2017-05-25", + "sha1": "d8e86ebab29cc11c73f4e32d654883545b6a427c", + "md5": "90d0992fe812ac82742c753532522b54", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/rootkey.pem", + "type": "file", + "name": "rootkey.pem", + "base_name": "rootkey", + "extension": ".pem", + "size": 1708, + "date": "2017-05-25", + "sha1": "4dba78b51069f0b9c26a5b8065f54bffc8ecba17", + "md5": "ba3d5907d5be4ff786333d35dc39970a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/roots.pem", + "type": "file", + "name": "roots.pem", + "base_name": "roots", + "extension": ".pem", + "size": 2558, + "date": "2017-05-25", + "sha1": "572bebf2b2beedb4d260200bc70066f4b25cb5b1", + "md5": "e71212dfb578ed4e58b57481f4be4064", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sca+anyEKU.pem", + "type": "file", + "name": "sca+anyEKU.pem", + "base_name": "sca+anyEKU", + "extension": ".pem", + "size": 1131, + "date": "2017-05-25", + "sha1": "be6747e97116fd17e98881cc73837da0481f7144", + "md5": "89e845be2f7f10b08155ce18d816921f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sca+clientAuth.pem", + "type": "file", + "name": "sca+clientAuth.pem", + "base_name": "sca+clientAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "82ee15149155bc48191658e8f5d1238da7f1fd2d", + "md5": "9e7799a2427e8744ea64919ddc5e899e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sca+serverAuth.pem", + "type": "file", + "name": "sca+serverAuth.pem", + "base_name": "sca+serverAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "35ade7c1f27a30fbc12f2d0c2314fedb9e1125a1", + "md5": "cdb2c0c23b8ec0c8c2c8b041f8a0e931", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sca-anyEKU.pem", + "type": "file", + "name": "sca-anyEKU.pem", + "base_name": "sca-anyEKU", + "extension": ".pem", + "size": 1131, + "date": "2017-05-25", + "sha1": "2d888dce969eb9c0dc1004d0258f705a27ea54c5", + "md5": "f5c73cc2098ed809c5b813401bfdd082", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sca-cert.pem", + "type": "file", + "name": "sca-cert.pem", + "base_name": "sca-cert", + "extension": ".pem", + "size": 1103, + "date": "2017-05-25", + "sha1": "4c7b88926de021b449091cafe65bd174252ceade", + "md5": "be12a3060dceee6b42618925f457d22b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sca-clientAuth.pem", + "type": "file", + "name": "sca-clientAuth.pem", + "base_name": "sca-clientAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "3f6e14d6eded4de39bf2157b524dd8adc053b7f6", + "md5": "7d169dc384f17252d75a04bba6157bb7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sca-serverAuth.pem", + "type": "file", + "name": "sca-serverAuth.pem", + "base_name": "sca-serverAuth", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "ea5c1e3ed19bd91c4b6503ebbca44fe544f535ca", + "md5": "973d68ee44bd656ea8119606707c1d02", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/server-trusted.pem", + "type": "file", + "name": "server-trusted.pem", + "base_name": "server-trusted", + "extension": ".pem", + "size": 1188, + "date": "2017-05-25", + "sha1": "68e336d9ed3dfcd1cf3884cd7a6eff05fbc2f6fa", + "md5": "8c4c88b3fc7acfd83f9363c4e810b500", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/servercert.pem", + "type": "file", + "name": "servercert.pem", + "base_name": "servercert", + "extension": ".pem", + "size": 1151, + "date": "2017-05-25", + "sha1": "fbe2d71732a2cc231ba7ff5e673521dcd7522213", + "md5": "7a212cb88421ef95568acebdf6568292", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/serverkey.pem", + "type": "file", + "name": "serverkey.pem", + "base_name": "serverkey", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "3f5e0ab72378127fef49736d3215c316bda38b67", + "md5": "6c38a6fb4413cd371379abbe06328663", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/setup.sh", + "type": "file", + "name": "setup.sh", + "base_name": "setup", + "extension": ".sh", + "size": 15142, + "date": "2017-05-25", + "sha1": "79a2353c36c35a2ae56a77c0135b19d11f753408", + "md5": "4b8cc6a5d5e3d18b75a893a61cc8d877", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sroot+anyEKU.pem", + "type": "file", + "name": "sroot+anyEKU.pem", + "base_name": "sroot+anyEKU", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "7a3a35ea9eb57e7e61284b3d6721642684fc57b4", + "md5": "1b86519b33fc9ec637b813732e963d7c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sroot+clientAuth.pem", + "type": "file", + "name": "sroot+clientAuth.pem", + "base_name": "sroot+clientAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "11dba485b381871cc91659b9ed3b857c18da8d36", + "md5": "ea0ef56b6caf8343cd64f1b2c042c2b8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sroot+serverAuth.pem", + "type": "file", + "name": "sroot+serverAuth.pem", + "base_name": "sroot+serverAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "04d2f0a5a6ce43b5edfc39d85ba1501bb961c993", + "md5": "cb53322f4789a777720ce33579f8a606", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sroot-anyEKU.pem", + "type": "file", + "name": "sroot-anyEKU.pem", + "base_name": "sroot-anyEKU", + "extension": ".pem", + "size": 1139, + "date": "2017-05-25", + "sha1": "55572d64e9a1f2907d1d081cd4fc7b6593284a82", + "md5": "dc962785869121be174a356f01008a8d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sroot-cert.pem", + "type": "file", + "name": "sroot-cert.pem", + "base_name": "sroot-cert", + "extension": ".pem", + "size": 1111, + "date": "2017-05-25", + "sha1": "4ef3ca4b50763445d63f80d6756942a2e84f90b1", + "md5": "3139c5bb883fb5f987aadba52a26191b", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sroot-clientAuth.pem", + "type": "file", + "name": "sroot-clientAuth.pem", + "base_name": "sroot-clientAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "76fe13a3e2142f361d670d33fe50c7ddbf0d138c", + "md5": "1e0c0532254044ea463f276e73f31bd9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/sroot-serverAuth.pem", + "type": "file", + "name": "sroot-serverAuth.pem", + "base_name": "sroot-serverAuth", + "extension": ".pem", + "size": 1143, + "date": "2017-05-25", + "sha1": "a1739e6dbb056756e3d227eb067aaa63aab7a04b", + "md5": "4fe03a820e0890348add71786a219979", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/subinterCA-ss.pem", + "type": "file", + "name": "subinterCA-ss.pem", + "base_name": "subinterCA-ss", + "extension": ".pem", + "size": 1285, + "date": "2017-05-25", + "sha1": "a0c3550f21b805fca1b4fdc1ca641287a7ec7530", + "md5": "137c3283b90c12c91ee2da83def7f943", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/subinterCA.key", + "type": "file", + "name": "subinterCA.key", + "base_name": "subinterCA", + "extension": ".key", + "size": 1679, + "date": "2017-05-25", + "sha1": "70d16585c4483e47ae5cfb137a5509a5cd25c4d0", + "md5": "eaab26ea4d7a6b8a7b19373f502aab2f", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/subinterCA.pem", + "type": "file", + "name": "subinterCA.pem", + "base_name": "subinterCA", + "extension": ".pem", + "size": 1281, + "date": "2017-05-25", + "sha1": "4a2a97892ce72d8c1b701a79925374aa0906214d", + "md5": "54622d7d5103d651abd473f142bf3cae", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/untrusted.pem", + "type": "file", + "name": "untrusted.pem", + "base_name": "untrusted", + "extension": ".pem", + "size": 2554, + "date": "2017-05-25", + "sha1": "265fdb92960be006d9572c7d8484b806e245f160", + "md5": "e9c7e850db19874e85547fc57752a0ce", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/wrongcert.pem", + "type": "file", + "name": "wrongcert.pem", + "base_name": "wrongcert", + "extension": ".pem", + "size": 1099, + "date": "2017-05-25", + "sha1": "7c6f751ecd7f3ddfd291b48f42213d13885adaa2", + "md5": "dd319b84a725057e8c32243882cb775d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/certs/wrongkey.pem", + "type": "file", + "name": "wrongkey.pem", + "base_name": "wrongkey", + "extension": ".pem", + "size": 1708, + "date": "2017-05-25", + "sha1": "0d3e59bffc2da21ec7d1403f2342bf260344720b", + "md5": "8d8b825adf972d132c837f2aaa312b01", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ct", + "type": "directory", + "name": "ct", + "base_name": "ct", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2567, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ct/log_list.conf", + "type": "file", + "name": "log_list.conf", + "base_name": "log_list", + "extension": ".conf", + "size": 1987, + "date": "2017-05-25", + "sha1": "3ea345c431195c1f9740b5f0d476417f36374f17", + "md5": "3dc5dea30f8a81d25b3c2ed51e31e2e3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ct/tls1.sct", + "type": "file", + "name": "tls1.sct", + "base_name": "tls1", + "extension": ".sct", + "size": 580, + "date": "2017-05-25", + "sha1": "78241f8c33e1c6c29bde2f32b9407c84d29c5b18", + "md5": "df963a06ab60360b8abf95de3e137f15", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "GMT Extensions none Signature" + ], + "start_line": 4, + "end_line": 7 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests", + "type": "directory", + "name": "d2i-tests", + "base_name": "d2i-tests", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 1121, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/bad-cms.der", + "type": "file", + "name": "bad-cms.der", + "base_name": "bad-cms", + "extension": ".der", + "size": 24, + "date": "2017-05-25", + "sha1": "f3c6fad094a0dff539c9a312db077faca2774317", + "md5": "3a261cdc36562931ff3077e6a063620b", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/bad-int-pad0.der", + "type": "file", + "name": "bad-int-pad0.der", + "base_name": "bad-int-pad0", + "extension": ".der", + "size": 4, + "date": "2017-05-25", + "sha1": "e8f8bb99f9c79840058c45628a7279d5e6e35091", + "md5": "ddae5a1703736724e812c007cc6101cf", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/bad-int-padminus1.der", + "type": "file", + "name": "bad-int-padminus1.der", + "base_name": "bad-int-padminus1", + "extension": ".der", + "size": 4, + "date": "2017-05-25", + "sha1": "196870f03e29e85b0d646bb81048da61facfd05f", + "md5": "385a44964cc5f3a4aaa89b83091307e3", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/bad_bio.der", + "type": "file", + "name": "bad_bio.der", + "base_name": "bad_bio", + "extension": ".der", + "size": 7, + "date": "2017-05-25", + "sha1": "a1d31eb10025646ab20e16f141885aecb846c20c", + "md5": "937ac15bafd655b459e9a21b9dd1be11", + "mime_type": "text/plain", + "file_type": "Non-ISO extended-ASCII text, with no line terminators", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/bad_cert.der", + "type": "file", + "name": "bad_cert.der", + "base_name": "bad_cert", + "extension": ".der", + "size": 1007, + "date": "2017-05-25", + "sha1": "001e5375a42d2fb353de3da38a766f11eba9c316", + "md5": "e04ecb22ddd0a056d712e216a9ddd6b9", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/bad_generalname.der", + "type": "file", + "name": "bad_generalname.der", + "base_name": "bad_generalname", + "extension": ".der", + "size": 60, + "date": "2017-05-25", + "sha1": "ffa57b107c8a295b4ebece349109d2e1a648d6ec", + "md5": "10d1346c7ff6f21f7b1f5c7b8abc780d", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/high_tag.der", + "type": "file", + "name": "high_tag.der", + "base_name": "high_tag", + "extension": ".der", + "size": 6, + "date": "2017-05-25", + "sha1": "a48875aa5ff96624d61faac1d88e4378c554bc3a", + "md5": "a83c275cb2fdaedbb0eecd59b7564096", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/int0.der", + "type": "file", + "name": "int0.der", + "base_name": "int0", + "extension": ".der", + "size": 3, + "date": "2017-05-25", + "sha1": "56e888ae9db53f2bcba04c4be287530733771bdf", + "md5": "9a4f48c371ae1d214d719be64ae9fbb0", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/int1.der", + "type": "file", + "name": "int1.der", + "base_name": "int1", + "extension": ".der", + "size": 3, + "date": "2017-05-25", + "sha1": "a24e6cdcdc67c317f9ce567a0bf3d7040066af48", + "md5": "251c1fa8a1e95434a64dce0d4826443e", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/d2i-tests/intminus1.der", + "type": "file", + "name": "intminus1.der", + "base_name": "intminus1", + "extension": ".der", + "size": 3, + "date": "2017-05-25", + "sha1": "60135fd7e7e22ea25842ade5ccafe5eec15b6dd1", + "md5": "6968f45023854c35bd5f485292578da7", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests", + "type": "directory", + "name": "ocsp-tests", + "base_name": "ocsp-tests", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 66, + "dirs_count": 0, + "size_count": 111069, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D1.ors", + "type": "file", + "name": "D1.ors", + "base_name": "D1", + "extension": ".ors", + "size": 2020, + "date": "2017-05-25", + "sha1": "5d9c6d431a6b207afafccf9eb963ece2b482dbd3", + "md5": "abf556b1e88be5027186fd63fd788731", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D1_Cert_EE.pem", + "type": "file", + "name": "D1_Cert_EE.pem", + "base_name": "D1_Cert_EE", + "extension": ".pem", + "size": 2394, + "date": "2017-05-25", + "sha1": "5b4fd3e540aff2ce347807a5d92dde016054dfce", + "md5": "e0cf32eed891ebf3a2e7c70663a792a1", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D1_Issuer_ICA.pem", + "type": "file", + "name": "D1_Issuer_ICA.pem", + "base_name": "D1_Issuer_ICA", + "extension": ".pem", + "size": 1631, + "date": "2017-05-25", + "sha1": "87c721cbc9c5d275b3b0b1695cf428528858d78c", + "md5": "d3574a8cff3e68da4e333581df4e784d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D2.ors", + "type": "file", + "name": "D2.ors", + "base_name": "D2", + "extension": ".ors", + "size": 2044, + "date": "2017-05-25", + "sha1": "a54e4060a7c480d826c7d71d8d9e8ef850490aa4", + "md5": "ffae52f5131026c04bdc9b65b60422db", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D2_Cert_ICA.pem", + "type": "file", + "name": "D2_Cert_ICA.pem", + "base_name": "D2_Cert_ICA", + "extension": ".pem", + "size": 1610, + "date": "2017-05-25", + "sha1": "ad602f6b8d154f63b7eb245feaa804f1d71e4f10", + "md5": "2352f1078bf398ac2b709df37eb54e98", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D2_Issuer_Root.pem", + "type": "file", + "name": "D2_Issuer_Root.pem", + "base_name": "D2_Issuer_Root", + "extension": ".pem", + "size": 1261, + "date": "2017-05-25", + "sha1": "e88300a45a0726158243a4ef7f2095be313e594d", + "md5": "7872bab9a5e1a71e3d7f77836a841a04", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D3.ors", + "type": "file", + "name": "D3.ors", + "base_name": "D3", + "extension": ".ors", + "size": 2414, + "date": "2017-05-25", + "sha1": "628285135bfde6e6625df43dca717a37008b45b8", + "md5": "b62c7fb329c1532940056d7a2b157c04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D3_Cert_EE.pem", + "type": "file", + "name": "D3_Cert_EE.pem", + "base_name": "D3_Cert_EE", + "extension": ".pem", + "size": 2716, + "date": "2017-05-25", + "sha1": "52ed6973f552a388882d0392cfc235a2c16efc5e", + "md5": "4b1cd9025894ef391fe65ca0072cc122", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/D3_Issuer_Root.pem", + "type": "file", + "name": "D3_Issuer_Root.pem", + "base_name": "D3_Issuer_Root", + "extension": ".pem", + "size": 5179, + "date": "2017-05-25", + "sha1": "9b40553f49865d3e455faafadbb0d20885b04f90", + "md5": "190789d16052b5495b3c05b7512a412f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISDOSC_D1.ors", + "type": "file", + "name": "ISDOSC_D1.ors", + "base_name": "ISDOSC_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-05-25", + "sha1": "d545ee9ae139b902b55ebf82649c27238714ca42", + "md5": "f430991faf1d749c1d63778bd986776f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISDOSC_D2.ors", + "type": "file", + "name": "ISDOSC_D2.ors", + "base_name": "ISDOSC_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-05-25", + "sha1": "e61625325d2117138f8d81e517180099354f8717", + "md5": "bc53926a9c1a4cf78ddbac98733f2846", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISDOSC_D3.ors", + "type": "file", + "name": "ISDOSC_D3.ors", + "base_name": "ISDOSC_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-05-25", + "sha1": "ed18ad2f05093be8d38ac2a91ccd6be915222e1c", + "md5": "58a96c4203fe7e45dc75ce64eeb0749d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISIC_D1_Issuer_ICA.pem", + "type": "file", + "name": "ISIC_D1_Issuer_ICA.pem", + "base_name": "ISIC_D1_Issuer_ICA", + "extension": ".pem", + "size": 1631, + "date": "2017-05-25", + "sha1": "0ecd906ecc8dbc28aa3d5abdece1ce6dd8569c17", + "md5": "bbc919fd48f509092fa16ca3e94d87ce", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISIC_D2_Issuer_Root.pem", + "type": "file", + "name": "ISIC_D2_Issuer_Root.pem", + "base_name": "ISIC_D2_Issuer_Root", + "extension": ".pem", + "size": 1261, + "date": "2017-05-25", + "sha1": "b0e9a2ab6ec8ff4b2b768546b16f7cc87613f3eb", + "md5": "5e7e9cd9ba20bd97011564d1bd4a3243", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISIC_D3_Issuer_Root.pem", + "type": "file", + "name": "ISIC_D3_Issuer_Root.pem", + "base_name": "ISIC_D3_Issuer_Root", + "extension": ".pem", + "size": 2569, + "date": "2017-05-25", + "sha1": "a9a673b6d150c62153b11222a5a80353a859f47e", + "md5": "2abe744b840ad7c7642f936f0a2ee127", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISIC_ND1_Issuer_ICA.pem", + "type": "file", + "name": "ISIC_ND1_Issuer_ICA.pem", + "base_name": "ISIC_ND1_Issuer_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-05-25", + "sha1": "67f8087da3d59cdc2f42b4d8ebd08805b7f88af1", + "md5": "5377004fb1a2595a5d2c7544f1201765", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISIC_ND2_Issuer_Root.pem", + "type": "file", + "name": "ISIC_ND2_Issuer_Root.pem", + "base_name": "ISIC_ND2_Issuer_Root", + "extension": ".pem", + "size": 1383, + "date": "2017-05-25", + "sha1": "94a55331d1e0ca912fc1de48ea8e1353fc0be4bf", + "md5": "318e51673793f980f64e4a03c75d8835", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISIC_ND3_Issuer_Root.pem", + "type": "file", + "name": "ISIC_ND3_Issuer_Root.pem", + "base_name": "ISIC_ND3_Issuer_Root", + "extension": ".pem", + "size": 1521, + "date": "2017-05-25", + "sha1": "3b43e27c8d952484521b2123c3b4e47c0c0cc788", + "md5": "afa309365e12160361b51f623fd884d8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_D1.ors", + "type": "file", + "name": "ISOP_D1.ors", + "base_name": "ISOP_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-05-25", + "sha1": "248debb61138577511f2ea8b96387966a8df738b", + "md5": "c8a36d01f87fa14f4f8eed469e7d6d5c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_D2.ors", + "type": "file", + "name": "ISOP_D2.ors", + "base_name": "ISOP_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-05-25", + "sha1": "2494a622c2c900d5a26589bf005a8e74a7cd9269", + "md5": "7da14c3f7fd3d0e496752e2f4ac8426f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_D3.ors", + "type": "file", + "name": "ISOP_D3.ors", + "base_name": "ISOP_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-05-25", + "sha1": "9b8cd70802949de9cc84bc176ac7b5cda930c83d", + "md5": "843192e9d84d57121724da4047d68f45", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_ND1.ors", + "type": "file", + "name": "ISOP_ND1.ors", + "base_name": "ISOP_ND1", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "3ca4ccada3c7996d8f780e6a2a6692726a27adc5", + "md5": "455ba62ee308292da57bb59c6a9ce4ac", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_ND2.ors", + "type": "file", + "name": "ISOP_ND2.ors", + "base_name": "ISOP_ND2", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "e1fef2d607d5ccf2e22c4312613ff94fa826a422", + "md5": "305ca75674e7c5c033f1a2a49b4f4cb6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ISOP_ND3.ors", + "type": "file", + "name": "ISOP_ND3.ors", + "base_name": "ISOP_ND3", + "extension": ".ors", + "size": 642, + "date": "2017-05-25", + "sha1": "98f9a2ad2c099d9cd058eb9bd53c185e4f0e48f6", + "md5": "d9291b346e9365f69dab0f476c5c003b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND1.ors", + "type": "file", + "name": "ND1.ors", + "base_name": "ND1", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "e5ecbb215e1c391971893cd80e21475353a9efc0", + "md5": "9cc3c8fc297787464d5d5ac445c96d47", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND1_Cert_EE.pem", + "type": "file", + "name": "ND1_Cert_EE.pem", + "base_name": "ND1_Cert_EE", + "extension": ".pem", + "size": 2244, + "date": "2017-05-25", + "sha1": "fa82ce969b77aeb8ce183ac87ec009dce83a1995", + "md5": "350811f1a03468a5ff912fc672b38ca2", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND1_Issuer_ICA.pem", + "type": "file", + "name": "ND1_Issuer_ICA.pem", + "base_name": "ND1_Issuer_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-05-25", + "sha1": "2f1f8e32b3f1dd1f8443b81abf0520e46b4fad8b", + "md5": "f0672c43512f975851395828645f2b8d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND2.ors", + "type": "file", + "name": "ND2.ors", + "base_name": "ND2", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "3f0d9738765b0500081c688ef0f86e86988812a6", + "md5": "a0d092ea1454214723f0429d7485d5ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND2_Cert_ICA.pem", + "type": "file", + "name": "ND2_Cert_ICA.pem", + "base_name": "ND2_Cert_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-05-25", + "sha1": "2f1f8e32b3f1dd1f8443b81abf0520e46b4fad8b", + "md5": "f0672c43512f975851395828645f2b8d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND2_Issuer_Root.pem", + "type": "file", + "name": "ND2_Issuer_Root.pem", + "base_name": "ND2_Issuer_Root", + "extension": ".pem", + "size": 1383, + "date": "2017-05-25", + "sha1": "28a5ecaaf9b8141cfae7dbda57fb8f938292efb2", + "md5": "7217d737147ddd364cffb86d5918917d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND3.ors", + "type": "file", + "name": "ND3.ors", + "base_name": "ND3", + "extension": ".ors", + "size": 642, + "date": "2017-05-25", + "sha1": "8292a4574d4a8603b11a008913d11f9882ed50f2", + "md5": "44ceca01c054e9461961f561b04faffd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND3_Cert_EE.pem", + "type": "file", + "name": "ND3_Cert_EE.pem", + "base_name": "ND3_Cert_EE", + "extension": ".pem", + "size": 2094, + "date": "2017-05-25", + "sha1": "24adc726d7eefd4c92cc59c5153cf84b02df2f7d", + "md5": "44d9b4e26d7263825cf1c5720d9ea759", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/ND3_Issuer_Root.pem", + "type": "file", + "name": "ND3_Issuer_Root.pem", + "base_name": "ND3_Issuer_Root", + "extension": ".pem", + "size": 1521, + "date": "2017-05-25", + "sha1": "4513711209c4c1e1780c91df93024fecd8083160", + "md5": "51e14b4c734e450402ea2cf73f2aee0f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_D1.ors", + "type": "file", + "name": "WIKH_D1.ors", + "base_name": "WIKH_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-05-25", + "sha1": "72c4093011551eda5c2bfeb9c4c914d4d62586b6", + "md5": "4ac1f1750c68540c7508ae99a74fe883", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_D2.ors", + "type": "file", + "name": "WIKH_D2.ors", + "base_name": "WIKH_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-05-25", + "sha1": "0aa36924889a0d399100d8fccc53fe919e218fe5", + "md5": "1574af8293e37433e786efa209e2c812", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_D3.ors", + "type": "file", + "name": "WIKH_D3.ors", + "base_name": "WIKH_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-05-25", + "sha1": "043cf93599a5cef14b9a6218f1f1dc68a8cb9e08", + "md5": "9dfbe278a19fed7daebf36e854668360", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_ND1.ors", + "type": "file", + "name": "WIKH_ND1.ors", + "base_name": "WIKH_ND1", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "834e5f668ac27f9a5b407003e2945facca915142", + "md5": "9e4d392aa8364465cac80577f418f5c9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_ND2.ors", + "type": "file", + "name": "WIKH_ND2.ors", + "base_name": "WIKH_ND2", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "95e34739195c03333e5b1877a0c2074910f5b57a", + "md5": "5f995a9a9438626aad699cba7131431a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WIKH_ND3.ors", + "type": "file", + "name": "WIKH_ND3.ors", + "base_name": "WIKH_ND3", + "extension": ".ors", + "size": 642, + "date": "2017-05-25", + "sha1": "f50ad45f566ff71d7e5c25570742170be5476ec5", + "md5": "dbbe044057b118454230f9b9e2bace21", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WINH_D1.ors", + "type": "file", + "name": "WINH_D1.ors", + "base_name": "WINH_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-05-25", + "sha1": "7a8e2764b7d545a959facdf4bb0be623cf8b31d4", + "md5": "3b55aea47695426d4dfaa39c7592631b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WINH_D2.ors", + "type": "file", + "name": "WINH_D2.ors", + "base_name": "WINH_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-05-25", + "sha1": "ab831b6a8f9adf61cadcbc23cc86ae9609227f4c", + "md5": "7a9f12ce2ec215d9d48a5e6f5af23623", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WINH_D3.ors", + "type": "file", + "name": "WINH_D3.ors", + "base_name": "WINH_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-05-25", + "sha1": "ad00149ca9f9e95025f1e16f70c5635aba89e0f3", + "md5": "133ab395c0779ed6690f85c0b2c0e235", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WINH_ND1.ors", + "type": "file", + "name": "WINH_ND1.ors", + "base_name": "WINH_ND1", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "a2c024578820ee433ea7efd0e14b5dc4ef9aa50a", + "md5": "92fef76ec1720164404974fe58630ee1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WINH_ND2.ors", + "type": "file", + "name": "WINH_ND2.ors", + "base_name": "WINH_ND2", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "a48bdad343da025d9707a4c9ecf91a977bb19ba4", + "md5": "ba973d1731ede5d30337d92b8862e427", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WINH_ND3.ors", + "type": "file", + "name": "WINH_ND3.ors", + "base_name": "WINH_ND3", + "extension": ".ors", + "size": 642, + "date": "2017-05-25", + "sha1": "f092c42f3140b1f253eb1065a4510991510ea756", + "md5": "63ef8170c61382e1d2dc8c1f07289a7f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKDOSC_D1.ors", + "type": "file", + "name": "WKDOSC_D1.ors", + "base_name": "WKDOSC_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-05-25", + "sha1": "4f01d3ba70d600e295210ea560ab1fbeaf149681", + "md5": "2c55646e00e71bad5d3e20ee3d8760cd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKDOSC_D2.ors", + "type": "file", + "name": "WKDOSC_D2.ors", + "base_name": "WKDOSC_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-05-25", + "sha1": "a85f01850932bf5feb80d385e58241d977e775d6", + "md5": "6745cad5e94480a381633f948d15ebf5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKDOSC_D3.ors", + "type": "file", + "name": "WKDOSC_D3.ors", + "base_name": "WKDOSC_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-05-25", + "sha1": "d8ba97eef704c5666f5fff5227c5dd1451609ca9", + "md5": "8a342406c73a09e58f30e54dd10d2363", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKIC_D1_Issuer_ICA.pem", + "type": "file", + "name": "WKIC_D1_Issuer_ICA.pem", + "base_name": "WKIC_D1_Issuer_ICA", + "extension": ".pem", + "size": 1631, + "date": "2017-05-25", + "sha1": "87521273d5a6af208b20b4e6b0beeeedfa875a69", + "md5": "669e7467b81274408bb7eb2f24f8da75", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKIC_D2_Issuer_Root.pem", + "type": "file", + "name": "WKIC_D2_Issuer_Root.pem", + "base_name": "WKIC_D2_Issuer_Root", + "extension": ".pem", + "size": 1261, + "date": "2017-05-25", + "sha1": "1a3c9d17520b2411f1850caac6fb3958e2743677", + "md5": "deda005e33e90a4052b579daa02bf940", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKIC_D3_Issuer_Root.pem", + "type": "file", + "name": "WKIC_D3_Issuer_Root.pem", + "base_name": "WKIC_D3_Issuer_Root", + "extension": ".pem", + "size": 2569, + "date": "2017-05-25", + "sha1": "658da55f81c2104fcd1e8ea2a8428978c8cdb8fa", + "md5": "3ed0186df636aa630ba2b0df267a29f9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKIC_ND1_Issuer_ICA.pem", + "type": "file", + "name": "WKIC_ND1_Issuer_ICA.pem", + "base_name": "WKIC_ND1_Issuer_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-05-25", + "sha1": "0fa1f946963bf0b373c364d84fa06800f968e7b2", + "md5": "6cc18928cfc76b3352e0d5f934b56e78", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKIC_ND2_Issuer_Root.pem", + "type": "file", + "name": "WKIC_ND2_Issuer_Root.pem", + "base_name": "WKIC_ND2_Issuer_Root", + "extension": ".pem", + "size": 1383, + "date": "2017-05-25", + "sha1": "1b71b2e52741cacdd57e589784fc75163706a6fe", + "md5": "1ff2ce84880fd5bb0f90dec46dc675c0", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WKIC_ND3_Issuer_Root.pem", + "type": "file", + "name": "WKIC_ND3_Issuer_Root.pem", + "base_name": "WKIC_ND3_Issuer_Root", + "extension": ".pem", + "size": 1521, + "date": "2017-05-25", + "sha1": "31ea52718abd74a21155ceb0ba3df06a7859251b", + "md5": "77c509baf4eabd972bef0cc635a01585", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WRID_D1.ors", + "type": "file", + "name": "WRID_D1.ors", + "base_name": "WRID_D1", + "extension": ".ors", + "size": 2020, + "date": "2017-05-25", + "sha1": "fe709da76b910bd0989366f0fe40941b9b2250d7", + "md5": "4cc6bc51a08a28caa695dab4cc519f24", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WRID_D2.ors", + "type": "file", + "name": "WRID_D2.ors", + "base_name": "WRID_D2", + "extension": ".ors", + "size": 2044, + "date": "2017-05-25", + "sha1": "6c7bb0e2d21225092b1dd5897be379c004047106", + "md5": "1f19f1c38180e989a75be5246e96bfe7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WRID_D3.ors", + "type": "file", + "name": "WRID_D3.ors", + "base_name": "WRID_D3", + "extension": ".ors", + "size": 2414, + "date": "2017-05-25", + "sha1": "8bc6c6fb99da16beb083541d8fae085c99067036", + "md5": "e2042aa74fc4a36fbe86d54e5f4e56e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WRID_ND1.ors", + "type": "file", + "name": "WRID_ND1.ors", + "base_name": "WRID_ND1", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "ed5099197e0776ec358d59af5fd4165bd55ccd6b", + "md5": "db68cee13c4e0a5f2cd7e1b996c72ebe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WRID_ND2.ors", + "type": "file", + "name": "WRID_ND2.ors", + "base_name": "WRID_ND2", + "extension": ".ors", + "size": 638, + "date": "2017-05-25", + "sha1": "0ddc56dc5c485d895c2eaf7301a0f3296a4f1d69", + "md5": "852527e758cc0231b181681d7206ad4a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WRID_ND3.ors", + "type": "file", + "name": "WRID_ND3.ors", + "base_name": "WRID_ND3", + "extension": ".ors", + "size": 642, + "date": "2017-05-25", + "sha1": "f89473b9619a710f1990a2a5f0215b2c401f75cd", + "md5": "7e882a87a0faef7f913b0d103a1e77f8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WSNIC_D1_Issuer_ICA.pem", + "type": "file", + "name": "WSNIC_D1_Issuer_ICA.pem", + "base_name": "WSNIC_D1_Issuer_ICA", + "extension": ".pem", + "size": 1631, + "date": "2017-05-25", + "sha1": "0f3afa6fca42b1eeb61dd3e5623c9ef606f14b4a", + "md5": "cc25c8914795b1d9e59453765e373fe7", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WSNIC_D2_Issuer_Root.pem", + "type": "file", + "name": "WSNIC_D2_Issuer_Root.pem", + "base_name": "WSNIC_D2_Issuer_Root", + "extension": ".pem", + "size": 1261, + "date": "2017-05-25", + "sha1": "b5e352d24eb13faf72f8e1ccb3bb3f3991acbd57", + "md5": "2781c9c0c0ab7cdac22cc44e814d55a7", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WSNIC_D3_Issuer_Root.pem", + "type": "file", + "name": "WSNIC_D3_Issuer_Root.pem", + "base_name": "WSNIC_D3_Issuer_Root", + "extension": ".pem", + "size": 2569, + "date": "2017-05-25", + "sha1": "c2063f0b76a58db5b98f5e40e3102e5803957081", + "md5": "adfc20a9e3f15a326889bab6132f6c95", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WSNIC_ND1_Issuer_ICA.pem", + "type": "file", + "name": "WSNIC_ND1_Issuer_ICA.pem", + "base_name": "WSNIC_ND1_Issuer_ICA", + "extension": ".pem", + "size": 1801, + "date": "2017-05-25", + "sha1": "1a94d9513ebc49f68befed12f93f6b77d52275f4", + "md5": "8d3986f4d1016e9987356b85384e4b71", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WSNIC_ND2_Issuer_Root.pem", + "type": "file", + "name": "WSNIC_ND2_Issuer_Root.pem", + "base_name": "WSNIC_ND2_Issuer_Root", + "extension": ".pem", + "size": 1383, + "date": "2017-05-25", + "sha1": "c55e434a828e6989d89bf1cd15553299a99996ca", + "md5": "045e64caefa78bf858ce9bcf83c03ab9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ocsp-tests/WSNIC_ND3_Issuer_Root.pem", + "type": "file", + "name": "WSNIC_ND3_Issuer_Root.pem", + "base_name": "WSNIC_ND3_Issuer_Root", + "extension": ".pem", + "size": 1521, + "date": "2017-05-25", + "sha1": "0feb4b4cd38cbbcf49f0d9f34a8a635500f246f6", + "md5": "f7e0daffdcc12fdbbe7f38c937668d18", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes", + "type": "directory", + "name": "recipes", + "base_name": "recipes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 150, + "dirs_count": 1, + "size_count": 278408, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/01-test_abort.t", + "type": "file", + "name": "01-test_abort.t", + "base_name": "01-test_abort", + "extension": ".t", + "size": 478, + "date": "2017-05-25", + "sha1": "768e0d7b2991eebf32a082a90057ad1c25172a59", + "md5": "5d9f93ba01d8ef6c3aaead797e2c9d05", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/01-test_sanity.t", + "type": "file", + "name": "01-test_sanity.t", + "base_name": "01-test_sanity", + "extension": ".t", + "size": 413, + "date": "2017-05-25", + "sha1": "fa8cd5b1aacb6fd606a3d9a5ef2f628cca5c779c", + "md5": "5996539e9a840fc156133b2cf49ad6ae", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/01-test_symbol_presence.t", + "type": "file", + "name": "01-test_symbol_presence.t", + "base_name": "01-test_symbol_presence", + "extension": ".t", + "size": 4249, + "date": "2017-05-25", + "sha1": "0622e5232583d7dff78577dd1e7efc77ba3c6a03", + "md5": "b1d32ad9b67769bd1d80e6134b94e5b8", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/02-test_ordinals.t", + "type": "file", + "name": "02-test_ordinals.t", + "base_name": "02-test_ordinals", + "extension": ".t", + "size": 1688, + "date": "2017-05-25", + "sha1": "c31719930ed6874607e334ba85a02fb4ede571b4", + "md5": "ee963d8474064b056913fbca7ae34395", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/03-test_exdata.t", + "type": "file", + "name": "03-test_exdata.t", + "base_name": "03-test_exdata", + "extension": ".t", + "size": 408, + "date": "2017-05-25", + "sha1": "cb7a483b01e1af0a4de649e6709b31bd2842ea8b", + "md5": "4b7bb31d67544229c5eb63c21435805f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/03-test_ui.t", + "type": "file", + "name": "03-test_ui.t", + "base_name": "03-test_ui", + "extension": ".t", + "size": 926, + "date": "2017-05-25", + "sha1": "785bc5d4321206778be4929d15eb14d0804c0ed9", + "md5": "396ce13089e48fa82b68d78dc0dbd1ab", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem.t", + "type": "file", + "name": "04-test_pem.t", + "base_name": "04-test_pem", + "extension": ".t", + "size": 3620, + "date": "2017-05-25", + "sha1": "e8dd5da673f771bc3dbe3501045bf67e117db8ef", + "md5": "232614e1cb5d24a24bed66676448a044", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_bf.t", + "type": "file", + "name": "05-test_bf.t", + "base_name": "05-test_bf", + "extension": ".t", + "size": 411, + "date": "2017-05-25", + "sha1": "a041b20c3ac9f8ab23f517f74157f245e3c6a358", + "md5": "a11d5611c1176f6e333aa7c897e29f01", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_cast.t", + "type": "file", + "name": "05-test_cast.t", + "base_name": "05-test_cast", + "extension": ".t", + "size": 417, + "date": "2017-05-25", + "sha1": "265a0ed029d6b53cc7c97ad7fd4a1a3b1e4ee5df", + "md5": "5dd6410b11ef865a0b949562f7e83dd7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_des.t", + "type": "file", + "name": "05-test_des.t", + "base_name": "05-test_des", + "extension": ".t", + "size": 414, + "date": "2017-05-25", + "sha1": "06c2865b34f194856a8ddd61a2bfefa620995cee", + "md5": "2a21b0254429bc37281c2af528b3443d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_hmac.t", + "type": "file", + "name": "05-test_hmac.t", + "base_name": "05-test_hmac", + "extension": ".t", + "size": 409, + "date": "2017-05-25", + "sha1": "8af82d170451bdf96def3c42222c5612936799c5", + "md5": "a3e56f0b3694d42ae1510739bbaa2a9b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_idea.t", + "type": "file", + "name": "05-test_idea.t", + "base_name": "05-test_idea", + "extension": ".t", + "size": 417, + "date": "2017-05-25", + "sha1": "c8d99c22a6d00938b81d3a97793beaf735065f64", + "md5": "a40bd53f699a2ef0707a9df053b8a2ef", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_md2.t", + "type": "file", + "name": "05-test_md2.t", + "base_name": "05-test_md2", + "extension": ".t", + "size": 414, + "date": "2017-05-25", + "sha1": "4651644aa313799f58120171f230b11260357c35", + "md5": "6c9d0253228c112c2d8ddf100aa65549", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_md4.t", + "type": "file", + "name": "05-test_md4.t", + "base_name": "05-test_md4", + "extension": ".t", + "size": 414, + "date": "2017-05-25", + "sha1": "a2ad4745bf079f23ada8cbcceabf0af8d7602adf", + "md5": "5c140187cb209550777cd1745c70c9d7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_md5.t", + "type": "file", + "name": "05-test_md5.t", + "base_name": "05-test_md5", + "extension": ".t", + "size": 414, + "date": "2017-05-25", + "sha1": "610b67e496fdd3193bad91c97db6e1a76ad344f6", + "md5": "8a4aaa537d463950b718d080c94040fe", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_mdc2.t", + "type": "file", + "name": "05-test_mdc2.t", + "base_name": "05-test_mdc2", + "extension": ".t", + "size": 417, + "date": "2017-05-25", + "sha1": "20f169bb535384022ae12881cb1b09583eedc845", + "md5": "cb51d904bea22117dbadeb09fee34e9f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_rand.t", + "type": "file", + "name": "05-test_rand.t", + "base_name": "05-test_rand", + "extension": ".t", + "size": 417, + "date": "2017-05-25", + "sha1": "d2e6f0916a1536657567020d23b63d60bc995776", + "md5": "b51cef3cda043d44088bc060da33615e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_rc2.t", + "type": "file", + "name": "05-test_rc2.t", + "base_name": "05-test_rc2", + "extension": ".t", + "size": 413, + "date": "2017-05-25", + "sha1": "da530ca9f3e589127a3d2720f1eb6a2aca1a5487", + "md5": "6ca811dfe32a332ab75b520dde856d0c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_rc4.t", + "type": "file", + "name": "05-test_rc4.t", + "base_name": "05-test_rc4", + "extension": ".t", + "size": 413, + "date": "2017-05-25", + "sha1": "c0a252564544f32e62351425eddf0729127c4b96", + "md5": "316869a7e60ac7a3be987dc6f62c180a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_rc5.t", + "type": "file", + "name": "05-test_rc5.t", + "base_name": "05-test_rc5", + "extension": ".t", + "size": 414, + "date": "2017-05-25", + "sha1": "60cae4de3528dfb088fcbe0e1937f06572ec6958", + "md5": "8f6d2c14c4abe0a649d0ff0c8290609e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_rmd.t", + "type": "file", + "name": "05-test_rmd.t", + "base_name": "05-test_rmd", + "extension": ".t", + "size": 414, + "date": "2017-05-25", + "sha1": "cd9a932f9e25aab54bdda2d43281c582937d6917", + "md5": "a94f393c6d5a0a20cfa5e179a3f339f3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_sha1.t", + "type": "file", + "name": "05-test_sha1.t", + "base_name": "05-test_sha1", + "extension": ".t", + "size": 416, + "date": "2017-05-25", + "sha1": "cc7a840266e65dc1d298e7d3e177dc72a2b3e96b", + "md5": "a180ac3e34c1327a8db3ea39a903e5d4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_sha256.t", + "type": "file", + "name": "05-test_sha256.t", + "base_name": "05-test_sha256", + "extension": ".t", + "size": 417, + "date": "2017-05-25", + "sha1": "e790ced579f2f82348092bac63457568e77e5f12", + "md5": "06a9520bd4e8f09e636da2f739767f66", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_sha512.t", + "type": "file", + "name": "05-test_sha512.t", + "base_name": "05-test_sha512", + "extension": ".t", + "size": 417, + "date": "2017-05-25", + "sha1": "3ffc7d24b3faf76a09b6c947d8197af72d95b07b", + "md5": "972c836004fb3964d0d846ce9128f67c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/05-test_wp.t", + "type": "file", + "name": "05-test_wp.t", + "base_name": "05-test_wp", + "extension": ".t", + "size": 419, + "date": "2017-05-25", + "sha1": "253ed41ab4d00275c8258626243c6e138a860cdb", + "md5": "b4bf748882c9a3bfee6c77a7b423d8de", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/10-test_bn.t", + "type": "file", + "name": "10-test_bn.t", + "base_name": "10-test_bn", + "extension": ".t", + "size": 1675, + "date": "2017-05-25", + "sha1": "54f8bf036c2a154ffbff84680c3ad9ab2ed7b9fc", + "md5": "4d4f8bb63d4da47ca7309bd2bc62aa01", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/10-test_exp.t", + "type": "file", + "name": "10-test_exp.t", + "base_name": "10-test_exp", + "extension": ".t", + "size": 407, + "date": "2017-05-25", + "sha1": "6c2d2055b8bbfef6fde12c6f766debc132f51286", + "md5": "c00593ec8108bd364ed98a6642c61718", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/15-test_dh.t", + "type": "file", + "name": "15-test_dh.t", + "base_name": "15-test_dh", + "extension": ".t", + "size": 411, + "date": "2017-05-25", + "sha1": "3d6059885b405f6c34b7cee27757d807990726c9", + "md5": "2be3510e9b4de1b5b5ab3a85799ce8f7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/15-test_dsa.t", + "type": "file", + "name": "15-test_dsa.t", + "base_name": "15-test_dsa", + "extension": ".t", + "size": 1164, + "date": "2017-05-25", + "sha1": "13050d2e500aa132a1decd22979625077b89bb96", + "md5": "f8fc33eec709f839a3dcd43e9f042835", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/15-test_ec.t", + "type": "file", + "name": "15-test_ec.t", + "base_name": "15-test_ec", + "extension": ".t", + "size": 1087, + "date": "2017-05-25", + "sha1": "a9a91374b710c1d0546bc622bcaf09e8cab4a59d", + "md5": "1c979ff5c65af04489ae8d1514a5fb78", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/15-test_ecdsa.t", + "type": "file", + "name": "15-test_ecdsa.t", + "base_name": "15-test_ecdsa", + "extension": ".t", + "size": 417, + "date": "2017-05-25", + "sha1": "2d7b4dee568ae35c4d1e1de48d4a2c8f5b708869", + "md5": "0adca6f66f18698479196600a887569a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/15-test_genrsa.t", + "type": "file", + "name": "15-test_genrsa.t", + "base_name": "15-test_genrsa", + "extension": ".t", + "size": 985, + "date": "2017-05-25", + "sha1": "4408c18afbf2ff65a88587a70a611a0ac0c72e31", + "md5": "303710328eff4ae7c3c8ad5dae1a0d80", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/15-test_rsa.t", + "type": "file", + "name": "15-test_rsa.t", + "base_name": "15-test_rsa", + "extension": ".t", + "size": 1309, + "date": "2017-05-25", + "sha1": "5d1bb2d967210185d50fdcf34af62b6de8a1a9fd", + "md5": "0875f6ae4f65334e1b02639524984d1c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/15-test_rsapss.t", + "type": "file", + "name": "15-test_rsapss.t", + "base_name": "15-test_rsapss", + "extension": ".t", + "size": 2402, + "date": "2017-05-25", + "sha1": "a6c4ed0c801cd5d668efe22fa8f1f4a829ca01d1", + "md5": "4ae05225862b497c1b6cd361442caef7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2017 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/20-test_enc.t", + "type": "file", + "name": "20-test_enc.t", + "base_name": "20-test_enc", + "extension": ".t", + "size": 1957, + "date": "2017-05-25", + "sha1": "c8ce5ccfa2a99ec4453ed73f941866eadbdccd13", + "md5": "91c41b596ec39d9629c7b354b2d60df8", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/20-test_passwd.t", + "type": "file", + "name": "20-test_passwd.t", + "base_name": "20-test_passwd", + "extension": ".t", + "size": 1475, + "date": "2017-05-25", + "sha1": "9fc1514410d9cdc976c3cf3961053cc57a3609a8", + "md5": "37bb8aeeffda8d42a7c467400c9e7dd1", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/25-test_crl.t", + "type": "file", + "name": "25-test_crl.t", + "base_name": "25-test_crl", + "extension": ".t", + "size": 1365, + "date": "2017-05-25", + "sha1": "76adc46511709fada5103b5ba662a776aa65da5c", + "md5": "ba070216ef05df0cf59df525a41854a5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/25-test_d2i.t", + "type": "file", + "name": "25-test_d2i.t", + "base_name": "25-test_d2i", + "extension": ".t", + "size": 3454, + "date": "2017-05-25", + "sha1": "f2485028556acd87705554e3dd72a7a8d3e2bfdc", + "md5": "cc9715b9079b237b2f40cce8c958b74e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/25-test_pkcs7.t", + "type": "file", + "name": "25-test_pkcs7.t", + "base_name": "25-test_pkcs7", + "extension": ".t", + "size": 767, + "date": "2017-05-25", + "sha1": "ab7678a72b1c95aaac8847cc4e24099671cb188a", + "md5": "9d87cf5bae326f88fbe19f87f14f3924", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/25-test_req.t", + "type": "file", + "name": "25-test_req.t", + "base_name": "25-test_req", + "extension": ".t", + "size": 2109, + "date": "2017-05-25", + "sha1": "a1b20e432f9981c23a0e8bc3d6bdc0cf7d10d478", + "md5": "ac7865a09984162639f95132f552d9ef", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/25-test_sid.t", + "type": "file", + "name": "25-test_sid.t", + "base_name": "25-test_sid", + "extension": ".t", + "size": 638, + "date": "2017-05-25", + "sha1": "9d5730161fb82ce461e472ab0baa2d7c6b5b7641", + "md5": "ce9f6baf19d7d00d940e190c9be35af2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/25-test_verify.t", + "type": "file", + "name": "25-test_verify.t", + "base_name": "25-test_verify", + "extension": ".t", + "size": 16465, + "date": "2017-05-25", + "sha1": "467e4af8723a70a02e9a4a7eb4fd2295745d750c", + "md5": "6c2cfc0ccb3ae394380fd96d5e7ed57c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/25-test_x509.t", + "type": "file", + "name": "25-test_x509.t", + "base_name": "25-test_x509", + "extension": ".t", + "size": 990, + "date": "2017-05-25", + "sha1": "9cd6b3e9c085b504a008796bd5484a5647061f63", + "md5": "2a313d0dd191455bcdf769be0d432364", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/30-test_afalg.t", + "type": "file", + "name": "30-test_afalg.t", + "base_name": "30-test_afalg", + "extension": ".t", + "size": 686, + "date": "2017-05-25", + "sha1": "637d99fe885a6ad4006cc112385382201a561643", + "md5": "91ac2d78ceb0e357fcdeff7f8145ffc7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/30-test_engine.t", + "type": "file", + "name": "30-test_engine.t", + "base_name": "30-test_engine", + "extension": ".t", + "size": 483, + "date": "2017-05-25", + "sha1": "3d6fa7cc1dd543a9b47dd08a6c6fe94443e34f55", + "md5": "3318e0fb2f822dea1396ec2fa5b26724", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/30-test_evp.t", + "type": "file", + "name": "30-test_evp.t", + "base_name": "30-test_evp", + "extension": ".t", + "size": 554, + "date": "2017-05-25", + "sha1": "484ab0534abaa0c8320ba678e8a18a872847ae39", + "md5": "ba0189502e847aa8e557d0a62d726fa5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/30-test_evp_extra.t", + "type": "file", + "name": "30-test_evp_extra.t", + "base_name": "30-test_evp_extra", + "extension": ".t", + "size": 494, + "date": "2017-05-25", + "sha1": "ed8d23dedb87108e32a097aa3357d253854ebe24", + "md5": "79d2d5af25cc4adc98b0fae8cf411237", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/30-test_pbelu.t", + "type": "file", + "name": "30-test_pbelu.t", + "base_name": "30-test_pbelu", + "extension": ".t", + "size": 411, + "date": "2017-05-25", + "sha1": "ae30706dfbaaa59a345c95bf2b2c3f2e2548c1d0", + "md5": "63c5c5eb119b8e471aaa984f47634f4e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/40-test_rehash.t", + "type": "file", + "name": "40-test_rehash.t", + "base_name": "40-test_rehash", + "extension": ".t", + "size": 3201, + "date": "2017-05-25", + "sha1": "f2e78b710b0e36ac18c8f4fdb973f7cb34c207cd", + "md5": "bcdf5660ce02e5a9688f50d77c23aae2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/60-test_x509_store.t", + "type": "file", + "name": "60-test_x509_store.t", + "base_name": "60-test_x509_store", + "extension": ".t", + "size": 1827, + "date": "2017-05-25", + "sha1": "d61f5df4cdb212d7a9595afd9e9160ed5cdea6da", + "md5": "d0ef08b84fcee73892ef0252e9806d19", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_asyncio.t", + "type": "file", + "name": "70-test_asyncio.t", + "base_name": "70-test_asyncio", + "extension": ".t", + "size": 741, + "date": "2017-05-25", + "sha1": "466e3bcdfb053e64029c0c074f69c7e97a44bafc", + "md5": "9fc173832a478a1a1fa5c1728e528e70", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_bad_dtls.t", + "type": "file", + "name": "70-test_bad_dtls.t", + "base_name": "70-test_bad_dtls", + "extension": ".t", + "size": 578, + "date": "2017-05-25", + "sha1": "8ab12bc390c4ed4f5c11b4bf1cd1e3083f8abe9d", + "md5": "935f33f268f9dc9a23d28103fe178ca8", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_clienthello.t", + "type": "file", + "name": "70-test_clienthello.t", + "base_name": "70-test_clienthello", + "extension": ".t", + "size": 645, + "date": "2017-05-25", + "sha1": "d78005a8711c42e980e83aef9ecd3e18faaa0fcb", + "md5": "4d559db18bb72e0836c4d0b816d4e093", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_packet.t", + "type": "file", + "name": "70-test_packet.t", + "base_name": "70-test_packet", + "extension": ".t", + "size": 413, + "date": "2017-05-25", + "sha1": "dfbb03f206c8291a0aa9291844e345eb8bdef25a", + "md5": "7db40166c843290604b2735f45177a0d", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_sslcbcpadding.t", + "type": "file", + "name": "70-test_sslcbcpadding.t", + "base_name": "70-test_sslcbcpadding", + "extension": ".t", + "size": 3478, + "date": "2017-05-25", + "sha1": "4a8e3d1a3bbd39ff981c71f15f4ed413e6877610", + "md5": "95d6719faf1185381d3ce1b48ef4b101", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_sslcertstatus.t", + "type": "file", + "name": "70-test_sslcertstatus.t", + "base_name": "70-test_sslcertstatus", + "extension": ".t", + "size": 2155, + "date": "2017-05-25", + "sha1": "519546cf409c3a2e3e97a35acfdcafb058c4eb32", + "md5": "2436eaece236b67b91df1c8203f43266", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_sslextension.t", + "type": "file", + "name": "70-test_sslextension.t", + "base_name": "70-test_sslextension", + "extension": ".t", + "size": 3358, + "date": "2017-05-25", + "sha1": "1ac6bf02986f79aea5922929a5d32cfaa4c4e387", + "md5": "8e47ca5966c1ffee6ab006ee6fa7f098", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_sslmessages.t", + "type": "file", + "name": "70-test_sslmessages.t", + "base_name": "70-test_sslmessages", + "extension": ".t", + "size": 5199, + "date": "2017-05-25", + "sha1": "ba94efa6c605cbb27f731f8e1b6fc0dfbff15d73", + "md5": "6b353b6a3de6a90ae3f4dec0cf6032d9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_sslrecords.t", + "type": "file", + "name": "70-test_sslrecords.t", + "base_name": "70-test_sslrecords", + "extension": ".t", + "size": 11288, + "date": "2017-05-25", + "sha1": "f6cb1c2b8c77e224a039c186fc0632e84993ff3e", + "md5": "faeabb9b655c1c715d137238feb07a5e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_sslsessiontick.t", + "type": "file", + "name": "70-test_sslsessiontick.t", + "base_name": "70-test_sslsessiontick", + "extension": ".t", + "size": 8954, + "date": "2017-05-25", + "sha1": "1f054ff144fa75227cd3b4e760dc24f15456e2d1", + "md5": "f9182289db59ab29c1e7f40d43a3a605", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_sslskewith0p.t", + "type": "file", + "name": "70-test_sslskewith0p.t", + "base_name": "70-test_sslskewith0p", + "extension": ".t", + "size": 1944, + "date": "2017-05-25", + "sha1": "0104f0c569b4e619660a63f4e5b2b3a4443f1f47", + "md5": "cdb8788ab12b8c6a7be410e3c0c71bb4", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_sslvertol.t", + "type": "file", + "name": "70-test_sslvertol.t", + "base_name": "70-test_sslvertol", + "extension": ".t", + "size": 2170, + "date": "2017-05-25", + "sha1": "cd9006809939a9492161999ced90bff2e34a9325", + "md5": "d5ef194144b0a826e642437796dde5ab", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_tlsextms.t", + "type": "file", + "name": "70-test_tlsextms.t", + "base_name": "70-test_tlsextms", + "extension": ".t", + "size": 7025, + "date": "2017-05-25", + "sha1": "5aa27464887032baa4586791b5f177f66960334b", + "md5": "5dab60309c2a1cb2542a80203552584e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/70-test_verify_extra.t", + "type": "file", + "name": "70-test_verify_extra.t", + "base_name": "70-test_verify_extra", + "extension": ".t", + "size": 643, + "date": "2017-05-25", + "sha1": "fa4c442c3afbb4d40bdb97b6c8d144b55f893a6b", + "md5": "af3b1ecb800d119174378bc9221a02fa", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_ca.t", + "type": "file", + "name": "80-test_ca.t", + "base_name": "80-test_ca", + "extension": ".t", + "size": 1681, + "date": "2017-05-25", + "sha1": "134d07d6399ec7c7f75b9458ff4b9a6abcc5ce26", + "md5": "3592e9d432614acb7f9cc63cd1a646e0", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_cipherlist.t", + "type": "file", + "name": "80-test_cipherlist.t", + "base_name": "80-test_cipherlist", + "extension": ".t", + "size": 789, + "date": "2017-05-25", + "sha1": "475ceea77603fe4511d91947b004e8336f6782d9", + "md5": "48764d345fbbb13b9b53b97ca1323d87", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_cms.t", + "type": "file", + "name": "80-test_cms.t", + "base_name": "80-test_cms", + "extension": ".t", + "size": 18459, + "date": "2017-05-25", + "sha1": "5e5e64413bd6654fa94c8aafb088792322f4d39a", + "md5": "e36176400fff55f4d662319f71d57ff6", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_ct.t", + "type": "file", + "name": "80-test_ct.t", + "base_name": "80-test_ct", + "extension": ".t", + "size": 642, + "date": "2017-05-25", + "sha1": "c0a91e326bc0b38940b4e2cb94074fc049f8d35d", + "md5": "02ee06022e474cf23a4670ab399a1f1e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_dane.t", + "type": "file", + "name": "80-test_dane.t", + "base_name": "80-test_dane", + "extension": ".t", + "size": 795, + "date": "2017-05-25", + "sha1": "b53314e86f7b1114bc9fdc7933a1d47a927a6728", + "md5": "2e20148070f88b45d5ce0f292225c2d5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_dtls.t", + "type": "file", + "name": "80-test_dtls.t", + "base_name": "80-test_dtls", + "extension": ".t", + "size": 707, + "date": "2017-05-25", + "sha1": "a029f62bc2b894466c72e8f8e2604e9df1a45425", + "md5": "2b4b3b8e7f9ba93d026e80fea56f3e0c", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_dtlsv1listen.t", + "type": "file", + "name": "80-test_dtlsv1listen.t", + "base_name": "80-test_dtlsv1listen", + "extension": ".t", + "size": 431, + "date": "2017-05-25", + "sha1": "2b4641316ed9834416e1d4cbdf71926dc1b6d6bd", + "md5": "ffd38cc2d50bc3444ecb7676e1825244", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_ocsp.t", + "type": "file", + "name": "80-test_ocsp.t", + "base_name": "80-test_ocsp", + "extension": ".t", + "size": 7895, + "date": "2017-05-25", + "sha1": "e47bd0f851384d80e086346a3a74a09e2e5eea29", + "md5": "019f09849abf863e222a704f1fea780f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_pkcs12.t", + "type": "file", + "name": "80-test_pkcs12.t", + "base_name": "80-test_pkcs12", + "extension": ".t", + "size": 2178, + "date": "2017-05-25", + "sha1": "bd4fa8865b67c34350c0ed77e1b1425b60d32c20", + "md5": "c92d928ac579dd6eb27c2d329b9030dc", + "mime_type": "text/x-perl", + "file_type": "Perl script, UTF-8 Unicode text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_ssl_new.t", + "type": "file", + "name": "80-test_ssl_new.t", + "base_name": "80-test_ssl_new", + "extension": ".t", + "size": 4679, + "date": "2017-05-25", + "sha1": "a39eaed3b7b6d86bbe7563ed615232c7916ed5cd", + "md5": "f25b7ead0f6e00f1ced3e12c093acf7e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_ssl_old.t", + "type": "file", + "name": "80-test_ssl_old.t", + "base_name": "80-test_ssl_old", + "extension": ".t", + "size": 21072, + "date": "2017-05-25", + "sha1": "7f9f1376cbd9a7e9d8915920ce1001470b635767", + "md5": "aa4adc22d237b48005ac6efa9dc87552", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_ssl_test_ctx.t", + "type": "file", + "name": "80-test_ssl_test_ctx.t", + "base_name": "80-test_ssl_test_ctx", + "extension": ".t", + "size": 601, + "date": "2017-05-25", + "sha1": "3bf19d9ef6a1a70708db8eb331d33392867e8f4d", + "md5": "34458f7fd183166615919f65dc4c4a47", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_sslcorrupt.t", + "type": "file", + "name": "80-test_sslcorrupt.t", + "base_name": "80-test_sslcorrupt", + "extension": ".t", + "size": 718, + "date": "2017-05-25", + "sha1": "02a4d443cbeafca1bee102c939fb57ff0ea90875", + "md5": "cc02eef8ec74a301528652a77e3317bd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_tsa.t", + "type": "file", + "name": "80-test_tsa.t", + "base_name": "80-test_tsa", + "extension": ".t", + "size": 7367, + "date": "2017-05-25", + "sha1": "c4e0313bbe7b8a89f229ff4ab48f4cf8e90b20f9", + "md5": "642ed9f3a1dc9b174bf8906a7c098b9e", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 51.22, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 24, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "bsd-new", + "score": 51.22, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 24, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + }, + { + "key": "gpl-2.0", + "score": 51.22, + "short_name": "GPL 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0", + "spdx_license_key": "GPL-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0", + "start_line": 4, + "end_line": 24, + "matched_rule": { + "identifier": "openssl_or_bsd-new_or_gpl_and_gpl-2.0_2.RULE", + "license_choice": true, + "licenses": [ + "openssl", + "bsd-new", + "gpl-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/80-test_x509aux.t", + "type": "file", + "name": "80-test_x509aux.t", + "base_name": "80-test_x509aux", + "extension": ".t", + "size": 948, + "date": "2017-05-25", + "sha1": "8a5cca09dfcf04c6573d7ff74485477208c46b71", + "md5": "730ff9fb5e4d4be8ebfce5bc216bf7ad", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_async.t", + "type": "file", + "name": "90-test_async.t", + "base_name": "90-test_async", + "extension": ".t", + "size": 420, + "date": "2017-05-25", + "sha1": "8a4a8d2e99a104b1295549b994db629853178f6a", + "md5": "b69ff7ce890d8aa44dfb996205109c94", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_bio_enc.t", + "type": "file", + "name": "90-test_bio_enc.t", + "base_name": "90-test_bio_enc", + "extension": ".t", + "size": 427, + "date": "2017-05-25", + "sha1": "0fdfefbf9b51de5d6a1e4d7f93248214b097a2cc", + "md5": "ad07d3d8fb9fb874aa8a2dd536419b40", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_bioprint.t", + "type": "file", + "name": "90-test_bioprint.t", + "base_name": "90-test_bioprint", + "extension": ".t", + "size": 412, + "date": "2017-05-25", + "sha1": "77847e0fe7354fd4e687da3b9959e1f902e47ab3", + "md5": "ce5dc678fc9c741c939c5680973d6c60", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_constant_time.t", + "type": "file", + "name": "90-test_constant_time.t", + "base_name": "90-test_constant_time", + "extension": ".t", + "size": 428, + "date": "2017-05-25", + "sha1": "8fa27bd7cc52da5b53204a24c4ee49be8d32d74c", + "md5": "54d36f26f9627d858bbd459a3cc0ae1a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_fuzz.t", + "type": "file", + "name": "90-test_fuzz.t", + "base_name": "90-test_fuzz", + "extension": ".t", + "size": 1119, + "date": "2017-05-25", + "sha1": "6f5653fcebc70a878666b7fc64982941d1b402e1", + "md5": "e1f0338051d1a8718c9c6ed5cf9098e7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_gmdiff.t", + "type": "file", + "name": "90-test_gmdiff.t", + "base_name": "90-test_gmdiff", + "extension": ".t", + "size": 413, + "date": "2017-05-25", + "sha1": "35d30f700e54c81e132cbfbcc85ef78f29b14920", + "md5": "01570df7e20892733d8ae0c6fa9ae064", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_heartbeat.t", + "type": "file", + "name": "90-test_heartbeat.t", + "base_name": "90-test_heartbeat", + "extension": ".t", + "size": 434, + "date": "2017-05-25", + "sha1": "5679b06b9cd84dadc17caa91df18616d2a252718", + "md5": "7171cab509de31b654ed743184bfddca", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_ige.t", + "type": "file", + "name": "90-test_ige.t", + "base_name": "90-test_ige", + "extension": ".t", + "size": 407, + "date": "2017-05-25", + "sha1": "9f7f0e0db11423309e9bd6425254606f1ed6241e", + "md5": "bc8b75a8d2ca5a2693bb96902df805bd", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_memleak.t", + "type": "file", + "name": "90-test_memleak.t", + "base_name": "90-test_memleak", + "extension": ".t", + "size": 522, + "date": "2017-05-25", + "sha1": "f0a7b2d89580a2b66e5648f8dd9e11565e8e903a", + "md5": "78a058fbfe83e7f9c5416dbf0003a1cc", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_p5_crpt2.t", + "type": "file", + "name": "90-test_p5_crpt2.t", + "base_name": "90-test_p5_crpt2", + "extension": ".t", + "size": 418, + "date": "2017-05-25", + "sha1": "3fb7fb6ee06f1cc9957939b18d12eed1d248a9bd", + "md5": "2d87ac4d67d509f27ed03cc7c118e2fe", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_secmem.t", + "type": "file", + "name": "90-test_secmem.t", + "base_name": "90-test_secmem", + "extension": ".t", + "size": 413, + "date": "2017-05-25", + "sha1": "eeca7d59bc609304395a8d26aaab1d1bbb070d40", + "md5": "bf47edbe881f24986f439898add230b3", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_shlibload.t", + "type": "file", + "name": "90-test_shlibload.t", + "base_name": "90-test_shlibload", + "extension": ".t", + "size": 1127, + "date": "2017-05-25", + "sha1": "c610c1a5f54c754be9adf9439bb232220c529f15", + "md5": "b121df27d35ebe6bc1221819d4e4c202", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_srp.t", + "type": "file", + "name": "90-test_srp.t", + "base_name": "90-test_srp", + "extension": ".t", + "size": 414, + "date": "2017-05-25", + "sha1": "f8a1f6e7e5fa834cff9d29b5b83fde7ac6406263", + "md5": "6a9698c69c4ad27c531fa50e576a8352", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_sslapi.t", + "type": "file", + "name": "90-test_sslapi.t", + "base_name": "90-test_sslapi", + "extension": ".t", + "size": 733, + "date": "2017-05-25", + "sha1": "668bb5e89e9bda54d63edda404966f2d87369db3", + "md5": "57325c8e24d4396513856c99bc21ffd7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_threads.t", + "type": "file", + "name": "90-test_threads.t", + "base_name": "90-test_threads", + "extension": ".t", + "size": 415, + "date": "2017-05-25", + "sha1": "aa73b800e023844d9360221de0c1a2f0ce7223db", + "md5": "a059172609b4017cb9b557c992ae5172", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/90-test_v3name.t", + "type": "file", + "name": "90-test_v3name.t", + "base_name": "90-test_v3name", + "extension": ".t", + "size": 413, + "date": "2017-05-25", + "sha1": "c2e230a0c70c39f482c7ac875ac324dcea8f5c28", + "md5": "0d45edca975558fd4ee8eb887fe6be13", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/bc.pl", + "type": "file", + "name": "bc.pl", + "base_name": "bc", + "extension": ".pl", + "size": 3118, + "date": "2017-05-25", + "sha1": "53749aa309dd012afc1eca32f4e7f1bf4401b123", + "md5": "441e92483ffd08e2555683c0284640d2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/tconversion.pl", + "type": "file", + "name": "tconversion.pl", + "base_name": "tconversion", + "extension": ".pl", + "size": 2883, + "date": "2017-05-25", + "sha1": "2fd55c562a265da7e19ce857e8665fe956ea6d96", + "md5": "39eb613f2143e3b2c16a568183adc0d9", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data", + "type": "directory", + "name": "04-test_pem_data", + "base_name": "04-test_pem_data", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 53, + "dirs_count": 0, + "size_count": 80357, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/beermug.pem", + "type": "file", + "name": "beermug.pem", + "base_name": "beermug", + "extension": ".pem", + "size": 1287, + "date": "2017-05-25", + "sha1": "60639302285a021d23f500c244e1717ebf9e1fc7", + "md5": "14c0060c844f27e14d22caf10b69afd4", + "mime_type": "text/plain", + "file_type": "PEM RSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-1023line.pem", + "type": "file", + "name": "cert-1023line.pem", + "base_name": "cert-1023line", + "extension": ".pem", + "size": 1709, + "date": "2017-05-25", + "sha1": "7f4818b428999b7f64c86fce53390dc22c17a5d1", + "md5": "2d3897e78a506a3fb404ece95d8cc2d9", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-1024line.pem", + "type": "file", + "name": "cert-1024line.pem", + "base_name": "cert-1024line", + "extension": ".pem", + "size": 1709, + "date": "2017-05-25", + "sha1": "d7c9ab6cdf81a4267585a98be879c04b04ef2992", + "md5": "626be15e7c63cdad07d4e98136bd2453", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-1025line.pem", + "type": "file", + "name": "cert-1025line.pem", + "base_name": "cert-1025line", + "extension": ".pem", + "size": 1709, + "date": "2017-05-25", + "sha1": "a1e083f659183aa3ffdecd050aeb9d6ad0ece685", + "md5": "d264a596158b3a48177065ff8b38ad4f", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-255line.pem", + "type": "file", + "name": "cert-255line.pem", + "base_name": "cert-255line", + "extension": ".pem", + "size": 1721, + "date": "2017-05-25", + "sha1": "973cd77a1b7c7c57ae331169fa2be1484b03b61f", + "md5": "387495e38e35ea60881557347ea8a658", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-256line.pem", + "type": "file", + "name": "cert-256line.pem", + "base_name": "cert-256line", + "extension": ".pem", + "size": 1721, + "date": "2017-05-25", + "sha1": "9f282e73d6f584e89723ddcba0e14e982a0ff217", + "md5": "b988ea043e2a65d96b74fda2eb6fd760", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-257line.pem", + "type": "file", + "name": "cert-257line.pem", + "base_name": "cert-257line", + "extension": ".pem", + "size": 1721, + "date": "2017-05-25", + "sha1": "0b3ad999f2d2f86ad3bf2ea7af47787d29e97d6a", + "md5": "c49588a03fd3c8951dcd1533645d8cfb", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-blankline.pem", + "type": "file", + "name": "cert-blankline.pem", + "base_name": "cert-blankline", + "extension": ".pem", + "size": 1725, + "date": "2017-05-25", + "sha1": "f71c0912790c0469c1b6245002dfefcbd75cd52d", + "md5": "238263435080514a1606c69031292069", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-comment.pem", + "type": "file", + "name": "cert-comment.pem", + "base_name": "cert-comment", + "extension": ".pem", + "size": 1790, + "date": "2017-05-25", + "sha1": "923eb91b981a6da295966beb52a5ef7014b30260", + "md5": "c4646cfd61fee4fd7a10ac4af01c5632", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-earlypad.pem", + "type": "file", + "name": "cert-earlypad.pem", + "base_name": "cert-earlypad", + "extension": ".pem", + "size": 1728, + "date": "2017-05-25", + "sha1": "c75e67c5d73523cc74b05cee947f1a03d951e0b4", + "md5": "937c0e77e3640cb361b459b903884e9a", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-extrapad.pem", + "type": "file", + "name": "cert-extrapad.pem", + "base_name": "cert-extrapad", + "extension": ".pem", + "size": 1728, + "date": "2017-05-25", + "sha1": "c459f2123c9a6771fa69907330ca2acdcc3a7ebd", + "md5": "ebb22161289ba3c136d199839cb7147c", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-infixwhitespace.pem", + "type": "file", + "name": "cert-infixwhitespace.pem", + "base_name": "cert-infixwhitespace", + "extension": ".pem", + "size": 1732, + "date": "2017-05-25", + "sha1": "61d2fdaf6762fd3da8d7920ffcb21acfd4adc303", + "md5": "46939fd9b3c827ad432c2774aa696e37", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-junk.pem", + "type": "file", + "name": "cert-junk.pem", + "base_name": "cert-junk", + "extension": ".pem", + "size": 1733, + "date": "2017-05-25", + "sha1": "5d70f9661ea79f14cb32c47f2bd4d610d58ce1d5", + "md5": "c1924890303af80d05753415107d3e61", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-leadingwhitespace.pem", + "type": "file", + "name": "cert-leadingwhitespace.pem", + "base_name": "cert-leadingwhitespace", + "extension": ".pem", + "size": 1932, + "date": "2017-05-25", + "sha1": "05639226cf3fb4fedbde5441426ccea4f24b0e61", + "md5": "1acb704fe113ea721902bf709aed94cf", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-longline.pem", + "type": "file", + "name": "cert-longline.pem", + "base_name": "cert-longline", + "extension": ".pem", + "size": 1724, + "date": "2017-05-25", + "sha1": "6c75858ee77e62dacdc602954dcdc7d79f396999", + "md5": "42b67f8ea1e5be6023bd0f42ead30660", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-misalignedpad.pem", + "type": "file", + "name": "cert-misalignedpad.pem", + "base_name": "cert-misalignedpad", + "extension": ".pem", + "size": 1725, + "date": "2017-05-25", + "sha1": "6d8aff04b86d453dfeb473ef63b54ca6dbfffe07", + "md5": "cd7d2a9e4216c1776346593db1cdba05", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-onecolumn.pem", + "type": "file", + "name": "cert-onecolumn.pem", + "base_name": "cert-onecolumn", + "extension": ".pem", + "size": 3342, + "date": "2017-05-25", + "sha1": "989e3a9853ce34dce62e8152490c2c0a314ce3ae", + "md5": "d7c07675d5ca60eb29145b28024f7ad2", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-oneline.pem", + "type": "file", + "name": "cert-oneline.pem", + "base_name": "cert-oneline", + "extension": ".pem", + "size": 1699, + "date": "2017-05-25", + "sha1": "a2878c6026329a4f7be66ada97ca43c5201b9af6", + "md5": "f1773ed95d0db2bab8a0eab3e73ced9c", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-shortandlongline.pem", + "type": "file", + "name": "cert-shortandlongline.pem", + "base_name": "cert-shortandlongline", + "extension": ".pem", + "size": 1724, + "date": "2017-05-25", + "sha1": "5d61f1279c1a1ddbad1db1baa7efced72bec3b03", + "md5": "2ec02405f292696518e1f79a92a590fa", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-shortline.pem", + "type": "file", + "name": "cert-shortline.pem", + "base_name": "cert-shortline", + "extension": ".pem", + "size": 1724, + "date": "2017-05-25", + "sha1": "4b00ee781a640e100b48bbb5adc23e0cb1b2d0cf", + "md5": "9ffe7f43e9714e68d02e6c5a6adf501d", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-threecolumn.pem", + "type": "file", + "name": "cert-threecolumn.pem", + "base_name": "cert-threecolumn", + "extension": ".pem", + "size": 2246, + "date": "2017-05-25", + "sha1": "f065bd559425a52b2dfeb94dc40bb1b6123e5f3e", + "md5": "88ba525632770314286775700d0708dd", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert-trailingwhitespace.pem", + "type": "file", + "name": "cert-trailingwhitespace.pem", + "base_name": "cert-trailingwhitespace", + "extension": ".pem", + "size": 1940, + "date": "2017-05-25", + "sha1": "b63292d41d660274b6b3b17e36828a821246d187", + "md5": "89dc52583fdfd97f23d13c019b434beb", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/cert.pem", + "type": "file", + "name": "cert.pem", + "base_name": "cert", + "extension": ".pem", + "size": 1724, + "date": "2017-05-25", + "sha1": "bd3aef31d0304252f319cb3a4649e2b2042f112e", + "md5": "0e618e947d839ce3c382d7032675dea8", + "mime_type": "text/plain", + "file_type": "PEM certificate", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/csr.pem", + "type": "file", + "name": "csr.pem", + "base_name": "csr", + "extension": ".pem", + "size": 1265, + "date": "2017-05-25", + "sha1": "10c05e608061ba69d98816c3d30662420b58dcd7", + "md5": "55cebd4d4695a8909b4335ea12c7e98f", + "mime_type": "text/plain", + "file_type": "PEM certificate request", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-1023line.pem", + "type": "file", + "name": "dsa-1023line.pem", + "base_name": "dsa-1023line", + "extension": ".pem", + "size": 1297, + "date": "2017-05-25", + "sha1": "6ac6669a04886db6ecae6ffeae067c96fcb09f6e", + "md5": "1d08aaadec49d5496da199ab6b59f795", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-1024line.pem", + "type": "file", + "name": "dsa-1024line.pem", + "base_name": "dsa-1024line", + "extension": ".pem", + "size": 1296, + "date": "2017-05-25", + "sha1": "aebb66da5212a07f8341e5e9877d154ca79f6070", + "md5": "24996956c7afe30d37e01b939d8437d0", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-1025line.pem", + "type": "file", + "name": "dsa-1025line.pem", + "base_name": "dsa-1025line", + "extension": ".pem", + "size": 1296, + "date": "2017-05-25", + "sha1": "5c671884f89e130c030f6f6aa68e0ebb22512570", + "md5": "ec2fde6c3bd1e983a7a8f79eae17e99e", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-255line.pem", + "type": "file", + "name": "dsa-255line.pem", + "base_name": "dsa-255line", + "extension": ".pem", + "size": 1309, + "date": "2017-05-25", + "sha1": "530fce60b0308c6d4d79104cea7a1247b2bfc049", + "md5": "7628ef2bf8d4e8cd745302e2d7513e19", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-256line.pem", + "type": "file", + "name": "dsa-256line.pem", + "base_name": "dsa-256line", + "extension": ".pem", + "size": 1308, + "date": "2017-05-25", + "sha1": "b7bad534b0ed966234e069fd11d55c08bd2a9c36", + "md5": "93611ae6cb376c2599cda9feb1fdb98c", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-257line.pem", + "type": "file", + "name": "dsa-257line.pem", + "base_name": "dsa-257line", + "extension": ".pem", + "size": 1308, + "date": "2017-05-25", + "sha1": "b2fd9e0c2584178b378b278dfab176654509e797", + "md5": "1415fb7d3df5f04ad75e812ac506d837", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-blankline.pem", + "type": "file", + "name": "dsa-blankline.pem", + "base_name": "dsa-blankline", + "extension": ".pem", + "size": 1312, + "date": "2017-05-25", + "sha1": "f157fcd372713f92ee523cb124a56b01efcc5097", + "md5": "cb444a3ed1f4e1965c98178b572c5fef", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-comment.pem", + "type": "file", + "name": "dsa-comment.pem", + "base_name": "dsa-comment", + "extension": ".pem", + "size": 1377, + "date": "2017-05-25", + "sha1": "bcd20748e62b8db1429c5e5749172c1b0f45ecb2", + "md5": "aa724cda291ebb8b1e3c6f93872fc14f", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-corruptedheader.pem", + "type": "file", + "name": "dsa-corruptedheader.pem", + "base_name": "dsa-corruptedheader", + "extension": ".pem", + "size": 1311, + "date": "2017-05-25", + "sha1": "6425fd97c457753875770419b3a5d33db3d5b198", + "md5": "f1e3a3e29899f19eb1af81cf683a8661", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-corruptiv.pem", + "type": "file", + "name": "dsa-corruptiv.pem", + "base_name": "dsa-corruptiv", + "extension": ".pem", + "size": 1311, + "date": "2017-05-25", + "sha1": "10db92b20f2c6ecb06cd34bf8b595523d1727e2a", + "md5": "25e64835146ca8031f78e4444053258e", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-earlypad.pem", + "type": "file", + "name": "dsa-earlypad.pem", + "base_name": "dsa-earlypad", + "extension": ".pem", + "size": 1315, + "date": "2017-05-25", + "sha1": "4c49143cb012dcd42a2d049b2690bcb290b15d41", + "md5": "9475a36dfa52cd05f98bb2b733d1c70e", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-extrapad.pem", + "type": "file", + "name": "dsa-extrapad.pem", + "base_name": "dsa-extrapad", + "extension": ".pem", + "size": 1316, + "date": "2017-05-25", + "sha1": "554b76223a972f4f217568d47f498c20b8c1ef30", + "md5": "89165bbded17322283c8e8fc1bb0aad6", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-infixwhitespace.pem", + "type": "file", + "name": "dsa-infixwhitespace.pem", + "base_name": "dsa-infixwhitespace", + "extension": ".pem", + "size": 1319, + "date": "2017-05-25", + "sha1": "925dcb5753c0c2145560e538f4e9fb951dec28d6", + "md5": "c049127294c5eb1e6d92c20c6d31a9a9", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-junk.pem", + "type": "file", + "name": "dsa-junk.pem", + "base_name": "dsa-junk", + "extension": ".pem", + "size": 1320, + "date": "2017-05-25", + "sha1": "b259fa32bb466474026ad33c4f445c9312099c36", + "md5": "f4e0f1be8f3c5fa33778e31060b5d29b", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-leadingwhitespace.pem", + "type": "file", + "name": "dsa-leadingwhitespace.pem", + "base_name": "dsa-leadingwhitespace", + "extension": ".pem", + "size": 1461, + "date": "2017-05-25", + "sha1": "e475599e1b19cffff3a1735bc514c240fccee8a9", + "md5": "aad3eab6b2488ef1bd5bc315e00da2a3", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-longline.pem", + "type": "file", + "name": "dsa-longline.pem", + "base_name": "dsa-longline", + "extension": ".pem", + "size": 1311, + "date": "2017-05-25", + "sha1": "c2d546d09f915aca23dfdf020752005722997cda", + "md5": "8b447acb17c64b54e9e818a5d5b101b5", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-misalignedpad.pem", + "type": "file", + "name": "dsa-misalignedpad.pem", + "base_name": "dsa-misalignedpad", + "extension": ".pem", + "size": 1313, + "date": "2017-05-25", + "sha1": "42374d8e20f4f30e10b4cda81d1f793178c1f863", + "md5": "0b379243086e1d301620ba18ffb28898", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-onecolumn.pem", + "type": "file", + "name": "dsa-onecolumn.pem", + "base_name": "dsa-onecolumn", + "extension": ".pem", + "size": 2445, + "date": "2017-05-25", + "sha1": "094fce522951d6eb33eae87ee7bba401b98aad8c", + "md5": "58c5c6cbd284dddb101b93ec1f3a7235", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-oneline.pem", + "type": "file", + "name": "dsa-oneline.pem", + "base_name": "dsa-oneline", + "extension": ".pem", + "size": 1294, + "date": "2017-05-25", + "sha1": "a11f78111b82695a000b7fcd7c8f53282e9de7bc", + "md5": "edb67d67c4af0fa47d84a8350183b743", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-onelineheader.pem", + "type": "file", + "name": "dsa-onelineheader.pem", + "base_name": "dsa-onelineheader", + "extension": ".pem", + "size": 1311, + "date": "2017-05-25", + "sha1": "4491cebf86dce9165f57c52048a088853d7de5f0", + "md5": "9e4cc989d1b6e0f39a8e8ec0e39f4463", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-shortandlongline.pem", + "type": "file", + "name": "dsa-shortandlongline.pem", + "base_name": "dsa-shortandlongline", + "extension": ".pem", + "size": 1311, + "date": "2017-05-25", + "sha1": "8b0bae714a8608c3b5a5f6d391fa625dfdfb64c1", + "md5": "303df0f95e213d2e50a990b9cdba0dcf", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-shortline.pem", + "type": "file", + "name": "dsa-shortline.pem", + "base_name": "dsa-shortline", + "extension": ".pem", + "size": 1312, + "date": "2017-05-25", + "sha1": "b57639116382f88792299a5b6b426a702f86c3ae", + "md5": "dac05c55f8ee44f615a10e7d4d81ef7a", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-threecolumn.pem", + "type": "file", + "name": "dsa-threecolumn.pem", + "base_name": "dsa-threecolumn", + "extension": ".pem", + "size": 1677, + "date": "2017-05-25", + "sha1": "4bb26c37712224148fcc314316975e8ee3f60458", + "md5": "05dd8f68be78a796e528801bd1d59f86", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa-trailingwhitespace.pem", + "type": "file", + "name": "dsa-trailingwhitespace.pem", + "base_name": "dsa-trailingwhitespace", + "extension": ".pem", + "size": 1463, + "date": "2017-05-25", + "sha1": "5bca1d9c283eaab04aad4cf6f50aa826ff965c45", + "md5": "2bd0d4b95125095275ff5cf3242826cc", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsa.pem", + "type": "file", + "name": "dsa.pem", + "base_name": "dsa", + "extension": ".pem", + "size": 1311, + "date": "2017-05-25", + "sha1": "400599d043896190bb470b470b6b68b75ccd810a", + "md5": "34b076b4357d6bea6311cb1840f333fc", + "mime_type": "text/plain", + "file_type": "PEM DSA private key", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/dsaparam.pem", + "type": "file", + "name": "dsaparam.pem", + "base_name": "dsaparam", + "extension": ".pem", + "size": 820, + "date": "2017-05-25", + "sha1": "2588449939d3e0e3c96f05cef4d5369f66ff759f", + "md5": "6cd557aa4ef9222ae1a56388012fbc86", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/key.pem", + "type": "file", + "name": "key.pem", + "base_name": "key", + "extension": ".pem", + "size": 1704, + "date": "2017-05-25", + "sha1": "df056382563a896e3723bdf01e0de72bf557f370", + "md5": "5d2f8f25b701d756ecaf843d8c4658be", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/NOTES", + "type": "file", + "name": "NOTES", + "base_name": "NOTES", + "extension": "", + "size": 161, + "date": "2017-05-25", + "sha1": "62f55264df521f7f2b41a4d6d9bc45645032c192", + "md5": "38f628cadb1485751198cdd01cde6eff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/recipes/04-test_pem_data/wellknown", + "type": "file", + "name": "wellknown", + "base_name": "wellknown", + "extension": "", + "size": 10, + "date": "2017-05-25", + "sha1": "3da6c6f100ca58799eed2de496cef1d949f09656", + "md5": "9a7ceba0e43b01516cbd51951fe5ba57", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs", + "type": "directory", + "name": "smime-certs", + "base_name": "smime-certs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 0, + "size_count": 30433, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/ca.cnf", + "type": "file", + "name": "ca.cnf", + "base_name": "ca", + "extension": ".cnf", + "size": 1648, + "date": "2017-05-25", + "sha1": "702d7bd05ada6355620ace60e9b2cd4e0a1b3757", + "md5": "bc780a560ba5465b98d448c0e15e64b5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/mksmime-certs.sh", + "type": "file", + "name": "mksmime-certs.sh", + "base_name": "mksmime-certs", + "extension": ".sh", + "size": 3479, + "date": "2017-05-25", + "sha1": "f0836544f91df05dfd5352abd4b74b1d5c4dabaa", + "md5": "8b4909c39d10c56842559d12e47ace4e", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smdh.pem", + "type": "file", + "name": "smdh.pem", + "base_name": "smdh", + "extension": ".pem", + "size": 1957, + "date": "2017-05-25", + "sha1": "46c0385c885e4937e29136c487e17f286599e2c3", + "md5": "f75070af193d80a6d0a9e306308391e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smdsa1.pem", + "type": "file", + "name": "smdsa1.pem", + "base_name": "smdsa1", + "extension": ".pem", + "size": 2879, + "date": "2017-05-25", + "sha1": "7601a6ca4a6261a7f87f0e53d9b9d7487f23730c", + "md5": "c3763fdf879d18a7daaeb0d83b8b6aba", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smdsa2.pem", + "type": "file", + "name": "smdsa2.pem", + "base_name": "smdsa2", + "extension": ".pem", + "size": 2879, + "date": "2017-05-25", + "sha1": "8f673f67328bac7ebe7fa5f61fb74a42ef239454", + "md5": "c8b02a6eb28c301155f162a075703785", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smdsa3.pem", + "type": "file", + "name": "smdsa3.pem", + "base_name": "smdsa3", + "extension": ".pem", + "size": 2879, + "date": "2017-05-25", + "sha1": "ab4000cd117af90ad70afb1ff63af87d32efcaa7", + "md5": "75debabdb80528864b8b2840beef00a2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smdsap.pem", + "type": "file", + "name": "smdsap.pem", + "base_name": "smdsap", + "extension": ".pem", + "size": 455, + "date": "2017-05-25", + "sha1": "1a511707478e66e59ff17b66714cbc6a6b09cc8f", + "md5": "08cefbb36e3a6ba2e784eedca311b6de", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smec1.pem", + "type": "file", + "name": "smec1.pem", + "base_name": "smec1", + "extension": ".pem", + "size": 1214, + "date": "2017-05-25", + "sha1": "da33c70c32132d434bcde50cb7fbc8f774990a0e", + "md5": "c36fdfa77d7451f77f8097fe85574cad", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smec2.pem", + "type": "file", + "name": "smec2.pem", + "base_name": "smec2", + "extension": ".pem", + "size": 1231, + "date": "2017-05-25", + "sha1": "94dce8f10defc6a856c39cea9a1409187800a93e", + "md5": "b4cefadecd233d0d6db397ad119bf2ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smroot.pem", + "type": "file", + "name": "smroot.pem", + "base_name": "smroot", + "extension": ".pem", + "size": 2953, + "date": "2017-05-25", + "sha1": "0fb9b3ad55997ffcfe57f2ceb0eeafd226496a25", + "md5": "af32f967ab33a40dd103b9ab9c3e23c8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smrsa1.pem", + "type": "file", + "name": "smrsa1.pem", + "base_name": "smrsa1", + "extension": ".pem", + "size": 2953, + "date": "2017-05-25", + "sha1": "996d4e44566b4b2f663b8baeb28ff734fb807038", + "md5": "1fda00cc6f649a36805ab18d4693496f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smrsa2.pem", + "type": "file", + "name": "smrsa2.pem", + "base_name": "smrsa2", + "extension": ".pem", + "size": 2953, + "date": "2017-05-25", + "sha1": "cc5db75f219e2ae842482bbf35464a3fe0c4d7e4", + "md5": "b1e8ec208a461372942e7863738a74bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/smime-certs/smrsa3.pem", + "type": "file", + "name": "smrsa3.pem", + "base_name": "smrsa3", + "extension": ".pem", + "size": 2953, + "date": "2017-05-25", + "sha1": "d24e8b80ff5d47049a7fdac477cc566415de8864", + "md5": "fb294a639234e4926763dd4a0ecbb49e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests", + "type": "directory", + "name": "ssl-tests", + "base_name": "ssl-tests", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 39, + "dirs_count": 0, + "size_count": 543491, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/01-simple.conf", + "type": "file", + "name": "01-simple.conf", + "base_name": "01-simple", + "extension": ".conf", + "size": 1783, + "date": "2017-05-25", + "sha1": "6354af65cf4bc6a98511d594304824ff17107984", + "md5": "78730ab8e955d911b1b8d8d2f857d925", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/01-simple.conf.in", + "type": "file", + "name": "01-simple.conf.in", + "base_name": "01-simple.conf", + "extension": ".in", + "size": 1167, + "date": "2017-05-25", + "sha1": "9a44aa9521b32b43309e66bb4349de3d979ed43f", + "md5": "1be2875bf04a132fcef3ae1a1f7fea69", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/02-protocol-version.conf", + "type": "file", + "name": "02-protocol-version.conf", + "base_name": "02-protocol-version", + "extension": ".conf", + "size": 244082, + "date": "2017-05-25", + "sha1": "d5cd892a5e5b0b37802a06100e9d5114f92b5bf2", + "md5": "f0209e8931a472e9e678d24d98ec1233", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/02-protocol-version.conf.in", + "type": "file", + "name": "02-protocol-version.conf.in", + "base_name": "02-protocol-version.conf", + "extension": ".in", + "size": 490, + "date": "2017-05-25", + "sha1": "b0e56769007fd1d17ce28a139280915be4a16517", + "md5": "12a56dcecf619470ca5323cc9fb8f20a", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/03-custom_verify.conf", + "type": "file", + "name": "03-custom_verify.conf", + "base_name": "03-custom_verify", + "extension": ".conf", + "size": 5976, + "date": "2017-05-25", + "sha1": "51d1b8b310425b53ff968538188db6ad125329f7", + "md5": "908a59d92f091911a7617b0cc2efadf0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/03-custom_verify.conf.in", + "type": "file", + "name": "03-custom_verify.conf.in", + "base_name": "03-custom_verify.conf", + "extension": ".in", + "size": 3948, + "date": "2017-05-25", + "sha1": "203c6bdd25c511f57338b92e0d279cc5e8c786d7", + "md5": "3ec400262c7a1bb1b05d83a785675ba0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/04-client_auth.conf", + "type": "file", + "name": "04-client_auth.conf", + "base_name": "04-client_auth", + "extension": ".conf", + "size": 15840, + "date": "2017-05-25", + "sha1": "86d63884615b5ee381e9d886d67a4c60cd2c227f", + "md5": "db458c1691b9a456bdabd5b4f18a5af9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/04-client_auth.conf.in", + "type": "file", + "name": "04-client_auth.conf.in", + "base_name": "04-client_auth.conf", + "extension": ".in", + "size": 4213, + "date": "2017-05-25", + "sha1": "1cec3d3e3a2dc6cae8e571ad6ed0161954d258d5", + "md5": "6193ff87b1d4cea2971fdd6ba84f2f42", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/05-sni.conf", + "type": "file", + "name": "05-sni.conf", + "base_name": "05-sni", + "extension": ".conf", + "size": 5418, + "date": "2017-05-25", + "sha1": "c91964759759062e56a5249f7d89541404b8499b", + "md5": "7b09867f8ea55ab282f1f8cfe484af35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/05-sni.conf.in", + "type": "file", + "name": "05-sni.conf.in", + "base_name": "05-sni.conf", + "extension": ".in", + "size": 2850, + "date": "2017-05-25", + "sha1": "1fce91c3b5d8715950cafe8504cac78fc439f3be", + "md5": "3bdb28c00d9fc3124b832e556263910d", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/06-sni-ticket.conf", + "type": "file", + "name": "06-sni-ticket.conf", + "base_name": "06-sni-ticket", + "extension": ".conf", + "size": 19043, + "date": "2017-05-25", + "sha1": "5be7e0491a78d93c7367e5b5e37ecb29135b4f05", + "md5": "584d697a7ef286c87606ed182ac5ab03", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/06-sni-ticket.conf.in", + "type": "file", + "name": "06-sni-ticket.conf.in", + "base_name": "06-sni-ticket.conf", + "extension": ".in", + "size": 2684, + "date": "2017-05-25", + "sha1": "bbb87ab789c143eca5c675df83d554826b78214c", + "md5": "141b0aeb2e7d931a0bd45d9fb572f585", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/07-dtls-protocol-version.conf", + "type": "file", + "name": "07-dtls-protocol-version.conf", + "base_name": "07-dtls-protocol-version", + "extension": ".conf", + "size": 43556, + "date": "2017-05-25", + "sha1": "9fa0b2d28d0fc5212bd886bacfa411e1ed8e2ae8", + "md5": "ceeb32aea8cc8a86bb7fc4ca27d1d575", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/07-dtls-protocol-version.conf.in", + "type": "file", + "name": "07-dtls-protocol-version.conf.in", + "base_name": "07-dtls-protocol-version.conf", + "extension": ".in", + "size": 492, + "date": "2017-05-25", + "sha1": "b263b254440ce032233aea7a0629893db4360876", + "md5": "fea942900c3840bf007467b13e7cc28b", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/08-npn.conf", + "type": "file", + "name": "08-npn.conf", + "base_name": "08-npn", + "extension": ".conf", + "size": 24132, + "date": "2017-05-25", + "sha1": "d73764a03d3fc0c65b6870729d2c280b53f88706", + "md5": "184020cae24a7750db8d963c2e6c9a0c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/08-npn.conf.in", + "type": "file", + "name": "08-npn.conf.in", + "base_name": "08-npn.conf", + "extension": ".in", + "size": 10411, + "date": "2017-05-25", + "sha1": "d80f1bdb9c1768ac2e6f868fd20e7613d2a2ea37", + "md5": "cde83aea6270a60981e772b5cba31d67", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/09-alpn.conf", + "type": "file", + "name": "09-alpn.conf", + "base_name": "09-alpn", + "extension": ".conf", + "size": 18604, + "date": "2017-05-25", + "sha1": "a8714db4b64f49430ac0586e952078cc14823696", + "md5": "a5e690a084246f18386e267bb28fe2df", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/09-alpn.conf.in", + "type": "file", + "name": "09-alpn.conf.in", + "base_name": "09-alpn.conf", + "extension": ".in", + "size": 7962, + "date": "2017-05-25", + "sha1": "08c3908ced7f71624031f3412c136a35abc40fd0", + "md5": "deaed7a39cc1ec93118c0e826e33c9c4", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/10-resumption.conf", + "type": "file", + "name": "10-resumption.conf", + "base_name": "10-resumption", + "extension": ".conf", + "size": 31378, + "date": "2017-05-25", + "sha1": "1e42fcbb44fec86d672bc6e48ada2aae407fedad", + "md5": "44a297d420f0d6d86e58eb2da6d0edc0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/10-resumption.conf.in", + "type": "file", + "name": "10-resumption.conf.in", + "base_name": "10-resumption.conf", + "extension": ".in", + "size": 506, + "date": "2017-05-25", + "sha1": "dd1fed549f01a769462fd6d8286aaba252cd792b", + "md5": "f08c9f332a26c2aab55dec99f6125f1f", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/11-dtls_resumption.conf", + "type": "file", + "name": "11-dtls_resumption.conf", + "base_name": "11-dtls_resumption", + "extension": ".conf", + "size": 14174, + "date": "2017-05-25", + "sha1": "476589a7bdd0338a72b78b9e3a95829ea2ed4c8b", + "md5": "a63c72af3d437b9e3137ab3d87e0f4bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/11-dtls_resumption.conf.in", + "type": "file", + "name": "11-dtls_resumption.conf.in", + "base_name": "11-dtls_resumption.conf", + "extension": ".in", + "size": 507, + "date": "2017-05-25", + "sha1": "92abcc8c13e36e1557da9e64ecb191cf9a7a0cb0", + "md5": "66c4241132e1b9408baed79040626b34", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/12-ct.conf", + "type": "file", + "name": "12-ct.conf", + "base_name": "12-ct", + "extension": ".conf", + "size": 5103, + "date": "2017-05-25", + "sha1": "81f62e391cb289a213af68932e35b6ad8bb1e83a", + "md5": "494b04d7a2189553a3f64053e0146eff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/12-ct.conf.in", + "type": "file", + "name": "12-ct.conf.in", + "base_name": "12-ct.conf", + "extension": ".in", + "size": 3272, + "date": "2017-05-25", + "sha1": "0839ba7586fe2ff83c253418cb71947c0545c2bd", + "md5": "957bdcda9537abfa83c98157dd3c149e", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/13-fragmentation.conf", + "type": "file", + "name": "13-fragmentation.conf", + "base_name": "13-fragmentation", + "extension": ".conf", + "size": 10941, + "date": "2017-05-25", + "sha1": "99705237f3c51b32727aafbfdc0b88a3a04d08db", + "md5": "5ae1f9abf9a291f757e42230d6e57bb4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/13-fragmentation.conf.in", + "type": "file", + "name": "13-fragmentation.conf.in", + "base_name": "13-fragmentation.conf", + "extension": ".in", + "size": 4655, + "date": "2017-05-25", + "sha1": "7b0cd7d107258eeb2a9246e7a64ce9ef56b9b361", + "md5": "bc8e1d4bf4692b7ae718c36ceeedf3ba", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/14-curves.conf", + "type": "file", + "name": "14-curves.conf", + "base_name": "14-curves", + "extension": ".conf", + "size": 18210, + "date": "2017-05-25", + "sha1": "30ee0dd1acbe07205a17ce224c3fff4e3da94a8d", + "md5": "1056a3e5cf5053ff59a157f891c7ed14", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/14-curves.conf.in", + "type": "file", + "name": "14-curves.conf.in", + "base_name": "14-curves.conf", + "extension": ".in", + "size": 1171, + "date": "2017-05-25", + "sha1": "a6be8981af507f66e6ba0c11572a9f41bb0ac056", + "md5": "d400acbd8d63470416f84f184c3d6239", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/15-certstatus.conf", + "type": "file", + "name": "15-certstatus.conf", + "base_name": "15-certstatus", + "extension": ".conf", + "size": 1365, + "date": "2017-05-25", + "sha1": "4a795b254a43f9d7eeb344ea6f5db5f506154a12", + "md5": "d4955c9febdcfc4123bfbb3cf87f1f26", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/15-certstatus.conf.in", + "type": "file", + "name": "15-certstatus.conf.in", + "base_name": "15-certstatus.conf", + "extension": ".in", + "size": 1015, + "date": "2017-05-25", + "sha1": "20630f2c0bd5c1fef2f06b2df9a479022dce7d4a", + "md5": "d7d5d729faf5ec03a3c01569ef3c9b98", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/16-certstatus.conf", + "type": "file", + "name": "16-certstatus.conf", + "base_name": "16-certstatus", + "extension": ".conf", + "size": 0, + "date": "2017-05-25", + "sha1": null, + "md5": null, + "mime_type": "inode/x-empty", + "file_type": "empty", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/16-dtls-certstatus.conf", + "type": "file", + "name": "16-dtls-certstatus.conf", + "base_name": "16-dtls-certstatus", + "extension": ".conf", + "size": 1367, + "date": "2017-05-25", + "sha1": "4714f745b8ab9a544b1d83c808877803333fdf43", + "md5": "b950387a3d7202a2418e030a9c8651a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/16-dtls-certstatus.conf.in", + "type": "file", + "name": "16-dtls-certstatus.conf.in", + "base_name": "16-dtls-certstatus.conf", + "extension": ".in", + "size": 1022, + "date": "2017-05-25", + "sha1": "b895f45cbee8c19f5d3b5320d4df5a0799053edf", + "md5": "36981c28a6136e500e2da3ccf2ebb023", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/17-renegotiate.conf", + "type": "file", + "name": "17-renegotiate.conf", + "base_name": "17-renegotiate", + "extension": ".conf", + "size": 8599, + "date": "2017-05-25", + "sha1": "47495fd4882a3d4b77508e3f582f26b041ed4da3", + "md5": "742b9bec9ed7d57bdd8819cb7ab55170", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/17-renegotiate.conf.in", + "type": "file", + "name": "17-renegotiate.conf.in", + "base_name": "17-renegotiate.conf", + "extension": ".in", + "size": 5325, + "date": "2017-05-25", + "sha1": "014ef881025a69d6f8dd47a3948fd27e4a8eef97", + "md5": "7e6aa64a705001cf53f8b2541dc41063", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/18-dtls-renegotiate.conf", + "type": "file", + "name": "18-dtls-renegotiate.conf", + "base_name": "18-dtls-renegotiate", + "extension": ".conf", + "size": 7639, + "date": "2017-05-25", + "sha1": "951e457b42d4ba2d366693a458e1460fa85ddd29", + "md5": "108534e51572ba60250da46eebdb5125", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/18-dtls-renegotiate.conf.in", + "type": "file", + "name": "18-dtls-renegotiate.conf.in", + "base_name": "18-dtls-renegotiate.conf", + "extension": ".in", + "size": 5250, + "date": "2017-05-25", + "sha1": "6ea3df9d95155276af0907111400f9f2b15a2a0b", + "md5": "c1f8419bbf346f78b6e44e447614a3e5", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/protocol_version.pm", + "type": "file", + "name": "protocol_version.pm", + "base_name": "protocol_version", + "extension": ".pm", + "size": 8529, + "date": "2017-05-25", + "sha1": "7373b7c767b8810d8b96ccf03a5f445866f3d042", + "md5": "ccaa3e8bb243a4d3a4dcf7dc847a9636", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/ssl-tests/ssltests_base.pm", + "type": "file", + "name": "ssltests_base.pm", + "base_name": "ssltests_base", + "extension": ".pm", + "size": 812, + "date": "2017-05-25", + "sha1": "6728be96780a84fc319b76080af423b7bf00da60", + "md5": "eff72b222232ca8f03e12b87318eeb0c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testlib", + "type": "directory", + "name": "testlib", + "base_name": "testlib", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 2, + "size_count": 35395, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testlib/OpenSSL", + "type": "directory", + "name": "OpenSSL", + "base_name": "OpenSSL", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 1, + "size_count": 35395, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testlib/OpenSSL/Test.pm", + "type": "file", + "name": "Test.pm", + "base_name": "Test", + "extension": ".pm", + "size": 28259, + "date": "2017-05-25", + "sha1": "c5b1c78da8416d797244e4acb4375a712483bae1", + "md5": "307c606fffb1f08f1bef36782d410f47", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testlib/OpenSSL/Test", + "type": "directory", + "name": "Test", + "base_name": "Test", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 7136, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testlib/OpenSSL/Test/Simple.pm", + "type": "file", + "name": "Simple.pm", + "base_name": "Simple", + "extension": ".pm", + "size": 1967, + "date": "2017-05-25", + "sha1": "235d4af3a41533f1bccf15663e555d229ed4f482", + "md5": "1fc754cd556094a1bbe0213b356998fc", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/test/testlib/OpenSSL/Test/Utils.pm", + "type": "file", + "name": "Utils.pm", + "base_name": "Utils", + "extension": ".pm", + "size": 5169, + "date": "2017-05-25", + "sha1": "15c2c22981e79227c6643f91e0fae8935ab10e5a", + "md5": "3308956636919510a4c3ec3791a04b71", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/tools", + "type": "directory", + "name": "tools", + "base_name": "tools", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 6422, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/tools/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 209, + "date": "2017-05-25", + "sha1": "4816112511b19b0407d6a795970f184cacdca249", + "md5": "86a0b8345f945a948efda2c1d0b1246d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/tools/c_rehash.in", + "type": "file", + "name": "c_rehash.in", + "base_name": "c_rehash", + "extension": ".in", + "size": 6213, + "date": "2017-05-25", + "sha1": "9ea451bc69bc407167bd6afd5ee61b68f5d36167", + "md5": "8405ef0862c932eacd7b9ec5801e3e86", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 6, + "end_line": 9, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util", + "type": "directory", + "name": "util", + "base_name": "util", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 35, + "dirs_count": 4, + "size_count": 532748, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/build.info", + "type": "file", + "name": "build.info", + "base_name": "build", + "extension": ".info", + "size": 316, + "date": "2017-05-25", + "sha1": "fda8dd3506b893260649bb05da8db3715fbfa8ca", + "md5": "a3e88c639651662aa98dc3ddc090ea09", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/ck_errf.pl", + "type": "file", + "name": "ck_errf.pl", + "base_name": "ck_errf", + "extension": ".pl", + "size": 1541, + "date": "2017-05-25", + "sha1": "f9b74b612ef46968b1b826f393d9b31f5d858844", + "md5": "089b3becca339d2af2749fe10ccab23a", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/copy.pl", + "type": "file", + "name": "copy.pl", + "base_name": "copy", + "extension": ".pl", + "size": 1416, + "date": "2017-05-25", + "sha1": "671cf5165246d57f58878011d5c6c9e636649f62", + "md5": "c0e68d43fcaece674e47a9640310824b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2005-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/dofile.pl", + "type": "file", + "name": "dofile.pl", + "base_name": "dofile", + "extension": ".pl", + "size": 5940, + "date": "2017-05-25", + "sha1": "6e5b032c40c9b67fd3c7715c45b09b1a4165f96e", + "md5": "5fdc549af0bdd260f65cfde8a6aab309", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/find-undoc-api.pl", + "type": "file", + "name": "find-undoc-api.pl", + "base_name": "find-undoc-api", + "extension": ".pl", + "size": 1829, + "date": "2017-05-25", + "sha1": "7ee6e6b2cd8600ebbd115b3c0ac53b2c21767959", + "md5": "bb87875ff12fd0a54cb0865fb115b29f", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/find-unused-errs", + "type": "file", + "name": "find-unused-errs", + "base_name": "find-unused-errs", + "extension": "", + "size": 1022, + "date": "2017-05-25", + "sha1": "6da4f44d6b6153ecf9a461110bf9be96d7d9d5c4", + "md5": "53cdc58b5e8099a007c01e3e204acfca", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/fipslink.pl", + "type": "file", + "name": "fipslink.pl", + "base_name": "fipslink", + "extension": ".pl", + "size": 3074, + "date": "2017-05-25", + "sha1": "65de2bcd2f83b884d88d6bc39fd64276dccb2083", + "md5": "7174ab495b92dfc338a4f43b79ec8071", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/incore", + "type": "file", + "name": "incore", + "base_name": "incore", + "extension": "", + "size": 12221, + "date": "2017-05-25", + "sha1": "17ea254033424294a2a0c4e6e874fefc9228dd4f", + "md5": "82003194b8607f453ee62da72a672246", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2011-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 14, + "end_line": 15 + }, + { + "statements": [], + "holders": [], + "authors": [ + "" + ], + "start_line": 170, + "end_line": 170 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/indent.pro", + "type": "file", + "name": "indent.pro", + "base_name": "indent", + "extension": ".pro", + "size": 11659, + "date": "2017-05-25", + "sha1": "008b22278da3089539c212314c3d15f441ac761f", + "md5": "665228eca634e92eef2344d32db1ec0a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Prolog", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/libcrypto.num", + "type": "file", + "name": "libcrypto.num", + "base_name": "libcrypto", + "extension": ".num", + "size": 300342, + "date": "2017-05-25", + "sha1": "41dae7d51d06b538d54aaa00459456d0f30fe6ac", + "md5": "4f35c1a85bc5318bef981687dd1dfd76", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/libssl.num", + "type": "file", + "name": "libssl.num", + "base_name": "libssl", + "extension": ".num", + "size": 27990, + "date": "2017-05-25", + "sha1": "5e8864a846e3445c097e53410d7a93fb4d64db73", + "md5": "1c1071d3f30c00cdf5b4f319b229bb55", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/local_shlib.com.in", + "type": "file", + "name": "local_shlib.com.in", + "base_name": "local_shlib.com", + "extension": ".in", + "size": 1057, + "date": "2017-05-25", + "sha1": "a5d6d34e7cf96e51dafe2bd05a85ea7b00cb25e9", + "md5": "68c29c73eb8e8e5d479bfebcb70b3176", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/mkbuildinf.pl", + "type": "file", + "name": "mkbuildinf.pl", + "base_name": "mkbuildinf", + "extension": ".pl", + "size": 1101, + "date": "2017-05-25", + "sha1": "c70b03d399f5f2a8971dfbb4241cf5bef840bd3e", + "md5": "e515d0487093cf944881c0824abd61f5", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/mkcerts.sh", + "type": "file", + "name": "mkcerts.sh", + "base_name": "mkcerts", + "extension": ".sh", + "size": 3784, + "date": "2017-05-25", + "sha1": "c42d2755666149d754af70a3c8d03afd36847e3d", + "md5": "9a584abe3de6d91cc64812f897c75386", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/mkdef.pl", + "type": "file", + "name": "mkdef.pl", + "base_name": "mkdef", + "extension": ".pl", + "size": 50962, + "date": "2017-05-25", + "sha1": "b363c834d5fa611b904c2a5a55c2552e5a972b4c", + "md5": "2aeb98f8431f2ca31010e4d26ac22eb7", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1995-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/mkdir-p.pl", + "type": "file", + "name": "mkdir-p.pl", + "base_name": "mkdir-p", + "extension": ".pl", + "size": 974, + "date": "2017-05-25", + "sha1": "62579e7abaa7837f524b66181a7034c842e2b4c3", + "md5": "33138a31c6c5febf122e1c6a78857680", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/mkerr.pl", + "type": "file", + "name": "mkerr.pl", + "base_name": "mkerr", + "extension": ".pl", + "size": 20056, + "date": "2017-05-25", + "sha1": "54eeca71cc5c0cb483f2e9b6a405ff25c771e093", + "md5": "5590b9068ed590bfea73958e05cae595", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 432, + "end_line": 435, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 592, + "end_line": 595, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 1999-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1995-$YEAR The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 430, + "end_line": 430 + }, + { + "statements": [ + "Copyright 1995-$YEAR The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 589, + "end_line": 590 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/mkrc.pl", + "type": "file", + "name": "mkrc.pl", + "base_name": "mkrc", + "extension": ".pl", + "size": 2344, + "date": "2017-05-25", + "sha1": "463580b61348dee101ebccdf1c6aa89ce32fa886", + "md5": "b2a698ae8062fcb70f64c91156e3d051", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2006-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 1998-2016 The OpenSSL Authors." + ], + "holders": [ + "OpenSSL Authors." + ], + "authors": [], + "start_line": 71, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/openssl-format-source", + "type": "file", + "name": "openssl-format-source", + "base_name": "openssl-format-source", + "extension": "", + "size": 5437, + "date": "2017-05-25", + "sha1": "1dfca854d8f441435490ac69b7469e2fa4123c30", + "md5": "2446b4694f4f9bb774ee8dab22971328", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 8, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/opensslwrap.sh", + "type": "file", + "name": "opensslwrap.sh", + "base_name": "opensslwrap", + "extension": ".sh", + "size": 977, + "date": "2017-05-25", + "sha1": "c2d8b92b4c681d1a58865fd64ba4bbd313c9bab5", + "md5": "ce58dfa10147eec1cefd3aaee89d1501", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/point.sh", + "type": "file", + "name": "point.sh", + "base_name": "point", + "extension": ".sh", + "size": 152, + "date": "2017-05-25", + "sha1": "3e730e92aff64047bce421f4c4e154060b16f4a2", + "md5": "9f2245ea5003b81a23605d243adbbe8d", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/process_docs.pl", + "type": "file", + "name": "process_docs.pl", + "base_name": "process_docs", + "extension": ".pl", + "size": 8609, + "date": "2017-05-25", + "sha1": "83e752e69e3446f106a9a0bce35d2ad1149591c4", + "md5": "8efb466b8abd1eaf3ea3194997c332a1", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + }, + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 241, + "end_line": 244, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + }, + { + "statements": [ + "Copyright 2013-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 237, + "end_line": 239 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/selftest.pl", + "type": "file", + "name": "selftest.pl", + "base_name": "selftest", + "extension": ".pl", + "size": 5028, + "date": "2017-05-25", + "sha1": "3aa92f01fecdf57736e0ae20aa7f70329d603245", + "md5": "c2cd1fa1257f003c305d7ff8aa2f591b", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2000-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/shlib_wrap.sh.in", + "type": "file", + "name": "shlib_wrap.sh.in", + "base_name": "shlib_wrap.sh", + "extension": ".in", + "size": 4219, + "date": "2017-05-25", + "sha1": "cbfc430aa0e1a085ceb475670b898b0993dc064b", + "md5": "6b3d42cd8f10ca8b5ff62f22fdb9564b", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/su-filter.pl", + "type": "file", + "name": "su-filter.pl", + "base_name": "su-filter", + "extension": ".pl", + "size": 6603, + "date": "2017-05-25", + "sha1": "d440566201bd3ac496dee6e033472707f9f78161", + "md5": "e7040bee2021eb64e816d72408fb78f2", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/unlocal_shlib.com.in", + "type": "file", + "name": "unlocal_shlib.com.in", + "base_name": "unlocal_shlib.com", + "extension": ".in", + "size": 862, + "date": "2017-05-25", + "sha1": "e5707d00fa2b2acac2b2cf0ac98b723f76676172", + "md5": "73ebc0ffa81d280652eab0f73441d72a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/with_fallback.pm", + "type": "file", + "name": "with_fallback.pm", + "base_name": "with_fallback", + "extension": ".pm", + "size": 648, + "date": "2017-05-25", + "sha1": "5517df8d79775e2996a1f2e830a2916f34a39080", + "md5": "bf1434f67d54184097dce7cb176416eb", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/perl", + "type": "directory", + "name": "perl", + "base_name": "perl", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 2, + "size_count": 3907, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/perl/OpenSSL", + "type": "directory", + "name": "OpenSSL", + "base_name": "OpenSSL", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 3907, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/perl/OpenSSL/Util", + "type": "directory", + "name": "Util", + "base_name": "Util", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3907, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/perl/OpenSSL/Util/Pod.pm", + "type": "file", + "name": "Pod.pm", + "base_name": "Pod", + "extension": ".pm", + "size": 3907, + "date": "2017-05-25", + "sha1": "f41084985b5568e39fa4e4f1b93299b48817153f", + "md5": "cbfd6ea927cc67239d89c2c9cf47cf44", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/TLSProxy", + "type": "directory", + "name": "TLSProxy", + "base_name": "TLSProxy", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 48678, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/TLSProxy/ClientHello.pm", + "type": "file", + "name": "ClientHello.pm", + "base_name": "ClientHello", + "extension": ".pm", + "size": 6098, + "date": "2017-05-25", + "sha1": "dc15365c795708c07d33f81e93b3613922f4cd67", + "md5": "cbc1585681cf50b1a49540861e16b32a", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/TLSProxy/Message.pm", + "type": "file", + "name": "Message.pm", + "base_name": "Message", + "extension": ".pm", + "size": 13265, + "date": "2017-05-25", + "sha1": "bfeec23b4531939ad2846ef8a178185f222b33b9", + "md5": "b392c67d96304c8f11578178101aa3b1", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/TLSProxy/NewSessionTicket.pm", + "type": "file", + "name": "NewSessionTicket.pm", + "base_name": "NewSessionTicket", + "extension": ".pm", + "size": 1690, + "date": "2017-05-25", + "sha1": "b1a3200c29ffc2b9d38bdf93059447512588ed6f", + "md5": "9e88bec4ca49ad6324bd8ccd0999fecc", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/TLSProxy/Proxy.pm", + "type": "file", + "name": "Proxy.pm", + "base_name": "Proxy", + "extension": ".pm", + "size": 12546, + "date": "2017-05-25", + "sha1": "df508c53a3fb36b01ef76bcb718c25509a6d46c5", + "md5": "cdd68a876584250cd29302bef963cfae", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/TLSProxy/Record.pm", + "type": "file", + "name": "Record.pm", + "base_name": "Record", + "extension": ".pm", + "size": 7145, + "date": "2017-05-25", + "sha1": "0cfe128188b3da1033012fa17689dbe4a9ace5ec", + "md5": "1f8423dd59c3f3f2a907e846429d3ca8", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/TLSProxy/ServerHello.pm", + "type": "file", + "name": "ServerHello.pm", + "base_name": "ServerHello", + "extension": ".pm", + "size": 5195, + "date": "2017-05-25", + "sha1": "c9bb235c68c8d0afb8907c906c0cf5e9e35fe5dd", + "md5": "51465126632612d0d5c3950f1eb43ad1", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/util/TLSProxy/ServerKeyExchange.pm", + "type": "file", + "name": "ServerKeyExchange.pm", + "base_name": "ServerKeyExchange", + "extension": ".pm", + "size": 2739, + "date": "2017-05-25", + "sha1": "2673abab13c6b95387bd6c3278c86a2756464e33", + "md5": "ded97878a16a2c1fbdda517185c97f08", + "mime_type": "text/plain", + "file_type": "Perl5 module source, ASCII text", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 3, + "end_line": 6, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 1 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS", + "type": "directory", + "name": "VMS", + "base_name": "VMS", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 12345, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS/engine.opt", + "type": "file", + "name": "engine.opt", + "base_name": "engine", + "extension": ".opt", + "size": 75, + "date": "2017-05-25", + "sha1": "5886e8c6f78e32f1516ea7642f4030d06f8884c0", + "md5": "a2684c392f3218aeb90dace5575e8f5e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS/openssl_ivp.com.in", + "type": "file", + "name": "openssl_ivp.com.in", + "base_name": "openssl_ivp.com", + "extension": ".in", + "size": 1865, + "date": "2017-05-25", + "sha1": "6e6e6820a85b72867899e236fb2044f50bfa5632", + "md5": "2a560e6cda5ff0754f26af4720110879", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS/openssl_shutdown.com.in", + "type": "file", + "name": "openssl_shutdown.com.in", + "base_name": "openssl_shutdown.com", + "extension": ".in", + "size": 1397, + "date": "2017-05-25", + "sha1": "4439fbb208d67a59749a1235d5c4d93fe8faac86", + "md5": "e886077e890b22bcc717b113dec51436", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS/openssl_startup.com.in", + "type": "file", + "name": "openssl_startup.com.in", + "base_name": "openssl_startup.com", + "extension": ".in", + "size": 4531, + "date": "2017-05-25", + "sha1": "25f9de3f5a081ea2d4bbfbea7bc784579c719585", + "md5": "d0e4f303815db020c1467f1830cc4cee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS/openssl_utils.com.in", + "type": "file", + "name": "openssl_utils.com.in", + "base_name": "openssl_utils.com", + "extension": ".in", + "size": 327, + "date": "2017-05-25", + "sha1": "3345fec233c6dc1c2c3a5100df9e145c07c6814f", + "md5": "42e840c2c48d500d10eaacdd49ab29e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS/test-includes.com", + "type": "file", + "name": "test-includes.com", + "base_name": "test-includes", + "extension": ".com", + "size": 752, + "date": "2017-05-25", + "sha1": "72619f09fccf082a9040890a158f135738412b49", + "md5": "7624134f20b0cce73cff758fe0b2e3f2", + "mime_type": "text/plain", + "file_type": "DCL command file, ASCII text", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS/translatesyms.pl", + "type": "file", + "name": "translatesyms.pl", + "base_name": "translatesyms", + "extension": ".pl", + "size": 1954, + "date": "2017-05-25", + "sha1": "3d6098e2a8362898f7a59619e4e86b096ca25be2", + "md5": "1cfd4ee0df7387ba4ca6a6638dc7f4de", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "openssl-1.1.0f/VMS/VMSify-conf.pl", + "type": "file", + "name": "VMSify-conf.pl", + "base_name": "VMSify-conf", + "extension": ".pl", + "size": 1444, + "date": "2017-05-25", + "sha1": "099c6406c0ccc7425cdc0d7ac4703343d480c59a", + "md5": "1e53020c0dbb0472ac0be70ae5aa6d14", + "mime_type": "text/x-perl", + "file_type": "Perl script, ASCII text executable", + "programming_language": "Perl", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "openssl", + "score": 100.0, + "short_name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:openssl", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 7, + "matched_rule": { + "identifier": "openssl_8.RULE", + "license_choice": false, + "licenses": [ + "openssl" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2004-2016 The OpenSSL Project" + ], + "holders": [ + "The OpenSSL Project" + ], + "authors": [], + "start_line": 1, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/permissive_add_public_domain_new.json b/tests/data/deltacode/permissive_add_public_domain_new.json new file mode 100644 index 00000000..9462b286 --- /dev/null +++ b/tests/data/deltacode/permissive_add_public_domain_new.json @@ -0,0 +1,185 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post32.fea65d35a", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\licenses\\permissive_add_public_domain\\permissive_add_public_domain_new", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\permissive_add_public_domain_new.json", + "--license": true, + "--package": true + }, + "files_count": 2, + "files": [ + { + "path": "permissive_add_public_domain_new", + "type": "directory", + "name": "permissive_add_public_domain_new", + "base_name": "permissive_add_public_domain_new", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 536, + "scan_errors": [] + }, + { + "path": "permissive_add_public_domain_new/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 336, + "date": "2018-03-16", + "sha1": "607fcf84a511493374ac2f2ca546b7020f41d59d", + "md5": "149039f50eaf6d46c220e6dede17a1a4", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_63.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + }, + { + "key": "fsf-free", + "score": 95.0, + "short_name": "FSF Free Software License", + "category": "Public Domain", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.fsf.org/licensing/licenses/", + "text_url": "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:fsf-free", + "spdx_license_key": "FSFUL", + "spdx_url": "https://spdx.org/licenses/FSFUL", + "start_line": 6, + "end_line": 6, + "matched_rule": { + "identifier": "fsf-free.LICENSE", + "license_choice": false, + "licenses": [ + "fsf-free" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "permissive_add_public_domain_new/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/permissive_add_public_domain_old.json b/tests/data/deltacode/permissive_add_public_domain_old.json new file mode 100644 index 00000000..2f81ac60 --- /dev/null +++ b/tests/data/deltacode/permissive_add_public_domain_old.json @@ -0,0 +1,164 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post32.fea65d35a", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\licenses\\permissive_add_public_domain\\permissive_add_public_domain_old", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\permissive_add_public_domain_old.json", + "--license": true, + "--package": true + }, + "files_count": 2, + "files": [ + { + "path": "permissive_add_public_domain_old", + "type": "directory", + "name": "permissive_add_public_domain_old", + "base_name": "permissive_add_public_domain_old", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 400, + "scan_errors": [] + }, + { + "path": "permissive_add_public_domain_old/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 200, + "date": "2018-03-16", + "sha1": "84b647771481d39dd3a53f6dc210c26abac37748", + "md5": "3cb56efa7140478458dbaa2b30239845", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "permissive_add_public_domain_old/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/react-15.6.1.json b/tests/data/deltacode/react-15.6.1.json new file mode 100644 index 00000000..631d2f1e --- /dev/null +++ b/tests/data/deltacode/react-15.6.1.json @@ -0,0 +1,71141 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post20.e447b94db", + "scancode_options": { + "input": "C:\\Users\\JMH\\Downloads\\facebook\\react-15.6.1", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\react-15.6.1.json", + "--license": true, + "--package": true + }, + "files_count": 1061, + "files": [ + { + "path": "react-15.6.1", + "type": "directory", + "name": "react-15.6.1", + "base_name": "react-15.6.1", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1061, + "dirs_count": 176, + "size_count": 60270800, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1", + "type": "directory", + "name": "react-15.6.1", + "base_name": "react-15.6.1", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1061, + "dirs_count": 175, + "size_count": 60270800, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.babelrc", + "type": "file", + "name": ".babelrc", + "base_name": ".babelrc", + "extension": "", + "size": 987, + "date": "2018-03-12", + "sha1": "adcd055ac9239528600654e1ef652925c470abf7", + "md5": "8901a2a0f82ef91a8f85b481bc840c49", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.editorconfig", + "type": "file", + "name": ".editorconfig", + "base_name": ".editorconfig", + "extension": "", + "size": 293, + "date": "2018-03-12", + "sha1": "fd8706bf84d9fafc61efba1ae990e6a6409b6b11", + "md5": "b2566240972f013baf8b5d17bafeb8e0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.eslintignore", + "type": "file", + "name": ".eslintignore", + "base_name": ".eslintignore", + "extension": "", + "size": 438, + "date": "2018-03-12", + "sha1": "a36ab712a41fdc0ea31ceb8160c1668a3c056344", + "md5": "b47fbe32bc4d881eb0f647050fc9b635", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.eslintrc.js", + "type": "file", + "name": ".eslintrc.js", + "base_name": ".eslintrc", + "extension": ".js", + "size": 1839, + "date": "2018-03-12", + "sha1": "61adbd726a70c66197ee74c483caa48a823f28e5", + "md5": "bcecfa8a853053bc79e08296661c3004", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.flowconfig", + "type": "file", + "name": ".flowconfig", + "base_name": ".flowconfig", + "extension": "", + "size": 1116, + "date": "2018-03-12", + "sha1": "9cb57e3a4010aa8d0b9e0d0cf7ec07b606818228", + "md5": "677e1d611aaa71327435e408e192097c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "INI", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.mailmap", + "type": "file", + "name": ".mailmap", + "base_name": ".mailmap", + "extension": "", + "size": 7519, + "date": "2018-03-12", + "sha1": "cfe7fcc8c48e540ba3f6d3332016fd2380c06d9a", + "md5": "0eeae953e6674be7a2ac9ed1738e6e0f", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.travis.yml", + "type": "file", + "name": ".travis.yml", + "base_name": ".travis", + "extension": ".yml", + "size": 5038, + "date": "2018-03-12", + "sha1": "30873e9814c76c87a8c6f2028208a1140fe6dc2c", + "md5": "e6d08fb45a32fd528232d44bb7bfbd28", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/AUTHORS", + "type": "file", + "name": "AUTHORS", + "base_name": "AUTHORS", + "extension": "", + "size": 25739, + "date": "2018-03-12", + "sha1": "07d238246532abfe7ae77c8b3519aac3ee6214f6", + "md5": "52912b9aa66fd401c5807f201162c0a6", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/CHANGELOG.md", + "type": "file", + "name": "CHANGELOG.md", + "base_name": "CHANGELOG", + "extension": ".md", + "size": 91275, + "date": "2018-03-12", + "sha1": "64f1110860b832e899eef56af86da1ffcd1ec48d", + "md5": "a4607cf14918b23e7c7bccf2df42651d", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 10.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 761, + "end_line": 761, + "matched_rule": { + "identifier": "bsd-new_169.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "ES2015 (ES6) Symbol (http://www.2ality.com/2014/12/es6-symbols.html)" + ], + "start_line": 547, + "end_line": 550 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/circle.yml", + "type": "file", + "name": "circle.yml", + "base_name": "circle", + "extension": ".yml", + "size": 1247, + "date": "2018-03-12", + "sha1": "f42d9a356f32f54d2d1784d19d2d6ecb5bdfacef", + "md5": "1298ef85732e2f6f19d4f4b829627729", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/CONTRIBUTING.md", + "type": "file", + "name": "CONTRIBUTING.md", + "base_name": "CONTRIBUTING", + "extension": ".md", + "size": 229, + "date": "2018-03-12", + "sha1": "29a10e969195e2951bfd629895c28426c3f15c3f", + "md5": "951f5e8cc19b9ad87b663e9f73eee784", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/Gruntfile.js", + "type": "file", + "name": "Gruntfile.js", + "base_name": "Gruntfile", + "extension": ".js", + "size": 5646, + "date": "2018-03-12", + "sha1": "234dbb14c287a230c2859cbf195c691d02474643", + "md5": "d12187da7358845b85a30fcd83a97b43", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/gulpfile.js", + "type": "file", + "name": "gulpfile.js", + "base_name": "gulpfile", + "extension": ".js", + "size": 8093, + "date": "2018-03-12", + "sha1": "5cf62554da6101091fe30503d4350aaf395c9ac4", + "md5": "a1e8f43487b547ab06f1d41f68465e92", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/LICENSE-docs", + "type": "file", + "name": "LICENSE-docs", + "base_name": "LICENSE-docs", + "extension": "", + "size": 18523, + "date": "2018-03-12", + "sha1": "e0599abcf2d5da6fb2c49494fb8ea75c00febfc3", + "md5": "f08cb95950e0afa533e7106e234d2cb8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "cc-by-4.0", + "score": 100.0, + "short_name": "CC-BY-4.0", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/4.0/", + "text_url": "http://creativecommons.org/licenses/by/4.0/legalcode", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-4.0", + "spdx_license_key": "CC-BY-4.0", + "spdx_url": "https://spdx.org/licenses/CC-BY-4.0", + "start_line": 1, + "end_line": 393, + "matched_rule": { + "identifier": "cc-by-4.0.RULE", + "license_choice": false, + "licenses": [ + "cc-by-4.0" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/LICENSE-examples", + "type": "file", + "name": "LICENSE-examples", + "base_name": "LICENSE-examples", + "extension": "", + "size": 585, + "date": "2018-03-12", + "sha1": "015f75895b07a770c1b4d7f95885f529e3df8602", + "md5": "ad32c5caeaf9e5e53ede9de0f54c1551", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "lumisoft-mail-server", + "score": 55.81, + "short_name": "LumiSoft Mail Server License", + "category": "Proprietary Free", + "owner": "LumiSoft", + "homepage_url": "http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=info", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lumisoft-mail-server", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 9, + "matched_rule": { + "identifier": "lumisoft-mail-server.LICENSE", + "license_choice": false, + "licenses": [ + "lumisoft-mail-server" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 4336, + "date": "2018-03-12", + "sha1": "948df84216a972b81d04498f9be5066c47bf61fc", + "md5": "a13810f9bff92140b9aa45b224961a56", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-build", + "version": "15.6.1", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-build/-/react-build-15.6.1.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "aliasify", + "version": null, + "version_constraint": "^2.0.0" + }, + { + "name": "art", + "version": null, + "version_constraint": "^0.10.1" + }, + { + "name": "async", + "version": null, + "version_constraint": "^1.5.0" + }, + { + "name": "babel-cli", + "version": null, + "version_constraint": "^6.6.5" + }, + { + "name": "babel-core", + "version": null, + "version_constraint": "^6.0.0" + }, + { + "name": "babel-eslint", + "version": null, + "version_constraint": "^7.1.0" + }, + { + "name": "babel-jest", + "version": null, + "version_constraint": "18.0.0" + }, + { + "name": "babel-plugin-check-es2015-constants", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-syntax-trailing-function-commas", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-class-properties", + "version": null, + "version_constraint": "^6.11.5" + }, + { + "name": "babel-plugin-transform-es2015-arrow-functions", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-block-scoped-functions", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-block-scoping", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-classes", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-computed-properties", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-destructuring", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-for-of", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-literals", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-modules-commonjs", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-object-super", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-parameters", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-shorthand-properties", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-spread", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-template-literals", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es3-member-expression-literals", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es3-property-literals", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-object-rest-spread", + "version": null, + "version_constraint": "^6.6.5" + }, + { + "name": "babel-plugin-transform-react-jsx-source", + "version": null, + "version_constraint": "^6.8.0" + }, + { + "name": "babel-preset-react", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-traverse", + "version": null, + "version_constraint": "^6.9.0" + }, + { + "name": "babylon", + "version": null, + "version_constraint": "6.15.0" + }, + { + "name": "browserify", + "version": null, + "version_constraint": "^13.0.0" + }, + { + "name": "bundle-collapser", + "version": null, + "version_constraint": "^1.1.1" + }, + { + "name": "chalk", + "version": null, + "version_constraint": "^1.1.3" + }, + { + "name": "coffee-script", + "version": null, + "version_constraint": "^1.8.0" + }, + { + "name": "core-js", + "version": null, + "version_constraint": "^2.2.1" + }, + { + "name": "coveralls", + "version": null, + "version_constraint": "^2.11.6" + }, + { + "name": "del", + "version": null, + "version_constraint": "^2.0.2" + }, + { + "name": "derequire", + "version": null, + "version_constraint": "^2.0.3" + }, + { + "name": "eslint", + "version": null, + "version_constraint": "^3.10.2" + }, + { + "name": "eslint-config-fbjs", + "version": null, + "version_constraint": "^1.1.1" + }, + { + "name": "eslint-plugin-babel", + "version": null, + "version_constraint": "^3.3.0" + }, + { + "name": "eslint-plugin-flowtype", + "version": null, + "version_constraint": "^2.25.0" + }, + { + "name": "eslint-plugin-react", + "version": null, + "version_constraint": "^6.7.1" + }, + { + "name": "eslint-plugin-react-internal", + "version": null, + "version_constraint": "file:eslint-rules" + }, + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.9" + }, + { + "name": "fbjs-scripts", + "version": null, + "version_constraint": "^0.6.0" + }, + { + "name": "flow-bin", + "version": null, + "version_constraint": "^0.37.0" + }, + { + "name": "glob", + "version": null, + "version_constraint": "^6.0.1" + }, + { + "name": "grunt", + "version": null, + "version_constraint": "^0.4.5" + }, + { + "name": "grunt-cli", + "version": null, + "version_constraint": "^0.1.13" + }, + { + "name": "grunt-compare-size", + "version": null, + "version_constraint": "^0.4.0" + }, + { + "name": "grunt-contrib-clean", + "version": null, + "version_constraint": "^0.6.0" + }, + { + "name": "gulp", + "version": null, + "version_constraint": "^3.9.0" + }, + { + "name": "gulp-babel", + "version": null, + "version_constraint": "^6.0.0" + }, + { + "name": "gulp-flatten", + "version": null, + "version_constraint": "^0.2.0" + }, + { + "name": "gulp-load-plugins", + "version": null, + "version_constraint": "^1.2.4" + }, + { + "name": "gulp-util", + "version": null, + "version_constraint": "^3.0.7" + }, + { + "name": "gzip-js", + "version": null, + "version_constraint": "~0.3.2" + }, + { + "name": "jest-cli", + "version": null, + "version_constraint": "18.0.0" + }, + { + "name": "jest-config", + "version": null, + "version_constraint": "^18.0.0" + }, + { + "name": "jest-jasmine2", + "version": null, + "version_constraint": "^18.0.0" + }, + { + "name": "jest-runtime", + "version": null, + "version_constraint": "^18.0.0" + }, + { + "name": "loose-envify", + "version": null, + "version_constraint": "^1.1.0" + }, + { + "name": "merge-stream", + "version": null, + "version_constraint": "^1.0.0" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.1" + }, + { + "name": "platform", + "version": null, + "version_constraint": "^1.1.0" + }, + { + "name": "prettier", + "version": null, + "version_constraint": "^1.2.2" + }, + { + "name": "run-sequence", + "version": null, + "version_constraint": "^1.1.4" + }, + { + "name": "through2", + "version": null, + "version_constraint": "^2.0.0" + }, + { + "name": "tmp", + "version": null, + "version_constraint": "~0.0.28" + }, + { + "name": "typescript", + "version": null, + "version_constraint": "~1.8.10" + }, + { + "name": "uglify-js", + "version": null, + "version_constraint": "^2.5.0" + }, + { + "name": "uglifyify", + "version": null, + "version_constraint": "^3.0.1" + }, + { + "name": "yargs", + "version": null, + "version_constraint": "^6.3.0" + } + ], + "runtime": [ + { + "name": "create-react-class", + "version": null, + "version_constraint": "^15.6.0" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.5.10" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 4546, + "date": "2018-03-12", + "sha1": "8cea2a7b99488621548d0aba0cf0193aac23b063", + "md5": "a97c4ec21ecf55f76a336fd6b72ea401", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 10.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 58, + "end_line": 58, + "matched_rule": { + "identifier": "bsd-new_169.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 189777, + "date": "2018-03-12", + "sha1": "7b0ab745d3246cedad4c00f367a9ba8f3948982b", + "md5": "c664c0cca6b9b42f8942d5aca8abe948", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.github", + "type": "directory", + "name": ".github", + "base_name": ".github", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 735, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/.github/PULL_REQUEST_TEMPLATE.md", + "type": "file", + "name": "PULL_REQUEST_TEMPLATE.md", + "base_name": "PULL_REQUEST_TEMPLATE", + "extension": ".md", + "size": 735, + "date": "2018-03-12", + "sha1": "1c4f8b4eb1c699079ad73a7d018df8b1c095bc40", + "md5": "ba3d0519bbd5c76bc8fc4a1fb2dcc185", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons", + "type": "directory", + "name": "addons", + "base_name": "addons", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 79, + "dirs_count": 10, + "size_count": 937484, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/.eslintrc", + "type": "file", + "name": ".eslintrc", + "base_name": ".eslintrc", + "extension": "", + "size": 43, + "date": "2018-03-12", + "sha1": "42e0f52dfad9497dd8a28d46cdba1160a4d6d876", + "md5": "9588871a9e6a7a498403bd367f92e413", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/postbuild.js", + "type": "file", + "name": "postbuild.js", + "base_name": "postbuild", + "extension": ".js", + "size": 2210, + "date": "2018-03-12", + "sha1": "1ecb044d3f99f06ff4ae116a6f2591791806e0bf", + "md5": "1689e73daf4126f8cf00163524fd6b97", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 569, + "date": "2018-03-12", + "sha1": "b099ba6ad12acf61193c372d333f55b368be90b2", + "md5": "d13205d3a34c9923c5828327ca318e39", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class", + "type": "directory", + "name": "create-react-class", + "base_name": "create-react-class", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 0, + "size_count": 146184, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/factory.js", + "type": "file", + "name": "factory.js", + "base_name": "factory", + "extension": ".js", + "size": 28376, + "date": "2018-03-12", + "sha1": "35882b2624ac92b8e516b5ec0b61df5bf196d403", + "md5": "796c2e6d84d8de4170cf4d1fd4f56bfe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 821, + "date": "2018-03-12", + "sha1": "8573c5c269db1237a4565b93c2e7fb95fd6238f9", + "md5": "a555c5639faf0dcdc739ba66f1919b59", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/LICENSE.txt", + "type": "file", + "name": "LICENSE.txt", + "base_name": "LICENSE", + "extension": ".txt", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 1208, + "date": "2018-03-12", + "sha1": "bfb6906880c77a27a8b4b68d40387e63a405d7b5", + "md5": "a84a79b79ee6d887b769cd3f9daefb48", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 6, + "end_line": 6, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "create-react-class", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "Legacy API for creating React components.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "jest", + "version": null, + "version_constraint": "^19.0.2" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.5.10" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.5.4" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.5.4" + }, + { + "name": "webpack", + "version": null, + "version_constraint": "^2.6.1" + } + ], + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.9" + }, + { + "name": "loose-envify", + "version": null, + "version_constraint": "^1.3.1" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.1" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 189, + "date": "2018-03-12", + "sha1": "26eceb161803002aaa10e09cf5eec0a3e38e844d", + "md5": "db36541e261a593b43d9de46c6963a1f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 14777, + "date": "2018-03-12", + "sha1": "c7de1ec7370934c9171020b5082971ca62a6f2d0", + "md5": "d28df17fd78df6cb6a2ee5804e8ce251", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/webpack.config.js", + "type": "file", + "name": "webpack.config.js", + "base_name": "webpack.config", + "extension": ".js", + "size": 1298, + "date": "2018-03-12", + "sha1": "4a1eff709581d94f4eecf9141b4caef236444c6c", + "md5": "7d28f58043b0d040282eb8ac878bfbdb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/create-react-class/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 96015, + "date": "2018-03-12", + "sha1": "8cbbe796c57316b1138f94f3e19e4981f41c337c", + "md5": "9ae7c0ddc6334a6d7227a467f5ea3d07", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment", + "type": "directory", + "name": "react-addons-create-fragment", + "base_name": "react-addons-create-fragment", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 118303, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 9691, + "date": "2018-03-12", + "sha1": "144bf6c8a78d361099af757441b2d1af21b8b264", + "md5": "ef7f751c0d0c8ffc726aa735d1898d76", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 1086, + "date": "2018-03-12", + "sha1": "373f6c47577335dbf67420fec785abe15d94f6a3", + "md5": "34ca5d09c185b77c8fa4a00cf4ca79ba", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-addons-create-fragment", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-addon" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-addons-create-fragment/-/react-addons-create-fragment-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "jest", + "version": null, + "version_constraint": "^19.0.2" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "webpack", + "version": null, + "version_constraint": "^2.6.1" + } + ], + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.4" + }, + { + "name": "loose-envify", + "version": null, + "version_constraint": "^1.3.1" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 2987, + "date": "2018-03-12", + "sha1": "73c64b6bedb48462297eb08fdc1a830ea8a417de", + "md5": "605731980ffaa4f0864bdecb0cbb1c10", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 3630, + "date": "2018-03-12", + "sha1": "2ec708ac3e4b31ad6f7a650a70f1eca4335ae368", + "md5": "c2d178c0a364d4a92ea3967e26330598", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment/webpack.config.js", + "type": "file", + "name": "webpack.config.js", + "base_name": "webpack.config", + "extension": ".js", + "size": 1328, + "date": "2018-03-12", + "sha1": "0fef5f9519a53e881f3ad323d46966191b4ca4b2", + "md5": "56336bdef237813d0b4c77d8fc6f7a10", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-create-fragment/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 96081, + "date": "2018-03-12", + "sha1": "744ef789771dad2396b543ce2fac82c38980a600", + "md5": "9d0d7d670e4ee1308b95694a2fbe1c4b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-css-transition-group", + "type": "directory", + "name": "react-addons-css-transition-group", + "base_name": "react-addons-css-transition-group", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 9051, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-css-transition-group/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 392, + "date": "2018-03-12", + "sha1": "5a91bcdab553fe3cadce91ca1838f46d92abc46a", + "md5": "5bbdbb2cdebe65391588e1aa1929b0ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-css-transition-group/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-css-transition-group/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 448, + "date": "2018-03-12", + "sha1": "c2185b898ab4af9da6ab918f0fe776f121382413", + "md5": "969f02020d409ed861b219ec95c0d1b1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-addons-css-transition-group", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-addon" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-addons-css-transition-group/-/react-addons-css-transition-group-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "react-transition-group", + "version": null, + "version_constraint": "^1.2.0" + } + ], + "optional": [ + { + "name": "react", + "version": null, + "version_constraint": "^15.4.2" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-css-transition-group/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-css-transition-group/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 781, + "date": "2018-03-12", + "sha1": "328612b35d1178266a88a239508985d7b955db20", + "md5": "ff369b9e3763aeec2b59107cc0074d80", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-css-transition-group/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 3930, + "date": "2018-03-12", + "sha1": "00901a75cbcb8c1fdee2d949821d7925f5c645a9", + "md5": "af507f8acde7361c0201af901f6483e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin", + "type": "directory", + "name": "react-addons-linked-state-mixin", + "base_name": "react-addons-linked-state-mixin", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 116077, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 5414, + "date": "2018-03-12", + "sha1": "c666c2e69c550bdea80f1c7f10d816e6f67b9641", + "md5": "8e656158140d7f4e2beaa3fbbcdda077", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 1039, + "date": "2018-03-12", + "sha1": "492c34cb81267fbbe2c9d66ac035006c9fa9d1c6", + "md5": "147e7e917990f32e44c2e9c3ef7652d6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-addons-linked-state-mixin", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-addon" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-addons-linked-state-mixin/-/react-addons-linked-state-mixin-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "create-react-class", + "version": null, + "version_constraint": "^15.5.4" + }, + { + "name": "jest", + "version": null, + "version_constraint": "^19.0.2" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.5.4" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.5.4" + }, + { + "name": "webpack", + "version": null, + "version_constraint": "^2.6.1" + } + ], + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.4" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 5019, + "date": "2018-03-12", + "sha1": "46cb7e390336b039b81aabc897a8250df3014d7b", + "md5": "9b39d665c6138e14ed18f727455b0ebb", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 3644, + "date": "2018-03-12", + "sha1": "31923d5f42f71065f26cace515468bf8a4738348", + "md5": "58947f8ee6e599a94c54f65847e86ec2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin/webpack.config.js", + "type": "file", + "name": "webpack.config.js", + "base_name": "webpack.config", + "extension": ".js", + "size": 1206, + "date": "2018-03-12", + "sha1": "5fb82a639af177bbe7b560b2411b240964f78877", + "md5": "e9aa367847ccac9002781a01ae72531f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-linked-state-mixin/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 96255, + "date": "2018-03-12", + "sha1": "af5c3b23414746af9abdd82cc071a7b0165628b6", + "md5": "cbfa0fd0d25166712235c2b6ada5e177", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin", + "type": "directory", + "name": "react-addons-pure-render-mixin", + "base_name": "react-addons-pure-render-mixin", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 108653, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 571, + "date": "2018-03-12", + "sha1": "6d426ef17784f845fdb7d368f7da74339b7a6103", + "md5": "aacfdae3040ee6537e83dd1f9ae30bd3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 997, + "date": "2018-03-12", + "sha1": "c030c486a8a4909fe92a3b8070503515e8d17749", + "md5": "470758d8f810b393fa1c1f675ede9f6f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-addons-pure-render-mixin", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-addon" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-addons-pure-render-mixin/-/react-addons-pure-render-mixin-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "jest", + "version": null, + "version_constraint": "^19.0.2" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "webpack", + "version": null, + "version_constraint": "^2.6.1" + } + ], + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.4" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 2183, + "date": "2018-03-12", + "sha1": "2aa826764c39297cc987f6f38f0ad55172da852f", + "md5": "b094b42691cba77b72b2f50e29599658", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 4546, + "date": "2018-03-12", + "sha1": "cf9fcd8e5e00a4c708e70d41cb8f5aef1b11d07e", + "md5": "570b861416b20d541acdc6df4727a42f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin/webpack.config.js", + "type": "file", + "name": "webpack.config.js", + "base_name": "webpack.config", + "extension": ".js", + "size": 1203, + "date": "2018-03-12", + "sha1": "5c4114af88163d32cecb311560dbf3a3205426fd", + "md5": "46bcd8f1b68960aabbad1bcdc74361f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-pure-render-mixin/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 95653, + "date": "2018-03-12", + "sha1": "550178d00b60b1f1d76c0b675d2d646dddbc4ec0", + "md5": "e1affa71bcc137740bfaaaee9fb5efe3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare", + "type": "directory", + "name": "react-addons-shallow-compare", + "base_name": "react-addons-shallow-compare", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 111286, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 785, + "date": "2018-03-12", + "sha1": "67b34ec34a587b6c675cbb85e43a57e04f010202", + "md5": "e53fd777bdc44f19e315e0061e19a928", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1525, + "date": "2018-03-12", + "sha1": "d52fea9bd8ca4980ef78b65973dc462296ea91be", + "md5": "f107ff536d1580e04084722dc5e59eec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 987, + "date": "2018-03-12", + "sha1": "27baf263d008fac710b0e7eb12c8a20894d6e6c6", + "md5": "0ea3eb4b932db64a06fd75303700f375", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-addons-shallow-compare", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-addon" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-addons-shallow-compare/-/react-addons-shallow-compare-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "jest", + "version": null, + "version_constraint": "^19.0.2" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "webpack", + "version": null, + "version_constraint": "^2.6.1" + } + ], + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.4" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 2323, + "date": "2018-03-12", + "sha1": "9b33372ec17fb97699c77d51a9818406c7ab4e8a", + "md5": "428b9bd772b02ce01275c95a0e091d40", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 6841, + "date": "2018-03-12", + "sha1": "ded1b98c4367a6c24d184e6381804d5c7e1cbc5a", + "md5": "41dfb7b6d5f632a4a48f0929491cac4d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare/webpack.config.js", + "type": "file", + "name": "webpack.config.js", + "base_name": "webpack.config", + "extension": ".js", + "size": 1198, + "date": "2018-03-12", + "sha1": "a52e52f975de5c7927313091e891ffc118b13157", + "md5": "52c40fda4b7ee183b3df379e0979bbf2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-shallow-compare/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 95653, + "date": "2018-03-12", + "sha1": "550178d00b60b1f1d76c0b675d2d646dddbc4ec0", + "md5": "e1affa71bcc137740bfaaaee9fb5efe3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-test-utils", + "type": "directory", + "name": "react-addons-test-utils", + "base_name": "react-addons-test-utils", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 77786, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-test-utils/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 2055, + "date": "2018-03-12", + "sha1": "6db5757c518e77127e975aa1f58c51de4eb58e04", + "md5": "25bcce798de893f10b44365b41ce9701", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-test-utils/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-test-utils/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 507, + "date": "2018-03-12", + "sha1": "f5d52022eabd11c835435f4d1ac0507d05743c25", + "md5": "e8e7b2bb7669354ee301dd1341dd7f49", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-addons-test-utils", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-addon" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-addons-test-utils/-/react-addons-test-utils-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "jest", + "version": null, + "version_constraint": "^19.0.2" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.4.2" + } + ], + "optional": [ + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.4.2" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-test-utils/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-test-utils/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 330, + "date": "2018-03-12", + "sha1": "6bbc1a18986c57c99e00dd087ec93217f7f81f00", + "md5": "ded64847b8dfe634e9a2a9ebdd89ae3f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-test-utils/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 1568, + "date": "2018-03-12", + "sha1": "654afe65d224f368eef2859028d6e0f16b093652", + "md5": "6990ef4ad7d2c680ce0c2f7abde2c450", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-test-utils/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 69826, + "date": "2018-03-12", + "sha1": "45f0385cd5f655337c063df02b2b653753316671", + "md5": "f2b57d1d219b7199943bc92cf2d234b7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-transition-group", + "type": "directory", + "name": "react-addons-transition-group", + "base_name": "react-addons-transition-group", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 9016, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-transition-group/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 389, + "date": "2018-03-12", + "sha1": "16173ca9bb1e8b877ee1ec6383ab7d68437228a8", + "md5": "05b7ab92ddb5e9bc6d9f46f1138b55e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-transition-group/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-transition-group/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 444, + "date": "2018-03-12", + "sha1": "eab325b20cbffde85625105a548adc05373452b0", + "md5": "682231452892b0449dc1183ee954be78", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-addons-transition-group", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-addon" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-addons-transition-group/-/react-addons-transition-group-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "react-transition-group", + "version": null, + "version_constraint": "^1.2.0" + } + ], + "optional": [ + { + "name": "react", + "version": null, + "version_constraint": "^15.4.2" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-transition-group/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-transition-group/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 753, + "date": "2018-03-12", + "sha1": "ac4eeac52a6a412c0cf9b68354e58b3bd38279d2", + "md5": "a54c31b6fb4da7bd696be4bf91df099b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-transition-group/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 3930, + "date": "2018-03-12", + "sha1": "00901a75cbcb8c1fdee2d949821d7925f5c645a9", + "md5": "af507f8acde7361c0201af901f6483e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update", + "type": "directory", + "name": "react-addons-update", + "base_name": "react-addons-update", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 113542, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 4324, + "date": "2018-03-12", + "sha1": "8449cfb145630969f58484a90ca05e2a84f9bece", + "md5": "09cfeafbee24df4c2025574abe62aa46", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update/LICENSE.txt", + "type": "file", + "name": "LICENSE.txt", + "base_name": "LICENSE", + "extension": ".txt", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 890, + "date": "2018-03-12", + "sha1": "45fb39ce218f760f7fc9f02263be6847e2095469", + "md5": "5ee6e52e6977f77fde6ce856b983f6b3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-addons-update", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-addon" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-addons-update/-/react-addons-update-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "jest", + "version": null, + "version_constraint": "^19.0.2" + }, + { + "name": "webpack", + "version": null, + "version_constraint": "^2.6.1" + } + ], + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.9" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 5118, + "date": "2018-03-12", + "sha1": "67fb95fd07cefb193212953717637a81cccdfc8e", + "md5": "edb7fae41004030c9a4a9eaa3e5ba899", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 3017, + "date": "2018-03-12", + "sha1": "041d817a0d23e17486b3bf299dec20e945d13d5d", + "md5": "da3b369106e17fa83301f4c5ae3b285e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update/webpack.config.js", + "type": "file", + "name": "webpack.config.js", + "base_name": "webpack.config", + "extension": ".js", + "size": 1160, + "date": "2018-03-12", + "sha1": "f29c9ad294b28813c2b9643c522b5574f9388090", + "md5": "8f1691d52366422cb7ef49fa4dc49f9d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-addons-update/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 95533, + "date": "2018-03-12", + "sha1": "8a68be15617dd96c890bbe324a592ad5db7a34c1", + "md5": "fde5800d59cbc69be9081d77ee7f0771", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input", + "type": "directory", + "name": "react-linked-input", + "base_name": "react-linked-input", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 124764, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 4976, + "date": "2018-03-12", + "sha1": "818e260e8f84b1a05ec25463324e44ab30f8f569", + "md5": "64ced93123ca71fb1c98ea286fbe88d1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input/LICENSE.txt", + "type": "file", + "name": "LICENSE.txt", + "base_name": "LICENSE", + "extension": ".txt", + "size": 1526, + "date": "2018-03-12", + "sha1": "7d8e59356d2ad5f9b3c9a87b1d21df82f83c8f57", + "md5": "11611eed3d95bd0552436a03a7508fc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 99.53, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 8, + "end_line": 31, + "matched_rule": { + "identifier": "bsd-new_158.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 5, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 1093, + "date": "2018-03-12", + "sha1": "6f26b90e47dc7e5af77ed9369447986fcf763106", + "md5": "ed5040534a0db807a68e4e4199af539b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 32, + "end_line": 32, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-linked-input", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "LinkedInput supports the ReactLink semantics", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "linkedinput", + "input", + "linked", + "reactlink" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-linked-input/-/react-linked-input-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": "git", + "vcs_repository": "git+https://github.com/facebook/react.git", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "babel-preset-es2015", + "version": null, + "version_constraint": "^6.24.0" + }, + { + "name": "jest", + "version": null, + "version_constraint": "^19.0.2" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.4.2" + }, + { + "name": "webpack", + "version": null, + "version_constraint": "^2.6.1" + } + ], + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.9" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input/PATENTS", + "type": "file", + "name": "PATENTS", + "base_name": "PATENTS", + "extension": "", + "size": 1974, + "date": "2018-03-12", + "sha1": "23f366d0c822880793e87f5feda7546c36b81841", + "md5": "adfce09c2830e3753a238df44264e0ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "facebook-patent-rights-2", + "score": 99.67, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 33, + "matched_rule": { + "identifier": "facebook-patent-rights-2.LICENSE", + "license_choice": false, + "licenses": [ + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 845, + "date": "2018-03-12", + "sha1": "7bc675d7aade603973961c5b18c7e2e90eb41132", + "md5": "4729f2bcb40c1f3a8458e0325d1ef4a3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input/test.js", + "type": "file", + "name": "test.js", + "base_name": "test", + "extension": ".js", + "size": 2749, + "date": "2018-03-12", + "sha1": "c8ce7bffe18fd0e106f4fae572dc5a10c6ba9c39", + "md5": "6909d5e4feff11baa0a784fc047b7806", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input/webpack.config.js", + "type": "file", + "name": "webpack.config.js", + "base_name": "webpack.config", + "extension": ".js", + "size": 1293, + "date": "2018-03-12", + "sha1": "b5a07e1e83b5c80c7354ef0804b000c121a75a97", + "md5": "5f39e554841259632200b8312bd29f2d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/addons/react-linked-input/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 110308, + "date": "2018-03-12", + "sha1": "144f2c005ab120aaf7c828bb500233f363b12c8a", + "md5": "4b2ece0f9e425e1e576b0434067eada4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs", + "type": "directory", + "name": "docs", + "base_name": "docs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 473, + "dirs_count": 29, + "size_count": 55860838, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/404.md", + "type": "file", + "name": "404.md", + "base_name": "404", + "extension": ".md", + "size": 224, + "date": "2018-03-12", + "sha1": "a277d8f7079f7bac64ac2928a286b01221cf70b5", + "md5": "a2ae51a2c8d938e54ad7f2ba4d56d481", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_config.yml", + "type": "file", + "name": "_config.yml", + "base_name": "_config", + "extension": ".yml", + "size": 1706, + "date": "2018-03-12", + "sha1": "481ffc80dff06b56d12736b7d67a69a86f2f8fd4", + "md5": "4f67655bb45f80f0f8a0008b4a6eb8ec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/acknowledgements.md", + "type": "file", + "name": "acknowledgements.md", + "base_name": "acknowledgements", + "extension": ".md", + "size": 935, + "date": "2018-03-12", + "sha1": "747808ec6ffc8ff0d14aef32aa24c56c7bb9da4a", + "md5": "2ffb46925913ada0ee6434457a036bac", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/circle.yml", + "type": "file", + "name": "circle.yml", + "base_name": "circle", + "extension": ".yml", + "size": 54, + "date": "2018-03-12", + "sha1": "f14cfffbc6ca82e3126bdd129e38e824a4b39656", + "md5": "160ca0b2d86a8f413701e38fb96ec86b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/favicon.ico", + "type": "file", + "name": "favicon.ico", + "base_name": "favicon", + "extension": ".ico", + "size": 24838, + "date": "2018-03-12", + "sha1": "55bbacc4b53578835604e4954cf6bd414accb593", + "md5": "fd73a6eb26a08ee46e7fd3cc34e7f6bf", + "mime_type": "image/x-icon", + "file_type": "MS Windows icon resource - 4 icons, 16x16", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/feed.xml", + "type": "file", + "name": "feed.xml", + "base_name": "feed", + "extension": ".xml", + "size": 768, + "date": "2018-03-12", + "sha1": "91df02cb198e4c41a3dc7e2e4a9723faafe98cf8", + "md5": "2cde3ea80bc7310a79134ce03fe35bfb", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/Gemfile", + "type": "file", + "name": "Gemfile", + "base_name": "Gemfile", + "extension": "", + "size": 465, + "date": "2018-03-12", + "sha1": "6cd76e4fc2d2db76d1231d3ff55bca9990e3d0bc", + "md5": "5a40223eceb1fa14ee122d038ea539bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "RubyGem", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/Gemfile.lock", + "type": "file", + "name": "Gemfile.lock", + "base_name": "Gemfile", + "extension": ".lock", + "size": 1441, + "date": "2018-03-12", + "sha1": "b1fcd41544e586e005eab75788ed5aa2a140239e", + "md5": "8a7d4a5bf4593584e18b88bd074a5be3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "RubyGem", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/html-jsx.html", + "type": "file", + "name": "html-jsx.html", + "base_name": "html-jsx", + "extension": ".html", + "size": 99, + "date": "2018-03-12", + "sha1": "c2d7fed1b0ac06c8b0f2c316a99db627533be34d", + "md5": "86bda11f429eeae81539b5450d566e36", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/index.md", + "type": "file", + "name": "index.md", + "base_name": "index", + "extension": ".md", + "size": 3791, + "date": "2018-03-12", + "sha1": "d7cf0111a1f3955b152d93f9e2a20f65103d0fce", + "md5": "b0d22c491c57a286f589ef43468ba733", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/jsx-compiler.md", + "type": "file", + "name": "jsx-compiler.md", + "base_name": "jsx-compiler", + "extension": ".md", + "size": 255, + "date": "2018-03-12", + "sha1": "2fea1e41644d681b9cd2c8aeda55df50295532db", + "md5": "d3f9e8ae53eaf38074bab35eaa5fb678", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/Rakefile", + "type": "file", + "name": "Rakefile", + "base_name": "Rakefile", + "extension": "", + "size": 2362, + "date": "2018-03-12", + "sha1": "bae9d668a52657588c45d763b401f2c5282e5b34", + "md5": "e3182e4e424f1289c011c014c715cc57", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Ruby", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 2826, + "date": "2018-03-12", + "sha1": "4ed2c5660a833a4054661710402b72fdbedfec1e", + "md5": "c2e9dd8032847f487801feeb1e1fe286", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css", + "type": "directory", + "name": "_css", + "base_name": "_css", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 72, + "dirs_count": 6, + "size_count": 82541, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/_solarized.scss", + "type": "file", + "name": "_solarized.scss", + "base_name": "_solarized", + "extension": ".scss", + "size": 4075, + "date": "2018-03-12", + "sha1": "5465518cf0463e83370ce5e16b312d974ec8bb32", + "md5": "99d0c3aa370948632d0ae63d8b83f61f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/_typography.scss", + "type": "file", + "name": "_typography.scss", + "base_name": "_typography", + "extension": ".scss", + "size": 1443, + "date": "2018-03-12", + "sha1": "63bf8a92888f1d6ab88f0394b5c540e67ea620ad", + "md5": "9b7c70015b18664dcaf47db4ede90b53", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/_variables.scss", + "type": "file", + "name": "_variables.scss", + "base_name": "_variables", + "extension": ".scss", + "size": 472, + "date": "2018-03-12", + "sha1": "cefee7d72fcd8b92e3952ecbdaa1b8ea5b56dc26", + "md5": "cc94567b5d43854f74cb868646129d7b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon", + "type": "directory", + "name": "bourbon", + "base_name": "bourbon", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 69, + "dirs_count": 5, + "size_count": 76551, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/_bourbon-deprecated-upcoming.scss", + "type": "file", + "name": "_bourbon-deprecated-upcoming.scss", + "base_name": "_bourbon-deprecated-upcoming", + "extension": ".scss", + "size": 400, + "date": "2018-03-12", + "sha1": "721d81d1575f35fb09b0d67ab26e241f3c6a9bab", + "md5": "1232ed1bd5ea801bc7bc3c0b60c73aec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/_bourbon.scss", + "type": "file", + "name": "_bourbon.scss", + "base_name": "_bourbon", + "extension": ".scss", + "size": 2273, + "date": "2018-03-12", + "sha1": "1980d98195bf3fb8842c9d05a8fc4b131c5df0db", + "md5": "a49479d4a3ba2da94c68c32dcc3a8e58", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons", + "type": "directory", + "name": "addons", + "base_name": "addons", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 14, + "dirs_count": 0, + "size_count": 27800, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_button.scss", + "type": "file", + "name": "_button.scss", + "base_name": "_button", + "extension": ".scss", + "size": 13144, + "date": "2018-03-12", + "sha1": "61a30b3f1991b0791ea472ebff1ef749dbb8b1a5", + "md5": "081902245bacc759f1562e7bf3ec18dd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_clearfix.scss", + "type": "file", + "name": "_clearfix.scss", + "base_name": "_clearfix", + "extension": ".scss", + "size": 515, + "date": "2018-03-12", + "sha1": "9cc4f70ecaf2ebb8cdea2c4d385314a9693e20b3", + "md5": "0da01a56462807d2628530556e0e7c76", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_directional-values.scss", + "type": "file", + "name": "_directional-values.scss", + "base_name": "_directional-values", + "extension": ".scss", + "size": 2863, + "date": "2018-03-12", + "sha1": "c76282b105c36c8aecfec09294689cee80b8c647", + "md5": "2f5ad412c7d3ee343790a9a67178385a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_ellipsis.scss", + "type": "file", + "name": "_ellipsis.scss", + "base_name": "_ellipsis", + "extension": ".scss", + "size": 150, + "date": "2018-03-12", + "sha1": "44520b8a794efdc5e35b3ae1bc2468fd41fc1116", + "md5": "9ad2c8f7ca715ad36dcf825b864e4dda", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_font-family.scss", + "type": "file", + "name": "_font-family.scss", + "base_name": "_font-family", + "extension": ".scss", + "size": 307, + "date": "2018-03-12", + "sha1": "3d8ba824de0b9fa67d115f0827fd214ddbdbffc5", + "md5": "07ff627848a6862b4a95e19e2c783283", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_hide-text.scss", + "type": "file", + "name": "_hide-text.scss", + "base_name": "_hide-text", + "extension": ".scss", + "size": 128, + "date": "2018-03-12", + "sha1": "33a85f8df3cedb9e483dbae39e7046624d567f7e", + "md5": "29bcfb7d95e49d76a08c0a87c6d8cae5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_html5-input-types.scss", + "type": "file", + "name": "_html5-input-types.scss", + "base_name": "_html5-input-types", + "extension": ".scss", + "size": 3101, + "date": "2018-03-12", + "sha1": "f8b2f37e095e390aa32dea906c9395ccdbc4bff7", + "md5": "048744a9ea771df7c781f89c94b123a6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_position.scss", + "type": "file", + "name": "_position.scss", + "base_name": "_position", + "extension": ".scss", + "size": 715, + "date": "2018-03-12", + "sha1": "62ecdfcdd414b36c680b7db4fa4ad7ae018999d0", + "md5": "af45a0272e2f78f6b5f152026e88c2e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_prefixer.scss", + "type": "file", + "name": "_prefixer.scss", + "base_name": "_prefixer", + "extension": ".scss", + "size": 1205, + "date": "2018-03-12", + "sha1": "0682ded884f10d4572a1293c0bb5ebdc4cbf333b", + "md5": "a413205d04665888a1e7586e821f3c1b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_retina-image.scss", + "type": "file", + "name": "_retina-image.scss", + "base_name": "_retina-image", + "extension": ".scss", + "size": 855, + "date": "2018-03-12", + "sha1": "2cf827821f40cb799c26e42c3199989102d7091e", + "md5": "6582394779684e22e5c7fea8342136ec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_size.scss", + "type": "file", + "name": "_size.scss", + "base_name": "_size", + "extension": ".scss", + "size": 338, + "date": "2018-03-12", + "sha1": "a0519198a85e4c229793cd34b046abca6a779181", + "md5": "95888df85645bab27db66b4be611c79d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_timing-functions.scss", + "type": "file", + "name": "_timing-functions.scss", + "base_name": "_timing-functions", + "extension": ".scss", + "size": 1764, + "date": "2018-03-12", + "sha1": "0e34494c72abf0aa065e78458b9fff68e85e52db", + "md5": "cce5583ad9adfa72d147681a45f0a0f3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_triangle.scss", + "type": "file", + "name": "_triangle.scss", + "base_name": "_triangle", + "extension": ".scss", + "size": 2564, + "date": "2018-03-12", + "sha1": "a40269ccdf3e26c6f98e69fabd2f536402531b66", + "md5": "3593e83843a8460c6dfef58d6ce98a17", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/addons/_word-wrap.scss", + "type": "file", + "name": "_word-wrap.scss", + "base_name": "_word-wrap", + "extension": ".scss", + "size": 151, + "date": "2018-03-12", + "sha1": "daa61c6c38b7ecfb7558a8f91e4c1c98a91e26a8", + "md5": "c79b8b2344b0e8f23431c3ed52e70a2d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3", + "type": "directory", + "name": "css3", + "base_name": "css3", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 0, + "size_count": 26963, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_animation.scss", + "type": "file", + "name": "_animation.scss", + "base_name": "_animation", + "extension": ".scss", + "size": 1583, + "date": "2018-03-12", + "sha1": "a43ad539166974529586857a4cfe8b9364a8fafa", + "md5": "4d3d5364521d737d0998d92ce5178df8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_appearance.scss", + "type": "file", + "name": "_appearance.scss", + "base_name": "_appearance", + "extension": ".scss", + "size": 94, + "date": "2018-03-12", + "sha1": "bb214da69cbaca2730b496ea3ba5c204499954bb", + "md5": "6c436dc81b892aecec061649ad74d71e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_backface-visibility.scss", + "type": "file", + "name": "_backface-visibility.scss", + "base_name": "_backface-visibility", + "extension": ".scss", + "size": 295, + "date": "2018-03-12", + "sha1": "5cfc259457c15a3698d7c62cdf6f6fc6eb99ba8b", + "md5": "7759cec69b20500438e6afbbb8c81a02", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_background-image.scss", + "type": "file", + "name": "_background-image.scss", + "base_name": "_background-image", + "extension": ".scss", + "size": 1332, + "date": "2018-03-12", + "sha1": "13cf4003b99a852a05941d9227d9c51e3248c78c", + "md5": "fc0c968102173bf343eda7140d65b2ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_background.scss", + "type": "file", + "name": "_background.scss", + "base_name": "_background", + "extension": ".scss", + "size": 1758, + "date": "2018-03-12", + "sha1": "5348321086a1160bf247f7bafd726fee595e44de", + "md5": "c445a464bf5c90f360e036227868a995", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_border-image.scss", + "type": "file", + "name": "_border-image.scss", + "base_name": "_border-image", + "extension": ".scss", + "size": 1827, + "date": "2018-03-12", + "sha1": "4cb2238cfcdade888b0b24e72205388db7d89356", + "md5": "938056a2097ae322ea00e7f893e0ae04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_border-radius.scss", + "type": "file", + "name": "_border-radius.scss", + "base_name": "_border-radius", + "extension": ".scss", + "size": 833, + "date": "2018-03-12", + "sha1": "a1dd3a06584d42974ffd09094fce8cbda66bb1fc", + "md5": "373a4d781651d8f70d3a881c2a73e847", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_box-sizing.scss", + "type": "file", + "name": "_box-sizing.scss", + "base_name": "_box-sizing", + "extension": ".scss", + "size": 124, + "date": "2018-03-12", + "sha1": "c5370108803c21cdaa4d572d2b0a3002f3c6e1aa", + "md5": "1d693a6a2827e8f5cd149031832e5599", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_calc.scss", + "type": "file", + "name": "_calc.scss", + "base_name": "_calc", + "extension": ".scss", + "size": 117, + "date": "2018-03-12", + "sha1": "30d5b9d1baedc2df31ae977c7ba86ed1e1431414", + "md5": "fb95ce1dcd297370874dbabadbae5028", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_columns.scss", + "type": "file", + "name": "_columns.scss", + "base_name": "_columns", + "extension": ".scss", + "size": 1241, + "date": "2018-03-12", + "sha1": "5bb5503fefc4c12de2b7153443bd78d227f281c5", + "md5": "e2940a3267c9d75552907a477ce090e8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_filter.scss", + "type": "file", + "name": "_filter.scss", + "base_name": "_filter", + "extension": ".scss", + "size": 139, + "date": "2018-03-12", + "sha1": "cccd7b697e9902ad04e62a8f91e6555629249afd", + "md5": "16e358ff42e362d07da723c62ee31484", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_flex-box.scss", + "type": "file", + "name": "_flex-box.scss", + "base_name": "_flex-box", + "extension": ".scss", + "size": 8008, + "date": "2018-03-12", + "sha1": "2b2629b5c2628d9e6bf87ae50b4121cf9e94ea3f", + "md5": "a5dd5b10dffa7f1ddda378b9e742fbae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_font-face.scss", + "type": "file", + "name": "_font-face.scss", + "base_name": "_font-face", + "extension": ".scss", + "size": 1045, + "date": "2018-03-12", + "sha1": "4148558e6e8d85c092fbc18eba9725717e163410", + "md5": "995b120c7fbdc698149b8a0c4b93b7fa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_font-feature-settings.scss", + "type": "file", + "name": "_font-feature-settings.scss", + "base_name": "_font-feature-settings", + "extension": ".scss", + "size": 463, + "date": "2018-03-12", + "sha1": "2df30aedbbdbc70a384e1849cfb21221a8eae726", + "md5": "91e2bced8d742cf1a61442103ce348ed", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_hidpi-media-query.scss", + "type": "file", + "name": "_hidpi-media-query.scss", + "base_name": "_hidpi-media-query", + "extension": ".scss", + "size": 463, + "date": "2018-03-12", + "sha1": "cd2e8b85eb3397ff4a9752ee244bd55b39e84b9b", + "md5": "5fbe0b8110e24dbf2b7d4720e5ad01aa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_hyphens.scss", + "type": "file", + "name": "_hyphens.scss", + "base_name": "_hyphens", + "extension": ".scss", + "size": 126, + "date": "2018-03-12", + "sha1": "7fd4bb1bbca508533d4cd98d572a352cf5b88148", + "md5": "a16eee1b9701f0bbb69600960f34d00f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_image-rendering.scss", + "type": "file", + "name": "_image-rendering.scss", + "base_name": "_image-rendering", + "extension": ".scss", + "size": 343, + "date": "2018-03-12", + "sha1": "67bf012fe3e58fc12714ef252544f4d8fdf8b8e1", + "md5": "863218e471076c6ce38a1509d1fb900d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_keyframes.scss", + "type": "file", + "name": "_keyframes.scss", + "base_name": "_keyframes", + "extension": ".scss", + "size": 1158, + "date": "2018-03-12", + "sha1": "28d9e9b34323174318570a72050957f998754ad6", + "md5": "dc3ecbf496646e5b271fc63f11b389a8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_linear-gradient.scss", + "type": "file", + "name": "_linear-gradient.scss", + "base_name": "_linear-gradient", + "extension": ".scss", + "size": 1310, + "date": "2018-03-12", + "sha1": "8e934038aa5cd5dd4739a2c912c0392e19d8cb86", + "md5": "3ed75658f56b71bd13018d86faa7eb1d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_perspective.scss", + "type": "file", + "name": "_perspective.scss", + "base_name": "_perspective", + "extension": ".scss", + "size": 231, + "date": "2018-03-12", + "sha1": "f53b7eac7c6befd491c619be847fa92b4c2231e7", + "md5": "793baf79388c99d5a1ba92ba6e1d026f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_placeholder.scss", + "type": "file", + "name": "_placeholder.scss", + "base_name": "_placeholder", + "extension": ".scss", + "size": 187, + "date": "2018-03-12", + "sha1": "981d9aab731cf07ea2d4732a0fcbe92bd0d41103", + "md5": "961f5d7df43b4323fdf47635634a5c83", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_radial-gradient.scss", + "type": "file", + "name": "_radial-gradient.scss", + "base_name": "_radial-gradient", + "extension": ".scss", + "size": 1414, + "date": "2018-03-12", + "sha1": "b10c33b1f753a984b822a57fdf90d4a4dbcdea1b", + "md5": "7bd48370bfbfd57b543251c912f2f3e0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_transform.scss", + "type": "file", + "name": "_transform.scss", + "base_name": "_transform", + "extension": ".scss", + "size": 495, + "date": "2018-03-12", + "sha1": "c750c70800c813f71fadd51ad2eafb3281ecc4e8", + "md5": "70afecfd28f823fa6bc13fb43eb35a4b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_transition.scss", + "type": "file", + "name": "_transition.scss", + "base_name": "_transition", + "extension": ".scss", + "size": 2282, + "date": "2018-03-12", + "sha1": "099247da3dd0fbdfa02d8fbb9793fe640a8f6dd5", + "md5": "660c835cf41f095408f11a9f5c3f151f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/css3/_user-select.scss", + "type": "file", + "name": "_user-select.scss", + "base_name": "_user-select", + "extension": ".scss", + "size": 95, + "date": "2018-03-12", + "sha1": "803ee137e7db2aad4fbe56b965f27358276b5f25", + "md5": "fcf794c47fa8279503bf60b68715bb47", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions", + "type": "directory", + "name": "functions", + "base_name": "functions", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 6547, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_assign.scss", + "type": "file", + "name": "_assign.scss", + "base_name": "_assign", + "extension": ".scss", + "size": 243, + "date": "2018-03-12", + "sha1": "0f77cbd7a8c3e98b35d1d5c6794d69c890325049", + "md5": "9de805eb0dfc1ca8972c733c6403d0ce", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_color-lightness.scss", + "type": "file", + "name": "_color-lightness.scss", + "base_name": "_color-lightness", + "extension": ".scss", + "size": 469, + "date": "2018-03-12", + "sha1": "55b55edf9576507cbc0bc947271daf74a9b84502", + "md5": "11da9622d359b34a7250cf9cc2f65478", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_flex-grid.scss", + "type": "file", + "name": "_flex-grid.scss", + "base_name": "_flex-grid", + "extension": ".scss", + "size": 1592, + "date": "2018-03-12", + "sha1": "b847f200463d9d45d1863415d567ed73e9018d3f", + "md5": "2803056bf58562ee5fded423dcb9f527", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_golden-ratio.scss", + "type": "file", + "name": "_golden-ratio.scss", + "base_name": "_golden-ratio", + "extension": ".scss", + "size": 100, + "date": "2018-03-12", + "sha1": "807ea5c7de586073f7b87c8112c54caa8e3f11ad", + "md5": "fcf9ed49bbbe1c3d2ecdd9a688e09fe2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_grid-width.scss", + "type": "file", + "name": "_grid-width.scss", + "base_name": "_grid-width", + "extension": ".scss", + "size": 418, + "date": "2018-03-12", + "sha1": "44959d7309e947aea8ced9786aad386f9d5ea944", + "md5": "f22bf5eee2d939854da12ece0ac5bbaf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_modular-scale.scss", + "type": "file", + "name": "_modular-scale.scss", + "base_name": "_modular-scale", + "extension": ".scss", + "size": 1469, + "date": "2018-03-12", + "sha1": "aeaf70f59bf2933b0700638f19096bfa8e465102", + "md5": "eb8376cb932de12d6f768700439b3b10", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_px-to-em.scss", + "type": "file", + "name": "_px-to-em.scss", + "base_name": "_px-to-em", + "extension": ".scss", + "size": 370, + "date": "2018-03-12", + "sha1": "4c2ba250a68a15d7fc372e649c346ffce52b0dd6", + "md5": "00dd169ade4de45df164a73ff88b45ad", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_px-to-rem.scss", + "type": "file", + "name": "_px-to-rem.scss", + "base_name": "_px-to-rem", + "extension": ".scss", + "size": 340, + "date": "2018-03-12", + "sha1": "62491f7f1ff941fceea9e51dd185a2aea5c22c12", + "md5": "faaf612eee4688c70074e70d04f24f46", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_strip-units.scss", + "type": "file", + "name": "_strip-units.scss", + "base_name": "_strip-units", + "extension": ".scss", + "size": 118, + "date": "2018-03-12", + "sha1": "619ad2f45e59b01c5dd5d6990ce327d08113a4b9", + "md5": "230b3c2cdceeccd2b358eebae3ef064e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_tint-shade.scss", + "type": "file", + "name": "_tint-shade.scss", + "base_name": "_tint-shade", + "extension": ".scss", + "size": 230, + "date": "2018-03-12", + "sha1": "9e2357b9dc3e95a4bdcbd5f7b9b83dd96880236f", + "md5": "b5c422224be3d36942b3a92d8c2ec89e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_transition-property-name.scss", + "type": "file", + "name": "_transition-property-name.scss", + "base_name": "_transition-property-name", + "extension": ".scss", + "size": 697, + "date": "2018-03-12", + "sha1": "7ba6d718bdddb7988dd564e24d5bf3934a7e20f6", + "md5": "8a88f39d99dc5747e4ae991d3f4e69e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/functions/_unpack.scss", + "type": "file", + "name": "_unpack.scss", + "base_name": "_unpack", + "extension": ".scss", + "size": 501, + "date": "2018-03-12", + "sha1": "53ee6619529224b3c04a66451bcaf11e00a54217", + "md5": "309ad420d2b039eee2ec10260c16f742", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers", + "type": "directory", + "name": "helpers", + "base_name": "helpers", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 0, + "size_count": 12242, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_convert-units.scss", + "type": "file", + "name": "_convert-units.scss", + "base_name": "_convert-units", + "extension": ".scss", + "size": 696, + "date": "2018-03-12", + "sha1": "2caa48f0bbd82ac1fb985bb694a8ed5ce2cab242", + "md5": "86729c86214a69441448b26517670982", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_gradient-positions-parser.scss", + "type": "file", + "name": "_gradient-positions-parser.scss", + "base_name": "_gradient-positions-parser", + "extension": ".scss", + "size": 480, + "date": "2018-03-12", + "sha1": "e9c38cd6e39ec6f0701612aacb981087cff772f0", + "md5": "fd4157198cf4848a2ec892dd0a4b6343", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_is-num.scss", + "type": "file", + "name": "_is-num.scss", + "base_name": "_is-num", + "extension": ".scss", + "size": 360, + "date": "2018-03-12", + "sha1": "c93b78f1f94398e3d7e07479ca8e23f65e571c40", + "md5": "1fa346e230af3977103d7d787fe7eebe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_linear-angle-parser.scss", + "type": "file", + "name": "_linear-angle-parser.scss", + "base_name": "_linear-angle-parser", + "extension": ".scss", + "size": 757, + "date": "2018-03-12", + "sha1": "bae1bc0787fb466fcb569590b80a2bbf8d06d983", + "md5": "520ed0742bb2eb9cf21515ecadca7fda", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_linear-gradient-parser.scss", + "type": "file", + "name": "_linear-gradient-parser.scss", + "base_name": "_linear-gradient-parser", + "extension": ".scss", + "size": 1087, + "date": "2018-03-12", + "sha1": "eede69beeec5b78eb785609076596cf4da4dba5b", + "md5": "8f3709be826b6f6e1a8c7093507cf4f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_linear-positions-parser.scss", + "type": "file", + "name": "_linear-positions-parser.scss", + "base_name": "_linear-positions-parser", + "extension": ".scss", + "size": 1992, + "date": "2018-03-12", + "sha1": "abae4266bc919d357afa02410236fb77ebc19b03", + "md5": "8b2a16ec9d8156a06c0e6ca6b9824bcc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_linear-side-corner-parser.scss", + "type": "file", + "name": "_linear-side-corner-parser.scss", + "base_name": "_linear-side-corner-parser", + "extension": ".scss", + "size": 916, + "date": "2018-03-12", + "sha1": "ea3b65fb4e9ec6143e5e68c86f8e2a63bd5bf2e8", + "md5": "e3af6af431b255e3f8dd0f337bf576b9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_radial-arg-parser.scss", + "type": "file", + "name": "_radial-arg-parser.scss", + "base_name": "_radial-arg-parser", + "extension": ".scss", + "size": 1828, + "date": "2018-03-12", + "sha1": "9b6e8fcc5898561fd2ffd78f890fec312b2107bf", + "md5": "a5497a6a006c4f2cd2b3bd61eacb964f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_radial-gradient-parser.scss", + "type": "file", + "name": "_radial-gradient-parser.scss", + "base_name": "_radial-gradient-parser", + "extension": ".scss", + "size": 1278, + "date": "2018-03-12", + "sha1": "0ec2fec5860e4ad1ab777ad6e5ff0bbe0eddb053", + "md5": "6fd34f4b02a1181d3fef21cbeacc6d8f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_radial-positions-parser.scss", + "type": "file", + "name": "_radial-positions-parser.scss", + "base_name": "_radial-positions-parser", + "extension": ".scss", + "size": 484, + "date": "2018-03-12", + "sha1": "255ff1c8501a24210ef2cfceae73bdc20c824141", + "md5": "8fe35e46c19a0e3f05851e77635aa385", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_render-gradients.scss", + "type": "file", + "name": "_render-gradients.scss", + "base_name": "_render-gradients", + "extension": ".scss", + "size": 845, + "date": "2018-03-12", + "sha1": "2cf125287b28e46c3ecaa3bcab7a959536ea7a23", + "md5": "d2982aa29f132f4e4ee76153c6011479", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_shape-size-stripper.scss", + "type": "file", + "name": "_shape-size-stripper.scss", + "base_name": "_shape-size-stripper", + "extension": ".scss", + "size": 274, + "date": "2018-03-12", + "sha1": "d236801e46a03c7f93d27e90c5bd760e760d5847", + "md5": "a0e10c7137e2127c985293a3802fafb6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/helpers/_str-to-num.scss", + "type": "file", + "name": "_str-to-num.scss", + "base_name": "_str-to-num", + "extension": ".scss", + "size": 1245, + "date": "2018-03-12", + "sha1": "c95167e72c910a7955362b023cfa12241c7e6559", + "md5": "7b72e74372c171df1ea45e63623451bb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/settings", + "type": "directory", + "name": "settings", + "base_name": "settings", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 326, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/settings/_asset-pipeline.scss", + "type": "file", + "name": "_asset-pipeline.scss", + "base_name": "_asset-pipeline", + "extension": ".scss", + "size": 33, + "date": "2018-03-12", + "sha1": "bff5ef8a859a7e5f467323262aeb71047fda6814", + "md5": "986eab922e7a47c91ead3a37d1f74fc0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/settings/_prefixer.scss", + "type": "file", + "name": "_prefixer.scss", + "base_name": "_prefixer", + "extension": ".scss", + "size": 268, + "date": "2018-03-12", + "sha1": "0b0f9f8f114b9b16fe65281e685fb685f46b37c7", + "md5": "520c130917995eb37187c6a81f32ce1b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_css/bourbon/settings/_px-to-em.scss", + "type": "file", + "name": "_px-to-em.scss", + "base_name": "_px-to-em", + "extension": ".scss", + "size": 25, + "date": "2018-03-12", + "sha1": "14880c373629b1e71abf17d6dc147ca56126856a", + "md5": "af526a5742a9ecc661aac5779748523c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_data", + "type": "directory", + "name": "_data", + "base_name": "_data", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 19952, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_data/acknowledgements.yml", + "type": "file", + "name": "acknowledgements.yml", + "base_name": "acknowledgements", + "extension": ".yml", + "size": 12186, + "date": "2018-03-12", + "sha1": "5ea1d414fdf70dd1c8155513ea60556e5714248f", + "md5": "e6ff781edb086fab84a912a1366d3228", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_data/authors.yml", + "type": "file", + "name": "authors.yml", + "base_name": "authors", + "extension": ".yml", + "size": 1802, + "date": "2018-03-12", + "sha1": "7ee6efadf1b04f45bb041314875bee233cd3bcdb", + "md5": "d867e695a3b889a9163b0ea3fe3f9731", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_data/nav_community.yml", + "type": "file", + "name": "nav_community.yml", + "base_name": "nav_community", + "extension": ".yml", + "size": 409, + "date": "2018-03-12", + "sha1": "09b900f09cf0eaa1309b3803dc085473a00ea218", + "md5": "c44b1836234cda40a5cea73e90279442", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_data/nav_contributing.yml", + "type": "file", + "name": "nav_contributing.yml", + "base_name": "nav_contributing", + "extension": ".yml", + "size": 257, + "date": "2018-03-12", + "sha1": "ce70824cf5cc92384460f098acba998a2147ce8c", + "md5": "48c119fb6e2c3fa762040781c52f73d1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_data/nav_docs.yml", + "type": "file", + "name": "nav_docs.yml", + "base_name": "nav_docs", + "extension": ".yml", + "size": 1998, + "date": "2018-03-12", + "sha1": "41855432739895f332d00ae574062dc5c2908fdd", + "md5": "1e7599ab7bb938c9509a5f6b4585dfd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_data/nav_tutorial.yml", + "type": "file", + "name": "nav_tutorial.yml", + "base_name": "nav_tutorial", + "extension": ".yml", + "size": 3300, + "date": "2018-03-12", + "sha1": "a0dcab0dc0341582360f5e90d514bf81f0011293", + "md5": "192030fa499081ec763db291544db520", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes", + "type": "directory", + "name": "_includes", + "base_name": "_includes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 6983, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes/blog_post.html", + "type": "file", + "name": "blog_post.html", + "base_name": "blog_post", + "extension": ".html", + "size": 656, + "date": "2018-03-12", + "sha1": "331123ad8e8f7d8fd467137f0ab079d4eff45b4a", + "md5": "6f7d1a671fd5441dac0ccd3e893f903b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes/footer.html", + "type": "file", + "name": "footer.html", + "base_name": "footer", + "extension": ".html", + "size": 1983, + "date": "2018-03-12", + "sha1": "06bb3ddb507c8a7c0485cdd0642b29d79b72d08e", + "md5": "ea060966f3d72964bbc91ae0c7abc76d", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright (c) site.time date Y Facebook Inc." + ], + "holders": [ + "site.time", + "date", + "Y Facebook Inc." + ], + "authors": [], + "start_line": 38, + "end_line": 39 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes/hero.html", + "type": "file", + "name": "hero.html", + "base_name": "hero", + "extension": ".html", + "size": 403, + "date": "2018-03-12", + "sha1": "4c4d8fd53cbe1d615f71d670d45556b65df3629f", + "md5": "b149d125f23fb7920e37f7144358caf5", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes/nav_blog.html", + "type": "file", + "name": "nav_blog.html", + "base_name": "nav_blog", + "extension": ".html", + "size": 381, + "date": "2018-03-12", + "sha1": "e94d57aa26bdfb9b652d11a54baf4b32a44cde0d", + "md5": "641747495cc86676d90f87cabb43da4f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes/nav_community.html", + "type": "file", + "name": "nav_community.html", + "base_name": "nav_community", + "extension": ".html", + "size": 645, + "date": "2018-03-12", + "sha1": "a098021206f92c71c88758834701e9e71afd39dd", + "md5": "1cbef63d4c867c29574423fadd1859d7", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes/nav_docs.html", + "type": "file", + "name": "nav_docs.html", + "base_name": "nav_docs", + "extension": ".html", + "size": 1050, + "date": "2018-03-12", + "sha1": "d0a22217dcf4f4f745c5d80efe6d81c69133020e", + "md5": "72ee7a68a0b75392ff37363f868e30da", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes/nav_tutorial.html", + "type": "file", + "name": "nav_tutorial.html", + "base_name": "nav_tutorial", + "extension": ".html", + "size": 641, + "date": "2018-03-12", + "sha1": "e92c43017e93b2f4fa476244f8953e396b67a102", + "md5": "e2eefd54d6f8e055e58aa3a3e3355930", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_includes/navigation.html", + "type": "file", + "name": "navigation.html", + "base_name": "navigation", + "extension": ".html", + "size": 1224, + "date": "2018-03-12", + "sha1": "79d6869e135b56b5ffeacd35512e19b3ca6198e2", + "md5": "4c57763a5a1d08902e8685f0810023fa", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js", + "type": "directory", + "name": "_js", + "base_name": "_js", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 1, + "size_count": 14023, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/anchor-links.js", + "type": "file", + "name": "anchor-links.js", + "base_name": "anchor-links", + "extension": ".js", + "size": 1220, + "date": "2018-03-12", + "sha1": "418e3b10325e923228244f6c8ab060b7aef1da95", + "md5": "a779bb1c231071dc77b8c5d8b873afb8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/ErrorDecoderComponent.js", + "type": "file", + "name": "ErrorDecoderComponent.js", + "base_name": "ErrorDecoderComponent", + "extension": ".js", + "size": 2517, + "date": "2018-03-12", + "sha1": "334b2cf7cc7b7be108d26c6638509137c70acbab", + "md5": "c77cb4dac5d6bdd1a64c232e2db278ba", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/html-jsx-lib.js", + "type": "file", + "name": "html-jsx-lib.js", + "base_name": "html-jsx-lib", + "extension": ".js", + "size": 332, + "date": "2018-03-12", + "sha1": "294378864c5953bd01e1f8adc21358eb6f3ba999", + "md5": "e2936f50f027b0317fb9df777e2f1934", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/jsfiddle-integration.js", + "type": "file", + "name": "jsfiddle-integration.js", + "base_name": "jsfiddle-integration", + "extension": ".js", + "size": 403, + "date": "2018-03-12", + "sha1": "a8efdf5b2c5d67a2bd5caf3b716aefd13b334a81", + "md5": "ae8d7746c539e1a555f6743dbc0ab099", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/live_editor.js", + "type": "file", + "name": "live_editor.js", + "base_name": "live_editor", + "extension": ".js", + "size": 6204, + "date": "2018-03-12", + "sha1": "d50b77860cf78037491a58b3152102b929040432", + "md5": "224f9a6cf4ba84db9ed3ad0ec289ba38", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/examples", + "type": "directory", + "name": "examples", + "base_name": "examples", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 3347, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/examples/.eslintrc", + "type": "file", + "name": ".eslintrc", + "base_name": ".eslintrc", + "extension": "", + "size": 113, + "date": "2018-03-12", + "sha1": "6d576a7089bf958d231eaed198039ffe427a4cb9", + "md5": "dfef1194990ac5e33cfe8eff89720f94", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/examples/hello.js", + "type": "file", + "name": "hello.js", + "base_name": "hello", + "extension": ".js", + "size": 370, + "date": "2018-03-12", + "sha1": "b07cdce85e802d18689c70d655621940b394bafc", + "md5": "fc39c89d74e5c0e1192d3b4a2adb65f3", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/examples/markdown.js", + "type": "file", + "name": "markdown.js", + "base_name": "markdown", + "extension": ".js", + "size": 934, + "date": "2018-03-12", + "sha1": "cfc1a0c7f594a10ada0086835b905649af3b055a", + "md5": "eef2da42fff67f59035c5f9377cc44f3", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/examples/timer.js", + "type": "file", + "name": "timer.js", + "base_name": "timer", + "extension": ".js", + "size": 675, + "date": "2018-03-12", + "sha1": "28be4bef3ca64125537e3e12203b416425ed8842", + "md5": "8fcf96787fc34be87424659eb10b9449", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_js/examples/todo.js", + "type": "file", + "name": "todo.js", + "base_name": "todo", + "extension": ".js", + "size": 1255, + "date": "2018-03-12", + "sha1": "1d70e105b4a2156dcd1f074084a2186725c9fd44", + "md5": "fafdf4f18d4628f3f403de1a8c931da6", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts", + "type": "directory", + "name": "_layouts", + "base_name": "_layouts", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 8245, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/community.html", + "type": "file", + "name": "community.html", + "base_name": "community", + "extension": ".html", + "size": 744, + "date": "2018-03-12", + "sha1": "494320f9e675a00d97c77883c8ead7773a3ec149", + "md5": "6004d1edfd9f188af0a36e12be5dfc5b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/contributing.html", + "type": "file", + "name": "contributing.html", + "base_name": "contributing", + "extension": ".html", + "size": 592, + "date": "2018-03-12", + "sha1": "3eb704a3e2f36429773d8cad24720ffce1781060", + "md5": "77dab4ebbf4e4724fa0546d31cdbb6b3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/default.html", + "type": "file", + "name": "default.html", + "base_name": "default", + "extension": ".html", + "size": 4041, + "date": "2018-03-12", + "sha1": "3e268a24a1f94d0087859e2028968b7b96ccdd83", + "md5": "abbfb339587a9bf8b43ca154762ced6b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/docs.html", + "type": "file", + "name": "docs.html", + "base_name": "docs", + "extension": ".html", + "size": 720, + "date": "2018-03-12", + "sha1": "b171628113faa0d4cecc76180811611f0497c2c7", + "md5": "cc7dc39c27e80ae28b88f2b6b327ec8e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/hero.html", + "type": "file", + "name": "hero.html", + "base_name": "hero", + "extension": ".html", + "size": 149, + "date": "2018-03-12", + "sha1": "fb96f1b9697f32775f123c7647ce09a7b8c4e5aa", + "md5": "ea03f5a5f6fe0ad7ca95f2fc7834ee61", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/page.html", + "type": "file", + "name": "page.html", + "base_name": "page", + "extension": ".html", + "size": 83, + "date": "2018-03-12", + "sha1": "19c7578354d8171dfb7f26250cd85e7e8a6b6d38", + "md5": "75de6d4e9e452189025eacfb370cf887", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/post.html", + "type": "file", + "name": "post.html", + "base_name": "post", + "extension": ".html", + "size": 243, + "date": "2018-03-12", + "sha1": "4f41f17c44e491e9a6f5229919488f2e203f6c8b", + "md5": "50ec63b2d16ff9774b0a7ce63a35b6e3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/redirect.html", + "type": "file", + "name": "redirect.html", + "base_name": "redirect", + "extension": ".html", + "size": 324, + "date": "2018-03-12", + "sha1": "c30e0ba614cdd21122cff22f24b8f588276adb87", + "md5": "cbe992cfb07df0778310eb9c420d0982", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/single.html", + "type": "file", + "name": "single.html", + "base_name": "single", + "extension": ".html", + "size": 605, + "date": "2018-03-12", + "sha1": "d0ce8c85c409f8f2e2775e657ba5f9e7476269a3", + "md5": "36e9c35b90f53a152d22883cdf2ed630", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_layouts/tutorial.html", + "type": "file", + "name": "tutorial.html", + "base_name": "tutorial", + "extension": ".html", + "size": 744, + "date": "2018-03-12", + "sha1": "1b1dfd41252a65c32a103fd1b003dbc021609d3c", + "md5": "8f409caa4615e4a634852d32eb2b08c9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_plugins", + "type": "directory", + "name": "_plugins", + "base_name": "_plugins", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 3275, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_plugins/authors.rb", + "type": "file", + "name": "authors.rb", + "base_name": "authors", + "extension": ".rb", + "size": 818, + "date": "2018-03-12", + "sha1": "d581f3c722f2d9cb9a1bfd96b850098718299a42", + "md5": "b30f96d631c057eed228b58c459e7e22", + "mime_type": "text/x-ruby", + "file_type": "Ruby module source, ASCII text", + "programming_language": "Ruby", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_plugins/highlight_lines.rb", + "type": "file", + "name": "highlight_lines.rb", + "base_name": "highlight_lines", + "extension": ".rb", + "size": 1439, + "date": "2018-03-12", + "sha1": "842c14f52b66341756c0ddbd82b3352f63b7eefa", + "md5": "7d8cf1b4d18961305b8b686555f64c83", + "mime_type": "text/x-ruby", + "file_type": "Ruby module source, ASCII text", + "programming_language": "Ruby", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_plugins/sidebar_item.rb", + "type": "file", + "name": "sidebar_item.rb", + "base_name": "sidebar_item", + "extension": ".rb", + "size": 1018, + "date": "2018-03-12", + "sha1": "76a55f7cf0fae39693a9ea7d38c078b117cd3993", + "md5": "3732ce048ce937731427d9854526bb7b", + "mime_type": "text/x-ruby", + "file_type": "Ruby module source, ASCII text", + "programming_language": "Ruby", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts", + "type": "directory", + "name": "_posts", + "base_name": "_posts", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 112, + "dirs_count": 0, + "size_count": 650687, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-06-02-jsfiddle-integration.md", + "type": "file", + "name": "2013-06-02-jsfiddle-integration.md", + "base_name": "2013-06-02-jsfiddle-integration", + "extension": ".md", + "size": 802, + "date": "2018-03-12", + "sha1": "38e85c15e28ba956a92342f93d3e1f91e98f996f", + "md5": "d2f672fa6d064873576925f6afe07928", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-06-05-why-react.md", + "type": "file", + "name": "2013-06-05-why-react.md", + "base_name": "2013-06-05-why-react", + "extension": ".md", + "size": 3985, + "date": "2018-03-12", + "sha1": "89ae663ca035b31ee3673d49eb11f38e5d41d4d2", + "md5": "b02f5ac905fae0c2819b07e452667b7d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-06-12-community-roundup.md", + "type": "file", + "name": "2013-06-12-community-roundup.md", + "base_name": "2013-06-12-community-roundup", + "extension": ".md", + "size": 3709, + "date": "2018-03-12", + "sha1": "9637f02d55a188d6e48a62ee51128884f210dfa3", + "md5": "ccb0a802f1573cedc89f2a7f9b15c027", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-06-19-community-roundup-2.md", + "type": "file", + "name": "2013-06-19-community-roundup-2.md", + "base_name": "2013-06-19-community-roundup-2", + "extension": ".md", + "size": 5362, + "date": "2018-03-12", + "sha1": "c32bced386bd2a4c411bc7e8588691a030a2a1f3", + "md5": "60de289e540affbd33c052dee2065864", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-06-21-react-v0-3-3.md", + "type": "file", + "name": "2013-06-21-react-v0-3-3.md", + "base_name": "2013-06-21-react-v0-3-3", + "extension": ".md", + "size": 984, + "date": "2018-03-12", + "sha1": "de794d3812781ed877bfb8b6cdf1629910ceb5b9", + "md5": "6828a52043b2bfd478e8e18f1bd29033", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-06-27-community-roundup-3.md", + "type": "file", + "name": "2013-06-27-community-roundup-3.md", + "base_name": "2013-06-27-community-roundup-3", + "extension": ".md", + "size": 5682, + "date": "2018-03-12", + "sha1": "288b36577918018c8e2b8c5cb1d38377ae003d24", + "md5": "308865954a880ba8c1497606efe1f3ac", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-07-02-react-v0-4-autobind-by-default.md", + "type": "file", + "name": "2013-07-02-react-v0-4-autobind-by-default.md", + "base_name": "2013-07-02-react-v0-4-autobind-by-default", + "extension": ".md", + "size": 2360, + "date": "2018-03-12", + "sha1": "be624a42429087f76b076244a5daf8469f81cd16", + "md5": "c19afd9122462dc0e79a83aaa1a6f89e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-07-03-community-roundup-4.md", + "type": "file", + "name": "2013-07-03-community-roundup-4.md", + "base_name": "2013-07-03-community-roundup-4", + "extension": ".md", + "size": 4354, + "date": "2018-03-12", + "sha1": "6d0a31c1a91f2822bae3d5c22cb57e4d8d13abc1", + "md5": "0066f67709d26972a180db0420eb3b28", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-07-11-react-v0-4-prop-validation-and-default-values.md", + "type": "file", + "name": "2013-07-11-react-v0-4-prop-validation-and-default-values.md", + "base_name": "2013-07-11-react-v0-4-prop-validation-and-default-values", + "extension": ".md", + "size": 2131, + "date": "2018-03-12", + "sha1": "9018059d8a7d87e952533fb60f195ca23aa52675", + "md5": "59bb384bd6f95b97a1490e87845d60df", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-07-17-react-v0-4-0.md", + "type": "file", + "name": "2013-07-17-react-v0-4-0.md", + "base_name": "2013-07-17-react-v0-4-0", + "extension": ".md", + "size": 3467, + "date": "2018-03-12", + "sha1": "9f8c3dcf5aa0af3eaf82773d691533bbab0ec309", + "md5": "a3c3cfe83c8cf64b615994bec18fc75d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-07-23-community-roundup-5.md", + "type": "file", + "name": "2013-07-23-community-roundup-5.md", + "base_name": "2013-07-23-community-roundup-5", + "extension": ".md", + "size": 6623, + "date": "2018-03-12", + "sha1": "ab03e3035c23fdb98d5a80796bbb644531da01cb", + "md5": "72ca8af7e49596e3e9d780a29ebbec2f", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-07-26-react-v0-4-1.md", + "type": "file", + "name": "2013-07-26-react-v0-4-1.md", + "base_name": "2013-07-26-react-v0-4-1", + "extension": ".md", + "size": 826, + "date": "2018-03-12", + "sha1": "f20174f363d232c9d5ac74f194481935c9d6c08e", + "md5": "59c56227023cd4f63d26ec9bc8c1b0d8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-07-30-use-react-and-jsx-in-ruby-on-rails.md", + "type": "file", + "name": "2013-07-30-use-react-and-jsx-in-ruby-on-rails.md", + "base_name": "2013-07-30-use-react-and-jsx-in-ruby-on-rails", + "extension": ".md", + "size": 1921, + "date": "2018-03-12", + "sha1": "ca985b774c708f50803c4f3c27f0fa880fa9fb7a", + "md5": "d273ad902c002f4fc0851d3dbf66eff1", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-08-05-community-roundup-6.md", + "type": "file", + "name": "2013-08-05-community-roundup-6.md", + "base_name": "2013-08-05-community-roundup-6", + "extension": ".md", + "size": 3743, + "date": "2018-03-12", + "sha1": "a760a659fc485524b1c71bb7296cf1c9ca314a74", + "md5": "6324e13a51314579225e7294414aec49", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Land of Lisp (http://landoflisp.com/)" + ], + "start_line": 74, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-08-19-use-react-and-jsx-in-python-applications.md", + "type": "file", + "name": "2013-08-19-use-react-and-jsx-in-python-applications.md", + "base_name": "2013-08-19-use-react-and-jsx-in-python-applications", + "extension": ".md", + "size": 2034, + "date": "2018-03-12", + "sha1": "681a7861d65a6616e68a3c710793fe1bf5c5e9a2", + "md5": "724f00ac14de09fa6dc3777236d796c2", + "mime_type": "text/x-python", + "file_type": "Python script, ASCII text executable, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-08-26-community-roundup-7.md", + "type": "file", + "name": "2013-08-26-community-roundup-7.md", + "base_name": "2013-08-26-community-roundup-7", + "extension": ".md", + "size": 4066, + "date": "2018-03-12", + "sha1": "c44ba1704a7955490cff42460617e2e333994f94", + "md5": "e0b11089544ff61505e9cf04c0b75aab", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-09-24-community-roundup-8.md", + "type": "file", + "name": "2013-09-24-community-roundup-8.md", + "base_name": "2013-09-24-community-roundup-8", + "extension": ".md", + "size": 7322, + "date": "2018-03-12", + "sha1": "278240e5cb03b20d0c742aac317b16c098abef6a", + "md5": "453beee017c96ab78915f7660b4c6b0e", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-10-16-react-v0.5.0.md", + "type": "file", + "name": "2013-10-16-react-v0.5.0.md", + "base_name": "2013-10-16-react-v0.5.0", + "extension": ".md", + "size": 4204, + "date": "2018-03-12", + "sha1": "73bfbe669c79a31ff9a1d50ebd7fc4b1a89b5535", + "md5": "e927cd9f72d9edb5db3a42ab463e032d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-10-29-react-v0-5-1.md", + "type": "file", + "name": "2013-10-29-react-v0-5-1.md", + "base_name": "2013-10-29-react-v0-5-1", + "extension": ".md", + "size": 795, + "date": "2018-03-12", + "sha1": "958d7035f60afa7170631db738a0239bf30a5287", + "md5": "52cd1fd419b4f00cf1f20ea9fd207340", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-10-3-community-roundup-9.md", + "type": "file", + "name": "2013-10-3-community-roundup-9.md", + "base_name": "2013-10-3-community-roundup-9", + "extension": ".md", + "size": 4448, + "date": "2018-03-12", + "sha1": "4e711e856842046e79bbe7de50270be4034b221f", + "md5": "e4d1467b23a3de82a0b80845f3c8c51a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-11-06-community-roundup-10.md", + "type": "file", + "name": "2013-11-06-community-roundup-10.md", + "base_name": "2013-11-06-community-roundup-10", + "extension": ".md", + "size": 8386, + "date": "2018-03-12", + "sha1": "e5dd4edc4847627239f0f755549e7c4d03d247c5", + "md5": "44fbacb6344a21840098fcb3b325bfe3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-11-18-community-roundup-11.md", + "type": "file", + "name": "2013-11-18-community-roundup-11.md", + "base_name": "2013-11-18-community-roundup-11", + "extension": ".md", + "size": 6362, + "date": "2018-03-12", + "sha1": "95b09ac7e846123452b5dc28553b164408874775", + "md5": "ae74a9cd8153605b7d70058f1bd8d169", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-12-18-react-v0.5.2-v0.4.2.md", + "type": "file", + "name": "2013-12-18-react-v0.5.2-v0.4.2.md", + "base_name": "2013-12-18-react-v0.5.2-v0.4.2", + "extension": ".md", + "size": 1781, + "date": "2018-03-12", + "sha1": "860e5f0f09d064e1814c9129e71cb1c7ea0667a7", + "md5": "b7f6b3bf1b2e9202f36a6a38430e217a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-12-19-react-v0.8.0.md", + "type": "file", + "name": "2013-12-19-react-v0.8.0.md", + "base_name": "2013-12-19-react-v0.8.0", + "extension": ".md", + "size": 2433, + "date": "2018-03-12", + "sha1": "84f73c35750960003164805c798088e592bca525", + "md5": "b96d863e8825e5aaad39de44fc88689a", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-12-23-community-roundup-12.md", + "type": "file", + "name": "2013-12-23-community-roundup-12.md", + "base_name": "2013-12-23-community-roundup-12", + "extension": ".md", + "size": 6121, + "date": "2018-03-12", + "sha1": "60371a4a4acb8378c154bf3fd4aea6a184ad5617", + "md5": "a5714b1d99757ac7a1545ec62d6034ff", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2013-12-30-community-roundup-13.md", + "type": "file", + "name": "2013-12-30-community-roundup-13.md", + "base_name": "2013-12-30-community-roundup-13", + "extension": ".md", + "size": 5124, + "date": "2018-03-12", + "sha1": "a2498e55d6d475c29af700e54cc9573322eafee8", + "md5": "925b8d025c925a3be796c948880b9bc2", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Facebook alongside React." + ], + "start_line": 106, + "end_line": 106 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-01-02-react-chrome-developer-tools.md", + "type": "file", + "name": "2014-01-02-react-chrome-developer-tools.md", + "base_name": "2014-01-02-react-chrome-developer-tools", + "extension": ".md", + "size": 1901, + "date": "2018-03-12", + "sha1": "772035314c98d6c6b5b190845d563b6f2802128f", + "md5": "0f2f64be7da41478a2a16979a2f0699e", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-01-06-community-roundup-14.md", + "type": "file", + "name": "2014-01-06-community-roundup-14.md", + "base_name": "2014-01-06-community-roundup-14", + "extension": ".md", + "size": 4419, + "date": "2018-03-12", + "sha1": "c820a2f64f813faceb3e37ebb6bdef40f6a6c57f", + "md5": "1506c427aa444ad68503af3be42f0b26", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-02-05-community-roundup-15.md", + "type": "file", + "name": "2014-02-05-community-roundup-15.md", + "base_name": "2014-02-05-community-roundup-15", + "extension": ".md", + "size": 7318, + "date": "2018-03-12", + "sha1": "eb9eb94bbbbd97e3eb45e8a8e7353551d8cb1a85", + "md5": "e2f74440280486d89243cd5c7eb69f97", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-02-15-community-roundup-16.md", + "type": "file", + "name": "2014-02-15-community-roundup-16.md", + "base_name": "2014-02-15-community-roundup-16", + "extension": ".md", + "size": 6998, + "date": "2018-03-12", + "sha1": "c731e817428b3bfba835c0d4eb09939abdde37e4", + "md5": "4d75ece445ca8f038232a39e08c665eb", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-02-16-react-v0.9-rc1.md", + "type": "file", + "name": "2014-02-16-react-v0.9-rc1.md", + "base_name": "2014-02-16-react-v0.9-rc1", + "extension": ".md", + "size": 7722, + "date": "2018-03-12", + "sha1": "485d4fc1dbd19ccadf438f249c6a1180b0087975", + "md5": "c1351f55973568cdcf27aefe94822a52", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-02-20-react-v0.9.md", + "type": "file", + "name": "2014-02-20-react-v0.9.md", + "base_name": "2014-02-20-react-v0.9", + "extension": ".md", + "size": 8836, + "date": "2018-03-12", + "sha1": "6aa9a0e5f9ce8cdf2c0e642c16b17ab00fa8bb75", + "md5": "07b37fa283f7533e9ec262f24ed59172", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-02-24-community-roundup-17.md", + "type": "file", + "name": "2014-02-24-community-roundup-17.md", + "base_name": "2014-02-24-community-roundup-17", + "extension": ".md", + "size": 5891, + "date": "2018-03-12", + "sha1": "0321f7e32ae2aff54435bae77d59bcf3c314ac97", + "md5": "f7f799d490fc000e2fd97a541bc33975", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-03-14-community-roundup-18.md", + "type": "file", + "name": "2014-03-14-community-roundup-18.md", + "base_name": "2014-03-14-community-roundup-18", + "extension": ".md", + "size": 7896, + "date": "2018-03-12", + "sha1": "2ea106f6ee5cdb0516168fef38ff92ebf470f610", + "md5": "783e44b4d3765ee5d3dfcfc58f0b19c2", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-03-19-react-v0.10-rc1.md", + "type": "file", + "name": "2014-03-19-react-v0.10-rc1.md", + "base_name": "2014-03-19-react-v0.10-rc1", + "extension": ".md", + "size": 4229, + "date": "2018-03-12", + "sha1": "2d8c5de6e5ddf9829a0242226640b16795e669c5", + "md5": "65ef4b2a767f321f6527a79c53e2b92d", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-03-21-react-v0.10.md", + "type": "file", + "name": "2014-03-21-react-v0.10.md", + "base_name": "2014-03-21-react-v0.10", + "extension": ".md", + "size": 4295, + "date": "2018-03-12", + "sha1": "c4a07b8cf2270c8ec585549b2829075a3601f76f", + "md5": "b8440dc383add5de46a14a7c4a7f8806", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-03-28-the-road-to-1.0.md", + "type": "file", + "name": "2014-03-28-the-road-to-1.0.md", + "base_name": "2014-03-28-the-road-to-1.0", + "extension": ".md", + "size": 4558, + "date": "2018-03-12", + "sha1": "6d6e2bd848237b2be9efb3f87cd75e463d4ed198", + "md5": "b71f16b590081dbb468f4ea91e4a2cf6", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-04-04-reactnet.md", + "type": "file", + "name": "2014-04-04-reactnet.md", + "base_name": "2014-04-04-reactnet", + "extension": ".md", + "size": 1594, + "date": "2018-03-12", + "sha1": "3494e18b2a0eaf94b41e375a61e0431980636cc7", + "md5": "a94ba51627b94de88a13dbd1c593791d", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-05-06-flux.md", + "type": "file", + "name": "2014-05-06-flux.md", + "base_name": "2014-05-06-flux", + "extension": ".md", + "size": 2023, + "date": "2018-03-12", + "sha1": "160129b5cf59e6f7cc50874c454d340f09d96f7f", + "md5": "fb0c679609b0473afb6cf5d5b1d377c4", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-05-29-one-year-of-open-source-react.md", + "type": "file", + "name": "2014-05-29-one-year-of-open-source-react.md", + "base_name": "2014-05-29-one-year-of-open-source-react", + "extension": ".md", + "size": 2279, + "date": "2018-03-12", + "sha1": "d44acbcc233f2101e1efa01517abf5137a1ec5b5", + "md5": "6e2a5676cf07beda5d71b9f6d64c66b5", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-06-27-community-roundup-19.md", + "type": "file", + "name": "2014-06-27-community-roundup-19.md", + "base_name": "2014-06-27-community-roundup-19", + "extension": ".md", + "size": 5554, + "date": "2018-03-12", + "sha1": "8a03a5825a93b6a6ab766a5426433da7f421b5a9", + "md5": "e16c065bfaa0df12a8b93b3438c731fa", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-07-13-react-v0.11-rc1.md", + "type": "file", + "name": "2014-07-13-react-v0.11-rc1.md", + "base_name": "2014-07-13-react-v0.11-rc1", + "extension": ".md", + "size": 6247, + "date": "2018-03-12", + "sha1": "e3fb2af7986ca34b1632f3ff13af356eee1a8cae", + "md5": "d8b0f065465ee0e2f8fbae840b60ea20", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-07-17-react-v0.11.md", + "type": "file", + "name": "2014-07-17-react-v0.11.md", + "base_name": "2014-07-17-react-v0.11", + "extension": ".md", + "size": 9322, + "date": "2018-03-12", + "sha1": "857ae59d36b181caabc83a2447e08984bc901c8e", + "md5": "28908ec2e52d12dee944a4092477c17b", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-07-25-react-v0.11.1.md", + "type": "file", + "name": "2014-07-25-react-v0.11.1.md", + "base_name": "2014-07-25-react-v0.11.1", + "extension": ".md", + "size": 2646, + "date": "2018-03-12", + "sha1": "fd39a92b443d49d877dcdaf8a57476aee3d1091c", + "md5": "c21dcf235ae360c440e0c6dd33ac93ff", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-07-28-community-roundup-20.md", + "type": "file", + "name": "2014-07-28-community-roundup-20.md", + "base_name": "2014-07-28-community-roundup-20", + "extension": ".md", + "size": 6021, + "date": "2018-03-12", + "sha1": "d7cbcffb84a2e0b542c4f0258072b8e87817edbe", + "md5": "4820df5f04a79742e959c460f1653a1e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-07-30-flux-actions-and-the-dispatcher.md", + "type": "file", + "name": "2014-07-30-flux-actions-and-the-dispatcher.md", + "base_name": "2014-07-30-flux-actions-and-the-dispatcher", + "extension": ".md", + "size": 5887, + "date": "2018-03-12", + "sha1": "470c7c2fe37a0441537d5f8b1acffa831bf9a368", + "md5": "1b5a79ed9b2bfe184628a21130a94874", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-08-03-community-roundup-21.md", + "type": "file", + "name": "2014-08-03-community-roundup-21.md", + "base_name": "2014-08-03-community-roundup-21", + "extension": ".md", + "size": 5760, + "date": "2018-03-12", + "sha1": "88e46cd611b3746e50d290be506ce033bfe74dc3", + "md5": "8d9bce0e54835355567d96f4a6bac634", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "JavaScript Framework Guide (http://www.funnyant.com/javascript-framework-guide/)" + ], + "start_line": 36, + "end_line": 36 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-09-03-introducing-the-jsx-specification.md", + "type": "file", + "name": "2014-09-03-introducing-the-jsx-specification.md", + "base_name": "2014-09-03-introducing-the-jsx-specification", + "extension": ".md", + "size": 1112, + "date": "2018-03-12", + "sha1": "8f91544731e75cb5302b04ed321aceec593769c8", + "md5": "79e311f7b02067318d660ec1194a7b70", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-09-12-community-round-up-22.md", + "type": "file", + "name": "2014-09-12-community-round-up-22.md", + "base_name": "2014-09-12-community-round-up-22", + "extension": ".md", + "size": 6565, + "date": "2018-03-12", + "sha1": "eee043f064ea4b43df73baf31b532765960dc974", + "md5": "c31f89aeae0d21f8e109689217372b68", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-09-16-react-v0.11.2.md", + "type": "file", + "name": "2014-09-16-react-v0.11.2.md", + "base_name": "2014-09-16-react-v0.11.2", + "extension": ".md", + "size": 2615, + "date": "2018-03-12", + "sha1": "79ec88ecfbd4e1475cb6896ca58a89ffa04dfe09", + "md5": "ee487003bcee4f58412f02993d5cded6", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-09-24-testing-flux-applications.md", + "type": "file", + "name": "2014-09-24-testing-flux-applications.md", + "base_name": "2014-09-24-testing-flux-applications", + "extension": ".md", + "size": 12134, + "date": "2018-03-12", + "sha1": "105ee3ad3981eff521588ece4ca5fca5c5fec965", + "md5": "25c58bf887b3429ebbb6fa2a9388c65e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-10-14-introducing-react-elements.md", + "type": "file", + "name": "2014-10-14-introducing-react-elements.md", + "base_name": "2014-10-14-introducing-react-elements", + "extension": ".md", + "size": 8582, + "date": "2018-03-12", + "sha1": "d4141f5a3135ef6c237cee2ac52bb33bea893f17", + "md5": "8a3eec4f5f52540d7adbfe9a9ff88a19", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-10-16-react-v0.12-rc1.md", + "type": "file", + "name": "2014-10-16-react-v0.12-rc1.md", + "base_name": "2014-10-16-react-v0.12-rc1", + "extension": ".md", + "size": 7504, + "date": "2018-03-12", + "sha1": "7200b9620459941211d79d1c567e093ac1981322", + "md5": "867fe34be60462d940493dd48cce6372", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-10-17-community-roundup-23.md", + "type": "file", + "name": "2014-10-17-community-roundup-23.md", + "base_name": "2014-10-17-community-roundup-23", + "extension": ".md", + "size": 9210, + "date": "2018-03-12", + "sha1": "6374c45688ffb11d487047c7583d2f4952c867bf", + "md5": "bbeefa5fddc5d92d74f1e52f65e60d71", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Fatih Kadir Akin (https://github.com/f)." + ], + "start_line": 131, + "end_line": 131 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-10-27-react-js-conf.md", + "type": "file", + "name": "2014-10-27-react-js-conf.md", + "base_name": "2014-10-27-react-js-conf", + "extension": ".md", + "size": 1144, + "date": "2018-03-12", + "sha1": "5fcbca091f7868d839ca035fc042fdcd13428472", + "md5": "f04eb9f8b165ed6d2703c711b4e53ec2", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-10-28-react-v0.12.md", + "type": "file", + "name": "2014-10-28-react-v0.12.md", + "base_name": "2014-10-28-react-v0.12", + "extension": ".md", + "size": 7429, + "date": "2018-03-12", + "sha1": "a4709aae8a30bb54ec4f0880374c0c864f446ff0", + "md5": "0ac18fd1558f616b7ad035da028c0952", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 15.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 49, + "end_line": 49, + "matched_rule": { + "identifier": "bsd-new_10.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + }, + { + "key": "bsd-new", + "score": 10.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 62, + "end_line": 62, + "matched_rule": { + "identifier": "bsd-new_169.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-11-24-react-js-conf-updates.md", + "type": "file", + "name": "2014-11-24-react-js-conf-updates.md", + "base_name": "2014-11-24-react-js-conf-updates", + "extension": ".md", + "size": 2019, + "date": "2018-03-12", + "sha1": "93076f8c286c53a22dbcae365a5eb1741c51f3b4", + "md5": "8c1a68b868fb648e014db433f3772531", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-11-25-community-roundup-24.md", + "type": "file", + "name": "2014-11-25-community-roundup-24.md", + "base_name": "2014-11-25-community-roundup-24", + "extension": ".md", + "size": 9716, + "date": "2018-03-12", + "sha1": "77cd9fdf5644d2df3400b1b443b7565d293b1d88", + "md5": "b8ad49e67fb7d5b7cc0760a2bccf2357", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "William Boyd. Dive" + ], + "start_line": 45, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-12-18-react-v0.12.2.md", + "type": "file", + "name": "2014-12-18-react-v0.12.2.md", + "base_name": "2014-12-18-react-v0.12.2", + "extension": ".md", + "size": 1861, + "date": "2018-03-12", + "sha1": "8c1102dc34c423412764706f3ae9ae5217f683d1", + "md5": "b746f2b0f9bd36deec0715ed0b20d9ef", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2014-12-19-react-js-conf-diversity-scholarship.md", + "type": "file", + "name": "2014-12-19-react-js-conf-diversity-scholarship.md", + "base_name": "2014-12-19-react-js-conf-diversity-scholarship", + "extension": ".md", + "size": 3107, + "date": "2018-03-12", + "sha1": "1ce9be71ac9a89b451ed4ddd01e952a9baf1a81c", + "md5": "69d80b32f23176ca5a893e81139c484f", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-01-27-react-v0.13.0-beta-1.md", + "type": "file", + "name": "2015-01-27-react-v0.13.0-beta-1.md", + "base_name": "2015-01-27-react-v0.13.0-beta-1", + "extension": ".md", + "size": 5821, + "date": "2018-03-12", + "sha1": "7301366f8db1dae5a22609b250eae86175fe00f7", + "md5": "94a485b652c84996bc99912d81c8d18c", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-02-18-react-conf-roundup-2015.md", + "type": "file", + "name": "2015-02-18-react-conf-roundup-2015.md", + "base_name": "2015-02-18-react-conf-roundup-2015", + "extension": ".md", + "size": 16974, + "date": "2018-03-12", + "sha1": "4529ff6c48b7cc7215c012bd2d707785d308521d", + "md5": "6ef03b841329fc18387b33c0c761b26c", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-02-20-introducing-relay-and-graphql.md", + "type": "file", + "name": "2015-02-20-introducing-relay-and-graphql.md", + "base_name": "2015-02-20-introducing-relay-and-graphql", + "extension": ".md", + "size": 8046, + "date": "2018-03-12", + "sha1": "4b9a69dbd09a5abee81c5a4d938697b6edba3045", + "md5": "ace77a5d9130647e57e4520efc1f55f5", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-02-24-react-v0.13-rc1.md", + "type": "file", + "name": "2015-02-24-react-v0.13-rc1.md", + "base_name": "2015-02-24-react-v0.13-rc1", + "extension": ".md", + "size": 4972, + "date": "2018-03-12", + "sha1": "b5b493ee06cef99237ec38e65fe4e39069895393", + "md5": "52b34c87c95e949a948d8742a39e0e6d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-02-24-streamlining-react-elements.md", + "type": "file", + "name": "2015-02-24-streamlining-react-elements.md", + "base_name": "2015-02-24-streamlining-react-elements", + "extension": ".md", + "size": 11521, + "date": "2018-03-12", + "sha1": "706e345200d342d29f8d603890dc91aea2f5ad37", + "md5": "53cf27d893904e805eca7901ea2a51e3", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-03-03-react-v0.13-rc2.md", + "type": "file", + "name": "2015-03-03-react-v0.13-rc2.md", + "base_name": "2015-03-03-react-v0.13-rc2", + "extension": ".md", + "size": 3569, + "date": "2018-03-12", + "sha1": "c663c55d89ad0319c30d988332a111f003346973", + "md5": "2bc45c509c28747e05205f5aa31fe446", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-03-04-community-roundup-25.md", + "type": "file", + "name": "2015-03-04-community-roundup-25.md", + "base_name": "2015-03-04-community-roundup-25", + "extension": ".md", + "size": 6345, + "date": "2018-03-12", + "sha1": "c8defa2dbd1b20b868d5bc440e840d406b404ea2", + "md5": "951f73ca2a18e9e6b0d22c526d255dda", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-03-10-react-v0.13.md", + "type": "file", + "name": "2015-03-10-react-v0.13.md", + "base_name": "2015-03-10-react-v0.13", + "extension": ".md", + "size": 6654, + "date": "2018-03-12", + "sha1": "d8bfb50afcfebb21f45ebe1bfa31190c62d92ce3", + "md5": "92f60d5dfca7b67630bcef5b0d4c926f", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-03-16-react-v0.13.1.md", + "type": "file", + "name": "2015-03-16-react-v0.13.1.md", + "base_name": "2015-03-16-react-v0.13.1", + "extension": ".md", + "size": 1576, + "date": "2018-03-12", + "sha1": "d476eb3dda87a6b47aa13465ad13d5115a7ac180", + "md5": "fdb21fbe1c81307ac5c1fb2c0a0da85e", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-03-19-building-the-facebook-news-feed-with-relay.md", + "type": "file", + "name": "2015-03-19-building-the-facebook-news-feed-with-relay.md", + "base_name": "2015-03-19-building-the-facebook-news-feed-with-relay", + "extension": ".md", + "size": 8996, + "date": "2018-03-12", + "sha1": "e2691deb6425f6907857ccedeb719bea4d1c92b0", + "md5": "ff8daab3f6415bcb48e9c48675c58ca5", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-03-26-introducing-react-native.md", + "type": "file", + "name": "2015-03-26-introducing-react-native.md", + "base_name": "2015-03-26-introducing-react-native", + "extension": ".md", + "size": 1557, + "date": "2018-03-12", + "sha1": "65b0e998feda3c51ad16f2d7ea08fb26e2bd972d", + "md5": "ed48e80f1d1d7dcd232fc707d14ccfb3", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-03-30-community-roundup-26.md", + "type": "file", + "name": "2015-03-30-community-roundup-26.md", + "base_name": "2015-03-30-community-roundup-26", + "extension": ".md", + "size": 5733, + "date": "2018-03-12", + "sha1": "b6f39f7c1e02371d523fda4bc9ec93505ec4e034", + "md5": "4c85633cf000827b3f8f34d864c6f1d2", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-04-17-react-native-v0.4.md", + "type": "file", + "name": "2015-04-17-react-native-v0.4.md", + "base_name": "2015-04-17-react-native-v0.4", + "extension": ".md", + "size": 3181, + "date": "2018-03-12", + "sha1": "d71abc1d874347d320e2b2193a3d502b75d23361", + "md5": "4218b2110cab30f053dc0d8edb10883f", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-04-18-react-v0.13.2.md", + "type": "file", + "name": "2015-04-18-react-v0.13.2.md", + "base_name": "2015-04-18-react-v0.13.2", + "extension": ".md", + "size": 1746, + "date": "2018-03-12", + "sha1": "594ed58d267a2e19e45fd7cfe174266377802a59", + "md5": "031c16f0e7153d99f118a1d366b46918", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-05-01-graphql-introduction.md", + "type": "file", + "name": "2015-05-01-graphql-introduction.md", + "base_name": "2015-05-01-graphql-introduction", + "extension": ".md", + "size": 13271, + "date": "2018-03-12", + "sha1": "f1d5699c2f4921bcb8975293b33b9c2c25dec230", + "md5": "0ee038e602a2f7e309403ac2a7bbb8ea", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-05-08-react-v0.13.3.md", + "type": "file", + "name": "2015-05-08-react-v0.13.3.md", + "base_name": "2015-05-08-react-v0.13.3", + "extension": ".md", + "size": 1463, + "date": "2018-03-12", + "sha1": "f35276e39ced7f6b829db8520c95725c11b3f0ec", + "md5": "d7d51b721d8fb08ae1ff3e8e396946bd", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-05-22-react-native-release-process.md", + "type": "file", + "name": "2015-05-22-react-native-release-process.md", + "base_name": "2015-05-22-react-native-release-process", + "extension": ".md", + "size": 1978, + "date": "2018-03-12", + "sha1": "6cd88f852e95092d21368e601510455c46d559e3", + "md5": "4141e0b8765423191006ba9fd2993aa7", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-06-12-deprecating-jstransform-and-react-tools.md", + "type": "file", + "name": "2015-06-12-deprecating-jstransform-and-react-tools.md", + "base_name": "2015-06-12-deprecating-jstransform-and-react-tools", + "extension": ".md", + "size": 2909, + "date": "2018-03-12", + "sha1": "41fd763a99b0e21f7a7a121f95c4bdf2c04c5db8", + "md5": "4071ebc67e99baf12759c43faa76d162", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-07-03-react-v0.14-beta-1.md", + "type": "file", + "name": "2015-07-03-react-v0.14-beta-1.md", + "base_name": "2015-07-03-react-v0.14-beta-1", + "extension": ".md", + "size": 6672, + "date": "2018-03-12", + "sha1": "e33c344bdf6864b6bda8ff0872a68fef3891bc5c", + "md5": "c0775d1fa68dd2e87a7aa0ce999ec451", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-08-03-new-react-devtools-beta.md", + "type": "file", + "name": "2015-08-03-new-react-devtools-beta.md", + "base_name": "2015-08-03-new-react-devtools-beta", + "extension": ".md", + "size": 2888, + "date": "2018-03-12", + "sha1": "0f7e983f7125f5c5ba6aa9678e0c9fd3a377beeb", + "md5": "1ab3dca2ceef3a9642619ae17aae3e09", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-08-11-relay-technical-preview.md", + "type": "file", + "name": "2015-08-11-relay-technical-preview.md", + "base_name": "2015-08-11-relay-technical-preview", + "extension": ".md", + "size": 3437, + "date": "2018-03-12", + "sha1": "d2550a8fd1eb8ab8511959e90313a5689ed1df87", + "md5": "39b095c7b8f31b68eabd5790cb3a13e7", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-08-13-reacteurope-roundup.md", + "type": "file", + "name": "2015-08-13-reacteurope-roundup.md", + "base_name": "2015-08-13-reacteurope-roundup", + "extension": ".md", + "size": 8004, + "date": "2018-03-12", + "sha1": "c00326cb1d106fd3b25282246df042cd39512347", + "md5": "e9e16210d558317f6e6c9c76ad22c2a1", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-09-02-new-react-developer-tools.md", + "type": "file", + "name": "2015-09-02-new-react-developer-tools.md", + "base_name": "2015-09-02-new-react-developer-tools", + "extension": ".md", + "size": 1763, + "date": "2018-03-12", + "sha1": "2a6116b5e9f4f33d304579e47a937bb08fab77d1", + "md5": "ea3575c9a3d4933190117faf169cc62a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-09-10-react-v0.14-rc1.md", + "type": "file", + "name": "2015-09-10-react-v0.14-rc1.md", + "base_name": "2015-09-10-react-v0.14-rc1", + "extension": ".md", + "size": 15542, + "date": "2018-03-12", + "sha1": "4a1e4056f611396fd742a59b186e9bf1b05a6651", + "md5": "a8820dee86d3ec32a5e5a88f6846e801", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "ES2015 (ES6) Symbol (http://www.2ality.com/2014/12/es6-symbols.html)" + ], + "start_line": 151, + "end_line": 154 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-09-14-community-roundup-27.md", + "type": "file", + "name": "2015-09-14-community-roundup-27.md", + "base_name": "2015-09-14-community-roundup-27", + "extension": ".md", + "size": 8847, + "date": "2018-03-12", + "sha1": "fdc8f05ea7454e6f91c396896ce465701592a7ec", + "md5": "a4a67eb6326b71b853db6fd89d238a12", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-10-01-react-render-and-top-level-api.md", + "type": "file", + "name": "2015-10-01-react-render-and-top-level-api.md", + "base_name": "2015-10-01-react-render-and-top-level-api", + "extension": ".md", + "size": 5329, + "date": "2018-03-12", + "sha1": "19917810261455a732df575dd616d17e7ada0436", + "md5": "983506b8b075f42c9db5cb3be0076f60", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-10-07-react-v0.14.md", + "type": "file", + "name": "2015-10-07-react-v0.14.md", + "base_name": "2015-10-07-react-v0.14", + "extension": ".md", + "size": 17199, + "date": "2018-03-12", + "sha1": "52e47f75ac8b33b81914a4ee67c84eae9dd8b4be", + "md5": "c5931cafb2a0cf34870e0c2d9f0f8327", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "ES2015 (ES6) Symbol (http://www.2ality.com/2014/12/es6-symbols.html)" + ], + "start_line": 175, + "end_line": 178 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-10-19-reactiflux-is-moving-to-discord.md", + "type": "file", + "name": "2015-10-19-reactiflux-is-moving-to-discord.md", + "base_name": "2015-10-19-reactiflux-is-moving-to-discord", + "extension": ".md", + "size": 5980, + "date": "2018-03-12", + "sha1": "93527c8d44cb2ddfb2a02b5fcd5b5fe8266a8bc1", + "md5": "3c51d7168f308d6aa50262967a8e44fd", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-10-28-react-v0.14.1.md", + "type": "file", + "name": "2015-10-28-react-v0.14.1.md", + "base_name": "2015-10-28-react-v0.14.1", + "extension": ".md", + "size": 1624, + "date": "2018-03-12", + "sha1": "fe076a29573badd9425af79ab922eac4dc5e47ad", + "md5": "91e03e2f37ea7f563728ab79dd78082d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-11-02-react-v0.14.2.md", + "type": "file", + "name": "2015-11-02-react-v0.14.2.md", + "base_name": "2015-11-02-react-v0.14.2", + "extension": ".md", + "size": 1945, + "date": "2018-03-12", + "sha1": "c5cb791d3dfbcb994b5b47e4cef951c193782b16", + "md5": "45ea1fbfc21370b56e9a205730a87249", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-11-18-react-v0.14.3.md", + "type": "file", + "name": "2015-11-18-react-v0.14.3.md", + "base_name": "2015-11-18-react-v0.14.3", + "extension": ".md", + "size": 2238, + "date": "2018-03-12", + "sha1": "876687fd88d43b9c78d4082df201cb331257b6b8", + "md5": "e37b9dfcfa1c2dfb055ce8c6ea4a3f8f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-12-04-react-js-conf-2016-diversity-scholarship.md", + "type": "file", + "name": "2015-12-04-react-js-conf-2016-diversity-scholarship.md", + "base_name": "2015-12-04-react-js-conf-2016-diversity-scholarship", + "extension": ".md", + "size": 4020, + "date": "2018-03-12", + "sha1": "19b09ec393eca135a2b5ec229f287a4b69fae7c8", + "md5": "063ca0ddfda317dfd414bcdc535a52ac", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "11:59 PST Applications" + ], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-12-16-ismounted-antipattern.md", + "type": "file", + "name": "2015-12-16-ismounted-antipattern.md", + "base_name": "2015-12-16-ismounted-antipattern", + "extension": ".md", + "size": 3490, + "date": "2018-03-12", + "sha1": "af40acbb0749f496f21b62d7a782379026c03657", + "md5": "9faa5a92c9ffdc1282e26f52de3d71e6", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-12-18-react-components-elements-and-instances.md", + "type": "file", + "name": "2015-12-18-react-components-elements-and-instances.md", + "base_name": "2015-12-18-react-components-elements-and-instances", + "extension": ".md", + "size": 14475, + "date": "2018-03-12", + "sha1": "5c40ed091324455afe39cfc05a7df2abe33b2fe3", + "md5": "f9e62c460af5a924ede0ca5242d6d7f0", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2015-12-29-react-v0.14.4.md", + "type": "file", + "name": "2015-12-29-react-v0.14.4.md", + "base_name": "2015-12-29-react-v0.14.4", + "extension": ".md", + "size": 1521, + "date": "2018-03-12", + "sha1": "a829011e3b42e946e665e95632ef856612d39a10", + "md5": "8a2e3f444e6a0fe312608db75b37493c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-01-08-A-implies-B-does-not-imply-B-implies-A.md", + "type": "file", + "name": "2016-01-08-A-implies-B-does-not-imply-B-implies-A.md", + "base_name": "2016-01-08-A-implies-B-does-not-imply-B-implies-A", + "extension": ".md", + "size": 4186, + "date": "2018-03-12", + "sha1": "4edbbb9d8f8fa9f121c02ac8f39b3e7cc1e46b80", + "md5": "b18f0a46948c6d6497b5409649e8ea60", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-01-12-discontinuing-ie8-support.md", + "type": "file", + "name": "2016-01-12-discontinuing-ie8-support.md", + "base_name": "2016-01-12-discontinuing-ie8-support", + "extension": ".md", + "size": 1032, + "date": "2018-03-12", + "sha1": "fa13b0d6636b7925644d6ec3e62b0bb581b03307", + "md5": "075c63fb61d9350914ddcface1058117", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-02-19-new-versioning-scheme.md", + "type": "file", + "name": "2016-02-19-new-versioning-scheme.md", + "base_name": "2016-02-19-new-versioning-scheme", + "extension": ".md", + "size": 4255, + "date": "2018-03-12", + "sha1": "e2a2f5e80e874a45643cd178c47b422743d105f6", + "md5": "9ca14b825eac202f7ba213d596e4bbcd", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-03-07-react-v15-rc1.md", + "type": "file", + "name": "2016-03-07-react-v15-rc1.md", + "base_name": "2016-03-07-react-v15-rc1", + "extension": ".md", + "size": 10056, + "date": "2018-03-12", + "sha1": "902a8ccdcd810d55721ea018db8d17f1c68aca5f", + "md5": "ae54c71376190a9029c3274073aebc55", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-03-16-react-v15-rc2.md", + "type": "file", + "name": "2016-03-16-react-v15-rc2.md", + "base_name": "2016-03-16-react-v15-rc2", + "extension": ".md", + "size": 3182, + "date": "2018-03-12", + "sha1": "3ca5933711e7ca0e76769f6e95a305753e5a6a57", + "md5": "2d35e2b36db970f1482c77d159e1fc4a", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-03-29-react-v0.14.8.md", + "type": "file", + "name": "2016-03-29-react-v0.14.8.md", + "base_name": "2016-03-29-react-v0.14.8", + "extension": ".md", + "size": 1531, + "date": "2018-03-12", + "sha1": "dc9bb19754a875d44414b77914e6e182d2206635", + "md5": "40cd7177d0a35f6c94da9b14da69cd4b", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-04-07-react-v15.md", + "type": "file", + "name": "2016-04-07-react-v15.md", + "base_name": "2016-04-07-react-v15", + "extension": ".md", + "size": 25133, + "date": "2018-03-12", + "sha1": "8db7ef27bc444255274392310e2eaabce6d63f67", + "md5": "1d6840fadd743d28aac089665b996a83", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-04-08-react-v15.0.1.md", + "type": "file", + "name": "2016-04-08-react-v15.0.1.md", + "base_name": "2016-04-08-react-v15.0.1", + "extension": ".md", + "size": 2995, + "date": "2018-03-12", + "sha1": "7ba49632ee4e39d7cf8e5c85461622c936f68797", + "md5": "1bf6949a9cbd09eb106ebff6f8844345", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-07-11-introducing-reacts-error-code-system.md", + "type": "file", + "name": "2016-07-11-introducing-reacts-error-code-system.md", + "base_name": "2016-07-11-introducing-reacts-error-code-system", + "extension": ".md", + "size": 2438, + "date": "2018-03-12", + "sha1": "649e15612447105c8b98acfdca5a92edc24cd1b5", + "md5": "a9870771133b05db8f76de7367e05e27", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-07-13-mixins-considered-harmful.md", + "type": "file", + "name": "2016-07-13-mixins-considered-harmful.md", + "base_name": "2016-07-13-mixins-considered-harmful", + "extension": ".md", + "size": 27509, + "date": "2018-03-12", + "sha1": "9a869af22a32a2a226373d3ddc3eb4bf6f989b69", + "md5": "9e1d12e8ad71164472f82ded23f7a489", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-07-22-create-apps-with-no-configuration.md", + "type": "file", + "name": "2016-07-22-create-apps-with-no-configuration.md", + "base_name": "2016-07-22-create-apps-with-no-configuration", + "extension": ".md", + "size": 9849, + "date": "2018-03-12", + "sha1": "5d0eeb6748fe092f8bfab782b14ad6c4b3dd2a67", + "md5": "6a68cf010c646eb9439e7a177c7999fc", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-08-05-relay-state-of-the-state.md", + "type": "file", + "name": "2016-08-05-relay-state-of-the-state.md", + "base_name": "2016-08-05-relay-state-of-the-state", + "extension": ".md", + "size": 10017, + "date": "2018-03-12", + "sha1": "d7c5c46d0879d3b8fe4db99292ff4155ad8237cc", + "md5": "561abafa17c2f1d37c5726a476e01dc6", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-09-28-our-first-50000-stars.md", + "type": "file", + "name": "2016-09-28-our-first-50000-stars.md", + "base_name": "2016-09-28-our-first-50000-stars", + "extension": ".md", + "size": 13228, + "date": "2018-03-12", + "sha1": "1ca36d1a57f6d4d92d8271b671ab8455ec9fa865", + "md5": "ff479e4829c3b81c9437fb77d8855f0f", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2016-11-16-react-v15.4.0.md", + "type": "file", + "name": "2016-11-16-react-v15.4.0.md", + "base_name": "2016-11-16-react-v15.4.0", + "extension": ".md", + "size": 10435, + "date": "2018-03-12", + "sha1": "41f9edfaab063983daa07fe75c42105b38f3918e", + "md5": "0805de0efd77863a80b1e0c68d974fa0", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2017-04-07-react-v15.5.0.md", + "type": "file", + "name": "2017-04-07-react-v15.5.0.md", + "base_name": "2017-04-07-react-v15.5.0", + "extension": ".md", + "size": 12563, + "date": "2018-03-12", + "sha1": "e8540ee12d19d00beb63564149f84541572c9f80", + "md5": "90c489e8dbd016ed3b5d84f6fddd7824", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2017-05-18-whats-new-in-create-react-app.md", + "type": "file", + "name": "2017-05-18-whats-new-in-create-react-app.md", + "base_name": "2017-05-18-whats-new-in-create-react-app", + "extension": ".md", + "size": 10480, + "date": "2018-03-12", + "sha1": "16069ff8b4c37a4a3fabf88a1cfaee7eb8532087", + "md5": "77b5675cc6c275297cfcaf610e00b4d9", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/_posts/2017-06-13-react-v15.6.0.md", + "type": "file", + "name": "2017-06-13-react-v15.6.0.md", + "base_name": "2017-06-13-react-v15.6.0", + "extension": ".md", + "size": 7093, + "date": "2018-03-12", + "sha1": "2b45f60e2b440d97f90874612e6742f4a3d87bae", + "md5": "515a0d01c58528a7d7e0a5e20eb2e9fa", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/blog", + "type": "directory", + "name": "blog", + "base_name": "blog", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1259, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/blog/all.html", + "type": "file", + "name": "all.html", + "base_name": "all", + "extension": ".html", + "size": 530, + "date": "2018-03-12", + "sha1": "4d0fbe4dedff03645f9626c88bf6c7e1958fc6f7", + "md5": "9b8ee9eff0ae1753570563b9236900ba", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/blog/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 729, + "date": "2018-03-12", + "sha1": "345ef12981c8b00296ad5e0b491bd7ef16413d61", + "md5": "d1419b3b5fc9cef522e66b6e5beec425", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community", + "type": "directory", + "name": "community", + "base_name": "community", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 17, + "dirs_count": 0, + "size_count": 41524, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/complementary-tools.it-IT.md", + "type": "file", + "name": "complementary-tools.it-IT.md", + "base_name": "complementary-tools.it-IT", + "extension": ".md", + "size": 141, + "date": "2018-03-12", + "sha1": "5b2e542e05939212cb430a31d0902766f8c00a9a", + "md5": "820453d7af3f02b575fa221438be8da6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/complementary-tools.ko-KR.md", + "type": "file", + "name": "complementary-tools.ko-KR.md", + "base_name": "complementary-tools.ko-KR", + "extension": ".md", + "size": 141, + "date": "2018-03-12", + "sha1": "d167c24f10591d4aa37c4d26a58388ee34903780", + "md5": "9ee81197e02150551f1366ef4c7701b4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/complementary-tools.md", + "type": "file", + "name": "complementary-tools.md", + "base_name": "complementary-tools", + "extension": ".md", + "size": 135, + "date": "2018-03-12", + "sha1": "43eb8e549fca8fe8c66c35f0183c5fde1f9bd9de", + "md5": "04ef107b3f8240badbcb1165880e2fa8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/complementary-tools.zh-CN.md", + "type": "file", + "name": "complementary-tools.zh-CN.md", + "base_name": "complementary-tools.zh-CN", + "extension": ".md", + "size": 141, + "date": "2018-03-12", + "sha1": "353a2d461c12b794d7d036fd3cb5ff16c892eb72", + "md5": "ad1e871d8187f1b9e1d482e9f26b9742", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/conferences.it-IT.md", + "type": "file", + "name": "conferences.it-IT.md", + "base_name": "conferences.it-IT", + "extension": ".md", + "size": 662, + "date": "2018-03-12", + "sha1": "52443ba6a0746d82062ffca437cdca1ffdafa8fd", + "md5": "a8242a1e9990dc83518a2a606ca6abd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/conferences.ko-KR.md", + "type": "file", + "name": "conferences.ko-KR.md", + "base_name": "conferences.ko-KR", + "extension": ".md", + "size": 695, + "date": "2018-03-12", + "sha1": "9a636c0cce9b07d32471d8216ff7d79de5233c89", + "md5": "3c26f032d41763968ec6b0bffb26e72b", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/conferences.md", + "type": "file", + "name": "conferences.md", + "base_name": "conferences", + "extension": ".md", + "size": 4198, + "date": "2018-03-12", + "sha1": "5cf78bcbedd7efa897940e7e131a4a0d15329fab", + "md5": "91b69fe9fdc4c30f777f486c83caf797", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/conferences.zh-CN.md", + "type": "file", + "name": "conferences.zh-CN.md", + "base_name": "conferences.zh-CN", + "extension": ".md", + "size": 930, + "date": "2018-03-12", + "sha1": "6660ac7890dd0356697b4a69dcb9799843bdba7a", + "md5": "a4bdd8bec0ddcedebc89dc74e033d3ef", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/examples.it-IT.md", + "type": "file", + "name": "examples.it-IT.md", + "base_name": "examples.it-IT", + "extension": ".md", + "size": 119, + "date": "2018-03-12", + "sha1": "7e4536716a090ed3cb938b632b0d86eab72c27c0", + "md5": "322055b54824b304bc41c0bf32c9623b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/examples.ko-KR.md", + "type": "file", + "name": "examples.ko-KR.md", + "base_name": "examples.ko-KR", + "extension": ".md", + "size": 119, + "date": "2018-03-12", + "sha1": "815502081c65f0417552b0e085f980000fbfe2e4", + "md5": "8dff825b86b9714f6fa1b96e4eda1ed1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/examples.md", + "type": "file", + "name": "examples.md", + "base_name": "examples", + "extension": ".md", + "size": 113, + "date": "2018-03-12", + "sha1": "3397af467d24dcdd2077dc37897dd57fc79f8555", + "md5": "6c22a87dc2b5007ab00616316b38f99a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/examples.zh-CN.md", + "type": "file", + "name": "examples.zh-CN.md", + "base_name": "examples.zh-CN", + "extension": ".md", + "size": 119, + "date": "2018-03-12", + "sha1": "42ea132e48ecc3e4c43613f5ffcd1913286e466b", + "md5": "0957ab83e1121f125da5984979fb4bf0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/support.md", + "type": "file", + "name": "support.md", + "base_name": "support", + "extension": ".md", + "size": 1945, + "date": "2018-03-12", + "sha1": "8b1f18f252f36d66439657280fee7cbe142a9f7f", + "md5": "f6db98f07f6af3eb29123f4ee5217ab6", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/videos.it-IT.md", + "type": "file", + "name": "videos.it-IT.md", + "base_name": "videos.it-IT", + "extension": ".md", + "size": 8360, + "date": "2018-03-12", + "sha1": "d8aada73cd5fb9398259f7ea8be1483c55674fb5", + "md5": "e97ab09a477c3b90674405e1555d0bfe", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/videos.ko-KR.md", + "type": "file", + "name": "videos.ko-KR.md", + "base_name": "videos.ko-KR", + "extension": ".md", + "size": 8677, + "date": "2018-03-12", + "sha1": "af693cd440a22b1c3356be435c04492aa2b92091", + "md5": "a297fe6c89282a6d3cfc15b735d319e4", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/videos.md", + "type": "file", + "name": "videos.md", + "base_name": "videos", + "extension": ".md", + "size": 7323, + "date": "2018-03-12", + "sha1": "422db5c6fc2abff1fe88191bb9c0b9485908033f", + "md5": "5e39b80041ae33ec3b8bf495d472958d", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/community/videos.zh-CN.md", + "type": "file", + "name": "videos.zh-CN.md", + "base_name": "videos.zh-CN", + "extension": ".md", + "size": 7706, + "date": "2018-03-12", + "sha1": "4c29901b9de901e1d44bcc15647bdd3641cdb6a3", + "md5": "68574a8720ba68d5fd2db2f08ae6bac0", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/contributing", + "type": "directory", + "name": "contributing", + "base_name": "contributing", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 93268, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/contributing/codebase-overview.md", + "type": "file", + "name": "codebase-overview.md", + "base_name": "codebase-overview", + "extension": ".md", + "size": 26743, + "date": "2018-03-12", + "sha1": "cd318e88ff68ccfcfc346b474af0d6354c0b5f7b", + "md5": "ca6a613dc0df6431ebf5aed303e940c4", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/contributing/design-principles.md", + "type": "file", + "name": "design-principles.md", + "base_name": "design-principles", + "extension": ".md", + "size": 19445, + "date": "2018-03-12", + "sha1": "8d7fa66b34b896395be4e45d8eb2ddc39e21b655", + "md5": "081adbf495d20f2d925f0e50a938bd44", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/contributing/how-to-contribute.md", + "type": "file", + "name": "how-to-contribute.md", + "base_name": "how-to-contribute", + "extension": ".md", + "size": 10836, + "date": "2018-03-12", + "sha1": "5ed185119d78070d0b34371c0da44890367a95f7", + "md5": "16bdf01151dea9a2e47a18674076febf", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/contributing/implementation-notes.md", + "type": "file", + "name": "implementation-notes.md", + "base_name": "implementation-notes", + "extension": ".md", + "size": 36244, + "date": "2018-03-12", + "sha1": "d58453ba8b0b7c2746da559e4679cd32560758dc", + "md5": "166f6df50e1bf6dc8c1a51180e8130b0", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/css", + "type": "directory", + "name": "css", + "base_name": "css", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 34637, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/css/codemirror.css", + "type": "file", + "name": "codemirror.css", + "base_name": "codemirror", + "extension": ".css", + "size": 8194, + "date": "2018-03-12", + "sha1": "bebc8d1d4a5dd62c0e824761ab09395e0a5f8885", + "md5": "4eb3d519da1bcbc99e3103e65789f3a5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/css/main.css", + "type": "file", + "name": "main.css", + "base_name": "main", + "extension": ".css", + "size": 2618, + "date": "2018-03-12", + "sha1": "404a549d1f28c020eab35ed7097d4dfba41475f9", + "md5": "e3bbb9b5dbaa9b7707448451c86c4c35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/css/react.scss", + "type": "file", + "name": "react.scss", + "base_name": "react", + "extension": ".scss", + "size": 19651, + "date": "2018-03-12", + "sha1": "82d819d2b10cefe320d374967da2abd3462ddda7", + "md5": "99d48e9f1019c8a5b26697ab5039b9b4", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/css/syntax.css", + "type": "file", + "name": "syntax.css", + "base_name": "syntax", + "extension": ".css", + "size": 4174, + "date": "2018-03-12", + "sha1": "3d2bcb097180b9792b6cbe377687b008353343b7", + "md5": "9992f30b01f374965b95af3c64cca5a7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs", + "type": "directory", + "name": "docs", + "base_name": "docs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 43, + "dirs_count": 0, + "size_count": 308133, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-animation.md", + "type": "file", + "name": "addons-animation.md", + "base_name": "addons-animation", + "extension": ".md", + "size": 13371, + "date": "2018-03-12", + "sha1": "98ea2ef89b01eb7b2d5804694dfd3d46ed68231d", + "md5": "f06ae381a5975772cfdae0bcfde0788a", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "the community." + ], + "start_line": 15, + "end_line": 15 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-create-fragment.md", + "type": "file", + "name": "addons-create-fragment.md", + "base_name": "addons-create-fragment", + "extension": ".md", + "size": 2387, + "date": "2018-03-12", + "sha1": "73b008030dc478eeb74db22552240715638e2b12", + "md5": "d3de4ea82d5fe67b6a4593f719cf5d1e", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-perf.md", + "type": "file", + "name": "addons-perf.md", + "base_name": "addons-perf", + "extension": ".md", + "size": 4508, + "date": "2018-03-12", + "sha1": "6a00e18cde1bf96057cf6053b1911b285180c5fa", + "md5": "bd3bb39759d48f4a3692077931b35137", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-pure-render-mixin.md", + "type": "file", + "name": "addons-pure-render-mixin.md", + "base_name": "addons-pure-render-mixin", + "extension": ".md", + "size": 1630, + "date": "2018-03-12", + "sha1": "3bd6312ffcfe6044d89564058010189f16072fdc", + "md5": "4c898a66c5c9974e177d847c39060e5b", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-shallow-compare.md", + "type": "file", + "name": "addons-shallow-compare.md", + "base_name": "addons-shallow-compare", + "extension": ".md", + "size": 1739, + "date": "2018-03-12", + "sha1": "cbe2589401d6c21444c5994962985ed9ff7fd48f", + "md5": "1c7b82c623aaf86801ca5388692f0740", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-shallow-renderer.md", + "type": "file", + "name": "addons-shallow-renderer.md", + "base_name": "addons-shallow-renderer", + "extension": ".md", + "size": 2166, + "date": "2018-03-12", + "sha1": "3b3957a6a46b943db938917e934c73f9b3433fd8", + "md5": "f2f9911657391dead1c423008e62d4d0", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-test-utils.md", + "type": "file", + "name": "addons-test-utils.md", + "base_name": "addons-test-utils", + "extension": ".md", + "size": 6905, + "date": "2018-03-12", + "sha1": "c253e240676aae6382902e4bc882ebd2bcd5e976", + "md5": "cd356cbde436a5ab8d70c528696e7798", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-two-way-binding-helpers.md", + "type": "file", + "name": "addons-two-way-binding-helpers.md", + "base_name": "addons-two-way-binding-helpers", + "extension": ".md", + "size": 5647, + "date": "2018-03-12", + "sha1": "b94602306e90fe413470d53dbc98218ac82d425b", + "md5": "d7bf45bfc70c8cd6b1ff24824be4da09", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons-update.md", + "type": "file", + "name": "addons-update.md", + "base_name": "addons-update", + "extension": ".md", + "size": 4561, + "date": "2018-03-12", + "sha1": "c2e47993824c76f18a5c3bee0b86c90b10b4480a", + "md5": "9a230bf87d700a354d2710f6adae4db4", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/addons.md", + "type": "file", + "name": "addons.md", + "base_name": "addons", + "extension": ".md", + "size": 2100, + "date": "2018-03-12", + "sha1": "09f4aa6a2536cbd9f75c585b5cf7c711fcfda087", + "md5": "16e8191008477b31f1a6fa411be2de5b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/components-and-props.md", + "type": "file", + "name": "components-and-props.md", + "base_name": "components-and-props", + "extension": ".md", + "size": 8184, + "date": "2018-03-12", + "sha1": "bcfff433c53ef9a149a8914e6319d9da9af59188", + "md5": "6512511d0617b11bb6b92e26d0faa3f4", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/composition-vs-inheritance.md", + "type": "file", + "name": "composition-vs-inheritance.md", + "base_name": "composition-vs-inheritance", + "extension": ".md", + "size": 4940, + "date": "2018-03-12", + "sha1": "1641027a91686705801218283c66e6f13a4d26ae", + "md5": "d8a5030c46648c8461f7f475403ee4a6", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/conditional-rendering.md", + "type": "file", + "name": "conditional-rendering.md", + "base_name": "conditional-rendering", + "extension": ".md", + "size": 7245, + "date": "2018-03-12", + "sha1": "0f10d0c97bdf034f131dc2d40fd349ec97929676", + "md5": "18dc1e5c766366807dcfe4b0b50751d7", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/context.md", + "type": "file", + "name": "context.md", + "base_name": "context", + "extension": ".md", + "size": 7537, + "date": "2018-03-12", + "sha1": "02944278a1e41f22b176ad2096d5852a6c647bc7", + "md5": "5babbcf75ddc7b397c17f02dffcbb9e8", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/error-decoder.md", + "type": "file", + "name": "error-decoder.md", + "base_name": "error-decoder", + "extension": ".md", + "size": 691, + "date": "2018-03-12", + "sha1": "12961ed2f97aafa6b30cbd6f4f16d0f7a62a6c0d", + "md5": "329c21fa7c35bfe7a43bd209d5ae570e", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/forms.md", + "type": "file", + "name": "forms.md", + "base_name": "forms", + "extension": ".md", + "size": 8833, + "date": "2018-03-12", + "sha1": "8097c2819ac96e7e09b7654fece5f18451a7de4b", + "md5": "3fd4b299b70f6cc46f1bb5b28b033cf4", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/handling-events.md", + "type": "file", + "name": "handling-events.md", + "base_name": "handling-events", + "extension": ".md", + "size": 4995, + "date": "2018-03-12", + "sha1": "dd1380d615fb25d20856d81e35b71565372be3b1", + "md5": "41e273811bf0bdcfd395b15fd165202f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/hello-world.md", + "type": "file", + "name": "hello-world.md", + "base_name": "hello-world", + "extension": ".md", + "size": 2458, + "date": "2018-03-12", + "sha1": "a85add04a3c5416678e6744a2654c974f65edacb", + "md5": "80186e58c7f2a72c3530085411e608c9", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/higher-order-components.md", + "type": "file", + "name": "higher-order-components.md", + "base_name": "higher-order-components", + "extension": ".md", + "size": 18162, + "date": "2018-03-12", + "sha1": "f286c2dae27f4c8fe8884665c5e25d7a0060dd9e", + "md5": "4bc277f404c0f7c34a04e188f910a88d", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/installation.md", + "type": "file", + "name": "installation.md", + "base_name": "installation", + "extension": ".md", + "size": 13643, + "date": "2018-03-12", + "sha1": "fe2791e0b0f9dea2f66c8c3228e8e0ecb93cf186", + "md5": "f72b73638e4af5ff7dea6f333c137c98", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/integrating-with-other-libraries.md", + "type": "file", + "name": "integrating-with-other-libraries.md", + "base_name": "integrating-with-other-libraries", + "extension": ".md", + "size": 17319, + "date": "2018-03-12", + "sha1": "d26593156e23d452f4840a8c4d5a42107c74639a", + "md5": "99761220c337c72db6552e87d6317e0b", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/introducing-jsx.md", + "type": "file", + "name": "introducing-jsx.md", + "base_name": "introducing-jsx", + "extension": ".md", + "size": 4936, + "date": "2018-03-12", + "sha1": "4ba62c2abc174b445affaeaf81082c834bdf8d24", + "md5": "99a8dd9568d1ae66118934eff86c4106", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/jsx-in-depth.md", + "type": "file", + "name": "jsx-in-depth.md", + "base_name": "jsx-in-depth", + "extension": ".md", + "size": 13077, + "date": "2018-03-12", + "sha1": "98d9c5ef52b1d272e16593eb78df9aa689710801", + "md5": "9450ca355501eacbce4fc2c128c26022", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/lifting-state-up.md", + "type": "file", + "name": "lifting-state-up.md", + "base_name": "lifting-state-up", + "extension": ".md", + "size": 14241, + "date": "2018-03-12", + "sha1": "d74af50a2e0a4c989ec657b3981240dbd49d9736", + "md5": "7686bc8536fdc2afdd3357f73360f69f", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/lists-and-keys.md", + "type": "file", + "name": "lists-and-keys.md", + "base_name": "lists-and-keys", + "extension": ".md", + "size": 8454, + "date": "2018-03-12", + "sha1": "6db7477557e7e613c920e962ce11f77845678698", + "md5": "32b19912a5debb2b296390d2a381a9f1", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/optimizing-performance.md", + "type": "file", + "name": "optimizing-performance.md", + "base_name": "optimizing-performance", + "extension": ".md", + "size": 17259, + "date": "2018-03-12", + "sha1": "d222926f4a8a4cf2f4b9064b1e63c01f588d0602", + "md5": "5fb25bb60ddbf7f3a1fa0472f0fd1f3f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/react-without-es6.md", + "type": "file", + "name": "react-without-es6.md", + "base_name": "react-without-es6", + "extension": ".md", + "size": 6323, + "date": "2018-03-12", + "sha1": "693a31825bdc8db3571aea3a651fe31deb4dd2cd", + "md5": "940dd55d1e93ae94014f0f6bed7c693b", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/react-without-jsx.md", + "type": "file", + "name": "react-without-jsx.md", + "base_name": "react-without-jsx", + "extension": ".md", + "size": 2025, + "date": "2018-03-12", + "sha1": "e0bd10611fd7e7fd1a70d38ae1f58e4f369d86d6", + "md5": "6e1115a8fee1d08b332c298861976588", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/reconciliation.md", + "type": "file", + "name": "reconciliation.md", + "base_name": "reconciliation", + "extension": ".md", + "size": 7215, + "date": "2018-03-12", + "sha1": "4dab8d694364c35c78b680b3c411724bd0599171", + "md5": "90974fe58d005bd98894a27cf79230d1", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Math.random()" + ], + "start_line": 153, + "end_line": 153 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/reference-dom-elements.md", + "type": "file", + "name": "reference-dom-elements.md", + "base_name": "reference-dom-elements", + "extension": ".md", + "size": 8933, + "date": "2018-03-12", + "sha1": "d6a11fadeadb0401ff5ac036fcd4e563d84345ea", + "md5": "90f53b1cd8d74d1a7188f718665bc7ce", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/reference-events.md", + "type": "file", + "name": "reference-events.md", + "base_name": "reference-events", + "extension": ".md", + "size": 6236, + "date": "2018-03-12", + "sha1": "d6b258853a9f1e98c0859020c0c2cf71347691d8", + "md5": "b4ea21545eace8c2fdfc5e00f746d46d", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/reference-pure-render-mixin.md", + "type": "file", + "name": "reference-pure-render-mixin.md", + "base_name": "reference-pure-render-mixin", + "extension": ".md", + "size": 1954, + "date": "2018-03-12", + "sha1": "2600cfab425c7a6338ea29f60515a1afab0ef933", + "md5": "af1aa5cb11b51766532eb925004f86c4", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/reference-react-component.md", + "type": "file", + "name": "reference-react-component.md", + "base_name": "reference-react-component", + "extension": ".md", + "size": 15706, + "date": "2018-03-12", + "sha1": "c9f987489ebc8524e4925a2bd7b04f932af5b85f", + "md5": "9220366c10f885e4c1a5e4b107695f6b", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/reference-react-dom-server.md", + "type": "file", + "name": "reference-react-dom-server.md", + "base_name": "reference-react-dom-server", + "extension": ".md", + "size": 1642, + "date": "2018-03-12", + "sha1": "853c6f6959a35434b50da6e72f5569174fb9516f", + "md5": "191fcfc3197923896c7c3ad34151e66f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/reference-react-dom.md", + "type": "file", + "name": "reference-react-dom.md", + "base_name": "reference-react-dom", + "extension": ".md", + "size": 4020, + "date": "2018-03-12", + "sha1": "f385d22b99b17c07261a42782d3674b81045c097", + "md5": "cd55ef06a2d90a010611349dbae12b88", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/reference-react.md", + "type": "file", + "name": "reference-react.md", + "base_name": "reference-react", + "extension": ".md", + "size": 7669, + "date": "2018-03-12", + "sha1": "2a733801f5781ed03f7ced354e1621e884edf456", + "md5": "e3e879542a2153f5f11dec83d9780653", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/refs-and-the-dom.md", + "type": "file", + "name": "refs-and-the-dom.md", + "base_name": "refs-and-the-dom", + "extension": ".md", + "size": 9698, + "date": "2018-03-12", + "sha1": "38b5e9ce8ca519de595a130c6a67cb8b7ca3b2d8", + "md5": "13178b722dda4eec4f30c49a5ecd3ed1", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/rendering-elements.md", + "type": "file", + "name": "rendering-elements.md", + "base_name": "rendering-elements", + "extension": ".md", + "size": 3460, + "date": "2018-03-12", + "sha1": "58b2ae6e112ee38b1c3b75de818cde217f8f6a12", + "md5": "14a8550ab1dad215b4c7fa9377d37c27", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/state-and-lifecycle.md", + "type": "file", + "name": "state-and-lifecycle.md", + "base_name": "state-and-lifecycle", + "extension": ".md", + "size": 13098, + "date": "2018-03-12", + "sha1": "4f06d6d8e8b1c0480d32a01182b582cb55ab96b7", + "md5": "129e7a78c18c6220b81182a29613aefa", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/thinking-in-react.md", + "type": "file", + "name": "thinking-in-react.md", + "base_name": "thinking-in-react", + "extension": ".md", + "size": 12917, + "date": "2018-03-12", + "sha1": "52c042faecebb0fe4aa8df96c878e78862097d8e", + "md5": "19bb3f2aa4f8f71fc4b27ed0fa79e2c7", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/typechecking-with-proptypes.md", + "type": "file", + "name": "typechecking-with-proptypes.md", + "base_name": "typechecking-with-proptypes", + "extension": ".md", + "size": 5392, + "date": "2018-03-12", + "sha1": "a22a29e2a7dbe848accc686f317bf38971142ae0", + "md5": "c9cf17f1096943c3d9f290795f1c0635", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/uncontrolled-components.md", + "type": "file", + "name": "uncontrolled-components.md", + "base_name": "uncontrolled-components", + "extension": ".md", + "size": 2576, + "date": "2018-03-12", + "sha1": "540c1246eff08fc6d7d2a6290aa3241497c39ee2", + "md5": "3318b1e0cdc46c61b3cb6408086e1741", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/docs/web-components.md", + "type": "file", + "name": "web-components.md", + "base_name": "web-components", + "extension": ".md", + "size": 2281, + "date": "2018-03-12", + "sha1": "30532531453554953d8136ba0ce30a88cbc72701", + "md5": "88a2ba4af6c699ec61d232eb501bdeb4", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads", + "type": "directory", + "name": "downloads", + "base_name": "downloads", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 51, + "dirs_count": 0, + "size_count": 30691333, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.10.0-rc1.zip", + "type": "file", + "name": "react-0.10.0-rc1.zip", + "base_name": "react-0.10.0-rc1", + "extension": ".zip", + "size": 655886, + "date": "2018-03-12", + "sha1": "805ea93eb28de82e30820860359162a2390c8806", + "md5": "8dd34ec15657003f4123f17538aee59e", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.10.0.zip", + "type": "file", + "name": "react-0.10.0.zip", + "base_name": "react-0.10.0", + "extension": ".zip", + "size": 655595, + "date": "2018-03-12", + "sha1": "7ee8138d5c64fa94e02f72b43a1edeccd25c0232", + "md5": "d98750eb60fbda85b0da611097e55555", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 2087, + "end_line": 2087, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.11.0-rc1.zip", + "type": "file", + "name": "react-0.11.0-rc1.zip", + "base_name": "react-0.11.0-rc1", + "extension": ".zip", + "size": 716707, + "date": "2018-03-12", + "sha1": "555d08fce27204c7651e38ef745fbea7588b7218", + "md5": "bdfbdbe30dd1bb48897ed7865fdf5893", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.11.0.zip", + "type": "file", + "name": "react-0.11.0.zip", + "base_name": "react-0.11.0", + "extension": ".zip", + "size": 716419, + "date": "2018-03-12", + "sha1": "50de2d4bfbbee05ebc2342206be096704bf942f7", + "md5": "3193aa82d64efc48190a7720d92973c4", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.11.1.zip", + "type": "file", + "name": "react-0.11.1.zip", + "base_name": "react-0.11.1", + "extension": ".zip", + "size": 716999, + "date": "2018-03-12", + "sha1": "feb7256c725a04aac061208be721d37ab5025e9e", + "md5": "1b85757bac1e9195585e4f4a14bae930", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.11.2.zip", + "type": "file", + "name": "react-0.11.2.zip", + "base_name": "react-0.11.2", + "extension": ".zip", + "size": 767843, + "date": "2018-03-12", + "sha1": "d367ed3b843b97108b3340f3fb824b46c72efd93", + "md5": "6778014df830300303a15c2f8d0613ef", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.12.0-rc1.zip", + "type": "file", + "name": "react-0.12.0-rc1.zip", + "base_name": "react-0.12.0-rc1", + "extension": ".zip", + "size": 735832, + "date": "2018-03-12", + "sha1": "55f202e3520d46618caab3f155b50b0aa39c8299", + "md5": "3795029fe9bf8c886498f0c44a4ff0c2", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.12.0.zip", + "type": "file", + "name": "react-0.12.0.zip", + "base_name": "react-0.12.0", + "extension": ".zip", + "size": 896241, + "date": "2018-03-12", + "sha1": "d6e7a520dc04d22e93f0fe003258da34fddcc55f", + "md5": "1f72480879123cde81691d647126bdfb", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.12.1.zip", + "type": "file", + "name": "react-0.12.1.zip", + "base_name": "react-0.12.1", + "extension": ".zip", + "size": 743851, + "date": "2018-03-12", + "sha1": "e1d7071d9377c5b45803ef737e8d5d72506ccc55", + "md5": "d6acabfa3f9c92a01cd642f5de4641ee", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.12.2.zip", + "type": "file", + "name": "react-0.12.2.zip", + "base_name": "react-0.12.2", + "extension": ".zip", + "size": 906165, + "date": "2018-03-12", + "sha1": "1b14b76a1ca38f4da853cd1cd2b67c810324f931", + "md5": "6a242238790b21729a88c26145eca6b9", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1302, + "end_line": 1302, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.13.0-rc1.zip", + "type": "file", + "name": "react-0.13.0-rc1.zip", + "base_name": "react-0.13.0-rc1", + "extension": ".zip", + "size": 839177, + "date": "2018-03-12", + "sha1": "c7cd95f3e553cb8720d86ad1210574416192d313", + "md5": "e6c446163359d7c2470553118369c332", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.13.0-rc2.zip", + "type": "file", + "name": "react-0.13.0-rc2.zip", + "base_name": "react-0.13.0-rc2", + "extension": ".zip", + "size": 838082, + "date": "2018-03-12", + "sha1": "264980fd97f53de2c73c2f4d4155ee068a5d2eac", + "md5": "30b28e559c9e82bc16240598b3f71491", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.13.0.zip", + "type": "file", + "name": "react-0.13.0.zip", + "base_name": "react-0.13.0", + "extension": ".zip", + "size": 851466, + "date": "2018-03-12", + "sha1": "3c91179bab535b099d20c620e36a8c1e5fae9485", + "md5": "227faa220771255cba4b5bc2cd83d0c2", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.13.1.zip", + "type": "file", + "name": "react-0.13.1.zip", + "base_name": "react-0.13.1", + "extension": ".zip", + "size": 851551, + "date": "2018-03-12", + "sha1": "a64d7d2c8f041c326026670bef8b6328007b992f", + "md5": "4fcc58689009b65fb9ed08b1f8492879", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.13.2.zip", + "type": "file", + "name": "react-0.13.2.zip", + "base_name": "react-0.13.2", + "extension": ".zip", + "size": 852026, + "date": "2018-03-12", + "sha1": "a5ca152d888d6c2bd6df08dc25756aace05477d6", + "md5": "30b1ad0841b873c5601fdf16698fa43a", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.13.3.zip", + "type": "file", + "name": "react-0.13.3.zip", + "base_name": "react-0.13.3", + "extension": ".zip", + "size": 853139, + "date": "2018-03-12", + "sha1": "5b1b45e45b38481a5bd5ec48505276ce3aa4efb6", + "md5": "8e35085ecebdb035b42b2a6113919587", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.0.zip", + "type": "file", + "name": "react-0.14.0.zip", + "base_name": "react-0.14.0", + "extension": ".zip", + "size": 502626, + "date": "2018-03-12", + "sha1": "e60c87796278f20afcc5941326d0b7d55123bb80", + "md5": "63bf7ddd08c2b7b01e975b20753b9b0c", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1363, + "end_line": 1363, + "matched_rule": { + "identifier": "gpl_30.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 2035, + "end_line": 2035, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.1.zip", + "type": "file", + "name": "react-0.14.1.zip", + "base_name": "react-0.14.1", + "extension": ".zip", + "size": 503256, + "date": "2018-03-12", + "sha1": "b03db05b3f247a686a7fa834e8e6b4b10b22c5f0", + "md5": "3afd0f7e7b862fcfa47045a2a3c0aab3", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "(c) aD P co" + ], + "holders": [ + "aD", + "P co" + ], + "authors": [], + "start_line": 20, + "end_line": 28 + }, + { + "statements": [ + "(c) 3ZO AoAW" + ], + "holders": [ + "3ZO AoAW" + ], + "authors": [], + "start_line": 279, + "end_line": 288 + }, + { + "statements": [ + "(c) u\u0006Aa\b/nc,a &\u0007vu\u0013FtIO1!zFOkax2\u0003rya \u0011sq pNy +i\u0011\u0000\u0017,\u000e apr\u007fU3\u0017e34oiOO:euE\u001aiAaeN,Ni'aa\u0006PaL- SA! O7_ OWA" + ], + "holders": [ + "u\u0006Aa\b/nc,a", + "\u0007vu\u0013FtIO1!zFOkax2\u0003rya \u0011sq pNy +i\u0011\u0000\u0017,\u000e apr\u007fU3\u0017e34oiOO:euE\u001aiAaeN,Ni'aa\u0006PaL- SA!", + "O7_ OWA" + ], + "authors": [], + "start_line": 299, + "end_line": 307 + }, + { + "statements": [ + "(c) IJmnOO o OEaURO" + ], + "holders": [ + "IJmnOO o OEaURO" + ], + "authors": [], + "start_line": 321, + "end_line": 342 + }, + { + "statements": [ + "(c) kO34lg\u0004uxfI\u0000A69\u000e\u007f34eh\u0003 \u0015P\u0007'n14 \u0007acnV\u0010^QQiCiB\u0019\u00041 \u0002i\u0014Uvl12 CO" + ], + "holders": [ + "kO34lg\u0004uxfI\u0000A69\u000e\u007f34eh\u0003 \u0015P\u0007'n14 \u0007acnV\u0010^QQiCiB\u0019\u00041 \u0002i\u0014Uvl12 CO" + ], + "authors": [], + "start_line": 595, + "end_line": 601 + }, + { + "statements": [ + "(c) Oa\u0012 v'o" + ], + "holders": [ + "Oa\u0012 v'o" + ], + "authors": [], + "start_line": 704, + "end_line": 720 + }, + { + "statements": [ + "(c) (c) Deq" + ], + "holders": [ + "Deq" + ], + "authors": [], + "start_line": 924, + "end_line": 938 + }, + { + "statements": [ + "(c) A Vff" + ], + "holders": [ + "A Vff" + ], + "authors": [], + "start_line": 1188, + "end_line": 1205 + }, + { + "statements": [ + "(c) EOeO Io" + ], + "holders": [ + "EOeO Io" + ], + "authors": [], + "start_line": 1254, + "end_line": 1267 + }, + { + "statements": [ + "U0\u0012 (c) DUih" + ], + "holders": [ + "U0\u0012", + "DUih" + ], + "authors": [], + "start_line": 1301, + "end_line": 1305 + }, + { + "statements": [ + "(c) Ka a Eun", + "(c) CY34o OoU12l" + ], + "holders": [ + "Ka a Eun", + "CY34o OoU12l" + ], + "authors": [], + "start_line": 1310, + "end_line": 1332 + }, + { + "statements": [ + "(c) nAO U\u0000x\u0017I/ \bA4$\u0010-doIG@7A2enP \u0018oI\u0016\u0002N co" + ], + "holders": [ + "nAO U\u0000x\u0017I/ \bA4$\u0010-doIG@7A2enP \u0018oI\u0016\u0002N co" + ], + "authors": [], + "start_line": 1420, + "end_line": 1462 + }, + { + "statements": [ + "(c) Y3 & 6^ol.L2b (c)" + ], + "holders": [ + "Y3", + "6^ol.L2b" + ], + "authors": [], + "start_line": 1488, + "end_line": 1500 + }, + { + "statements": [ + "IOOAC12u1u (c) ZJiLO1" + ], + "holders": [ + "IOOAC12u1u", + "ZJiLO1" + ], + "authors": [], + "start_line": 1528, + "end_line": 1543 + }, + { + "statements": [ + "(c) UEy sg14\u0019&J IsmG3WA" + ], + "holders": [ + "UEy sg14\u0019&J IsmG3WA" + ], + "authors": [], + "start_line": 1658, + "end_line": 1661 + }, + { + "statements": [ + "(c) Kqw HSuE" + ], + "holders": [ + "Kqw HSuE" + ], + "authors": [], + "start_line": 1715, + "end_line": 1724 + }, + { + "statements": [ + "(c) 2E112Ues 14a bVAO" + ], + "holders": [ + "2E112Ues 14a bVAO" + ], + "authors": [], + "start_line": 1918, + "end_line": 1929 + }, + { + "statements": [ + "UlaO \u000f'u\u0016 (c) E6 OcS aIey5G6M OeNAea I C14" + ], + "holders": [ + "UlaO", + "\u000f'u\u0016", + "E6", + "OcS aIey5G6M", + "OeNAea I C14" + ], + "authors": [], + "start_line": 2022, + "end_line": 2043 + }, + { + "statements": [ + "(c) C2 Io@gA Mo" + ], + "holders": [ + "C2 Io@gA Mo" + ], + "authors": [], + "start_line": 2082, + "end_line": 2085 + }, + { + "statements": [ + "(c) D2e5 YC126" + ], + "holders": [ + "D2e5 YC126" + ], + "authors": [], + "start_line": 2200, + "end_line": 2209 + }, + { + "statements": [ + "(c) OYi 34IYiIKH'OoyEY &34\u0002IW2aHSimoiGiAn@'t Upv", + "(c) D OIeah7" + ], + "holders": [ + "OYi 34IYiIKH'OoyEY &34\u0002IW2aHSimoiGiAn@'t Upv", + "D OIeah7" + ], + "authors": [], + "start_line": 2385, + "end_line": 2416 + }, + { + "statements": [ + "(c) FO TeUUO" + ], + "holders": [ + "FO TeUUO" + ], + "authors": [], + "start_line": 2474, + "end_line": 2477 + }, + { + "statements": [ + "(c) Au ACruw0o" + ], + "holders": [ + "Au ACruw0o" + ], + "authors": [], + "start_line": 2917, + "end_line": 2923 + }, + { + "statements": [ + "(c) Z Yvi ZOIaE" + ], + "holders": [ + "Z Yvi ZOIaE" + ], + "authors": [], + "start_line": 2961, + "end_line": 2984 + }, + { + "statements": [ + "(c) ?e (c) IHoE70h" + ], + "holders": [ + "IHoE70h" + ], + "authors": [], + "start_line": 3093, + "end_line": 3098 + }, + { + "statements": [ + "(c) ADgnUH VoyBUsWaba6z" + ], + "holders": [ + "ADgnUH VoyBUsWaba6z" + ], + "authors": [], + "start_line": 3168, + "end_line": 3180 + }, + { + "statements": [ + "(c) Oi f\u000eaD0g1Up He" + ], + "holders": [ + "Oi f\u000eaD0g1Up He" + ], + "authors": [], + "start_line": 3304, + "end_line": 3318 + }, + { + "statements": [ + "(c) CO" + ], + "holders": [ + "CO" + ], + "authors": [], + "start_line": 3336, + "end_line": 3343 + }, + { + "statements": [ + "Wj34I (c) La\u000f" + ], + "holders": [ + "Wj34I", + "La\u000f" + ], + "authors": [], + "start_line": 3404, + "end_line": 3420 + }, + { + "statements": [ + "(c) AXoE Ek" + ], + "holders": [ + "AXoE Ek" + ], + "authors": [], + "start_line": 3640, + "end_line": 3643 + }, + { + "statements": [ + "(c) 9.nuiYI SA" + ], + "holders": [ + "9.nuiYI SA" + ], + "authors": [], + "start_line": 3644, + "end_line": 3649 + } + ], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.2.zip", + "type": "file", + "name": "react-0.14.2.zip", + "base_name": "react-0.14.2", + "extension": ".zip", + "size": 503436, + "date": "2018-03-12", + "sha1": "78fb58619e0f8887a2d0037ca529d4e7bf618285", + "md5": "c90aea622e63fc36a522c3fbaa78e233", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": "CSS+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1875, + "end_line": 1875, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "(c) aD P co" + ], + "holders": [ + "aD", + "P co" + ], + "authors": [], + "start_line": 20, + "end_line": 28 + }, + { + "statements": [ + "(c) Ma yoiO\u007faE+$oiT AnPr\u0012" + ], + "holders": [ + "Ma yoiO\u007faE+$oiT AnPr\u0012" + ], + "authors": [], + "start_line": 311, + "end_line": 326 + }, + { + "statements": [ + "J0\u0015 \u0016i (c) A3Iz" + ], + "holders": [ + "J0\u0015", + "\u0016i", + "A3Iz" + ], + "authors": [], + "start_line": 490, + "end_line": 499 + }, + { + "statements": [ + "(c) i O vSjT6\u0019: O\u0004 n\u0011n Zjoo&Im \u0005 qcpOwu\u0002\u001aawC014\u0015A\u007fNsRQ incu" + ], + "holders": [ + "i", + "O", + "vSjT6\u0019: O\u0004 n\u0011n Zjoo&Im \u0005 qcpOwu\u0002\u001aawC014\u0015A\u007fNsRQ incu" + ], + "authors": [], + "start_line": 806, + "end_line": 816 + }, + { + "statements": [ + "AepN \bIgQu Aik (c) Eo" + ], + "holders": [ + "AepN", + "\bIgQu Aik", + "Eo" + ], + "authors": [], + "start_line": 904, + "end_line": 918 + }, + { + "statements": [ + "(c) Z2QZ EnA" + ], + "holders": [ + "Z2QZ EnA" + ], + "authors": [], + "start_line": 957, + "end_line": 972 + }, + { + "statements": [ + "(c) WYg AuzA" + ], + "holders": [ + "WYg AuzA" + ], + "authors": [], + "start_line": 1137, + "end_line": 1149 + }, + { + "statements": [ + "(c) UbXA-2 evoomOA y34abb lc\u0004y a\u007fe\u0012oX\u0004i Ys'O$Giok cOa", + "Jku (c) L24eu" + ], + "holders": [ + "UbXA-2 evoomOA", + "y34abb lc\u0004y a\u007fe\u0012oX\u0004i Ys'O$Giok cOa", + "Jku", + "L24eu" + ], + "authors": [], + "start_line": 1192, + "end_line": 1225 + }, + { + "statements": [ + "To12 (c) Au" + ], + "holders": [ + "To12", + "Au" + ], + "authors": [], + "start_line": 1231, + "end_line": 1237 + }, + { + "statements": [ + "(c) i'uz OVaUq" + ], + "holders": [ + "i'uz OVaUq" + ], + "authors": [], + "start_line": 1240, + "end_line": 1244 + }, + { + "statements": [ + "(c) fkkEA\u000fE LOgZ\u0007iKS^Yvi\u0001 CO$" + ], + "holders": [ + "fkkEA\u000fE", + "LOgZ\u0007iKS^Yvi\u0001 CO$" + ], + "authors": [], + "start_line": 1296, + "end_line": 1316 + }, + { + "statements": [ + "PEEUpU2h \u0018EA6 (c) G6tcod3" + ], + "holders": [ + "PEEUpU2h", + "\u0018EA6", + "G6tcod3" + ], + "authors": [], + "start_line": 1447, + "end_line": 1466 + }, + { + "statements": [ + "(c) Eeg OEu6uC" + ], + "holders": [ + "Eeg OEu6uC" + ], + "authors": [], + "start_line": 1557, + "end_line": 1564 + }, + { + "statements": [ + "(c) Na\u0018 No-noAmaaA" + ], + "holders": [ + "Na\u0018 No-noAmaaA" + ], + "authors": [], + "start_line": 1723, + "end_line": 1728 + }, + { + "statements": [ + "(c) niG\u0015aO \u0002A'\u0002K aV'0/Ei\u0010\u0002\u0007ua COy" + ], + "holders": [ + "niG\u0015aO", + "\u0002A'\u0002K", + "aV'0/Ei\u0010\u0002\u0007ua COy" + ], + "authors": [], + "start_line": 2139, + "end_line": 2142 + }, + { + "statements": [ + "(c) A4Eo fkei^- ZtO" + ], + "holders": [ + "A4Eo fkei^- ZtO" + ], + "authors": [], + "start_line": 2322, + "end_line": 2331 + }, + { + "statements": [ + "(c) A YifQ3" + ], + "holders": [ + "A YifQ3" + ], + "authors": [], + "start_line": 2431, + "end_line": 2443 + }, + { + "statements": [ + "(c) Cy tHrZ7I\u0004M IU34AeNHaE" + ], + "holders": [ + "Cy tHrZ7I\u0004M IU34AeNHaE" + ], + "authors": [], + "start_line": 2723, + "end_line": 2731 + }, + { + "statements": [ + "(c) A O2iioh" + ], + "holders": [ + "A O2iioh" + ], + "authors": [], + "start_line": 2768, + "end_line": 2778 + }, + { + "statements": [ + "E2 !aN&'De (c) Cihn01" + ], + "holders": [ + "E2", + "!aN&'De", + "Cihn01" + ], + "authors": [], + "start_line": 2861, + "end_line": 2870 + }, + { + "statements": [ + "(c) C HIo" + ], + "holders": [ + "C HIo" + ], + "authors": [], + "start_line": 2907, + "end_line": 2914 + }, + { + "statements": [ + "(c) I34 OJH" + ], + "holders": [ + "I34 OJH" + ], + "authors": [], + "start_line": 3184, + "end_line": 3208 + }, + { + "statements": [ + "(c) XE & \u0016^ol.L2b (c)" + ], + "holders": [ + "XE", + "\u0016^ol.L2b" + ], + "authors": [], + "start_line": 3222, + "end_line": 3236 + }, + { + "statements": [ + "I8e aoOU7 \u0016aC\u0000aadf+\u000eKuqv (c) Ja" + ], + "holders": [ + "I8e", + "aoOU7 \u0016aC\u0000aadf+\u000eKuqv", + "Ja" + ], + "authors": [], + "start_line": 3238, + "end_line": 3245 + }, + { + "statements": [ + "UtAeO (c) UwaK3y2" + ], + "holders": [ + "UtAeO", + "UwaK3y2" + ], + "authors": [], + "start_line": 3277, + "end_line": 3282 + }, + { + "statements": [ + "SOot (c) QIOUuuEE", + "(c) LtheiI Z AeA7if" + ], + "holders": [ + "SOot", + "QIOUuuEE", + "LtheiI Z AeA7if" + ], + "authors": [], + "start_line": 3412, + "end_line": 3426 + }, + { + "statements": [ + "(c) NOd KnQiCCoVose5o9ba" + ], + "holders": [ + "NOd KnQiCCoVose5o9ba" + ], + "authors": [], + "start_line": 3596, + "end_line": 3600 + }, + { + "statements": [ + "(c) AXoE Ek" + ], + "holders": [ + "AXoE Ek" + ], + "authors": [], + "start_line": 3682, + "end_line": 3685 + }, + { + "statements": [ + "(c) 9.nuiYI SA" + ], + "holders": [ + "9.nuiYI SA" + ], + "authors": [], + "start_line": 3686, + "end_line": 3691 + } + ], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.3.zip", + "type": "file", + "name": "react-0.14.3.zip", + "base_name": "react-0.14.3", + "extension": ".zip", + "size": 563065, + "date": "2018-03-12", + "sha1": "56a829a7ddbd46468ed31d30aaa130d1a2cfc7ea", + "md5": "afbde5f0f6237c23efef2edaad57c6ce", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.4.zip", + "type": "file", + "name": "react-0.14.4.zip", + "base_name": "react-0.14.4", + "extension": ".zip", + "size": 562959, + "date": "2018-03-12", + "sha1": "873cf569f6d5b6b831ab37a57917c5d39360ca32", + "md5": "7f0b5d797144531446ce748ea0b19c19", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1968, + "end_line": 1968, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.5.zip", + "type": "file", + "name": "react-0.14.5.zip", + "base_name": "react-0.14.5", + "extension": ".zip", + "size": 562960, + "date": "2018-03-12", + "sha1": "2f57dc1289093c19953f0321118b73bc85725ef1", + "md5": "7e67f167abfcf6ef7a827d98b1c6101d", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.6.zip", + "type": "file", + "name": "react-0.14.6.zip", + "base_name": "react-0.14.6", + "extension": ".zip", + "size": 563071, + "date": "2018-03-12", + "sha1": "ec8ab376d1bd8424bcd1aee5ec9f21e08ede7cc5", + "md5": "89cf63a50e5dd176dc2aa24d543bc627", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "(c) KT3 Byapea2d2" + ], + "holders": [ + "KT3 Byapea2d2" + ], + "authors": [], + "start_line": 414, + "end_line": 419 + }, + { + "statements": [ + "(c) G5eV G Ka" + ], + "holders": [ + "G5eV G Ka" + ], + "authors": [], + "start_line": 510, + "end_line": 524 + }, + { + "statements": [ + "(c) YhSzXLB Iq/", + "I3uA i\u001a (c) Hoo9cWBqa" + ], + "holders": [ + "YhSzXLB Iq/", + "I3uA", + "i\u001a", + "Hoo9cWBqa" + ], + "authors": [], + "start_line": 526, + "end_line": 529 + }, + { + "statements": [ + "Ui (c) NaX" + ], + "holders": [ + "Ui", + "NaX" + ], + "authors": [], + "start_line": 760, + "end_line": 785 + }, + { + "statements": [ + "(c) (c) Deq" + ], + "holders": [ + "Deq" + ], + "authors": [], + "start_line": 941, + "end_line": 956 + }, + { + "statements": [ + "(c) U34c A\u0015 \u0010 LIebO3I" + ], + "holders": [ + "U34c A\u0015 \u0010 LIebO3I" + ], + "authors": [], + "start_line": 980, + "end_line": 983 + }, + { + "statements": [ + "OoaAUoa (c) UocA" + ], + "holders": [ + "OoaAUoa", + "UocA" + ], + "authors": [], + "start_line": 1013, + "end_line": 1031 + }, + { + "statements": [ + "(c) O8ym OUEx" + ], + "holders": [ + "O8ym OUEx" + ], + "authors": [], + "start_line": 1063, + "end_line": 1079 + }, + { + "statements": [ + "(c) E E4oaY" + ], + "holders": [ + "E E4oaY" + ], + "authors": [], + "start_line": 1117, + "end_line": 1125 + }, + { + "statements": [ + "(c) 9sU?@\u0015 EAE ? co" + ], + "holders": [ + "9sU?@\u0015 EAE ? co" + ], + "authors": [], + "start_line": 1144, + "end_line": 1147 + }, + { + "statements": [ + "(c) Aeiaou u\u0011\u0013\u0016va\u001bb\u001aoB! X Tu" + ], + "holders": [ + "Aeiaou u\u0011\u0013\u0016va\u001bb\u001aoB! X Tu" + ], + "authors": [], + "start_line": 1203, + "end_line": 1234 + }, + { + "statements": [ + "LZrz (c) EUar" + ], + "holders": [ + "LZrz", + "EUar" + ], + "authors": [], + "start_line": 1251, + "end_line": 1268 + }, + { + "statements": [ + "TAcdnE (c) OUr" + ], + "holders": [ + "TAcdnE", + "OUr" + ], + "authors": [], + "start_line": 1473, + "end_line": 1488 + }, + { + "statements": [ + "Id\u0014 (c) Ei" + ], + "holders": [ + "Id\u0014", + "Ei" + ], + "authors": [], + "start_line": 1539, + "end_line": 1550 + }, + { + "statements": [ + "(c) A D N14H" + ], + "holders": [ + "A D N14H" + ], + "authors": [], + "start_line": 1590, + "end_line": 1605 + }, + { + "statements": [ + "(c) A\u0001R, F\u007f Lj\u0005 bV" + ], + "holders": [ + "A\u0001R, F\u007f Lj\u0005 bV" + ], + "authors": [], + "start_line": 1665, + "end_line": 1681 + }, + { + "statements": [ + "Z0eE (c) Ua'w" + ], + "holders": [ + "Z0eE", + "Ua'w" + ], + "authors": [], + "start_line": 1827, + "end_line": 1832 + }, + { + "statements": [ + "(c) OM U341" + ], + "holders": [ + "OM U341" + ], + "authors": [], + "start_line": 1871, + "end_line": 1876 + }, + { + "statements": [ + "(c) W$C A Ik", + "(c) OBUea2C3 Hmxeu\b" + ], + "holders": [ + "A Ik", + "OBUea2C3 Hmxeu\b" + ], + "authors": [], + "start_line": 2068, + "end_line": 2079 + }, + { + "statements": [ + "(c) E Do\u007f" + ], + "holders": [ + "E Do\u007f" + ], + "authors": [], + "start_line": 2221, + "end_line": 2229 + }, + { + "statements": [ + "(c) Ku AhF" + ], + "holders": [ + "Ku AhF" + ], + "authors": [], + "start_line": 2500, + "end_line": 2516 + }, + { + "statements": [ + "(c) J YLk" + ], + "holders": [ + "J YLk" + ], + "authors": [], + "start_line": 2584, + "end_line": 2587 + }, + { + "statements": [ + "(c) EX UFy" + ], + "holders": [ + "EX UFy" + ], + "authors": [], + "start_line": 2650, + "end_line": 2663 + }, + { + "statements": [ + "(c) :25 O CoX" + ], + "holders": [ + "O CoX" + ], + "authors": [], + "start_line": 2671, + "end_line": 2676 + }, + { + "statements": [ + "(c) nZ 4\u0015s1AwOoE@-R\u00036E\u0016Z\u0001 oEea ihe AJ\u0003$\u0012aeo\u0003 2V AB" + ], + "holders": [ + "nZ 4\u0015s1AwOoE@-R\u00036E\u0016Z\u0001 oEea ihe AJ\u0003$\u0012aeo\u0003 2V AB" + ], + "authors": [], + "start_line": 2757, + "end_line": 2773 + }, + { + "statements": [ + "(c) One \u0017io1Ey1'D\u0014UE\u0012 Uu" + ], + "holders": [ + "One \u0017io1Ey1'D\u0014UE\u0012 Uu" + ], + "authors": [], + "start_line": 2878, + "end_line": 2892 + }, + { + "statements": [ + "(c) OUo 1o\u0005LeR\u0016zy OVl" + ], + "holders": [ + "OUo 1o\u0005LeR\u0016zy OVl" + ], + "authors": [], + "start_line": 3114, + "end_line": 3125 + }, + { + "statements": [ + "(c) FO9 UyaA a Ib X5uanBDUouA" + ], + "holders": [ + "FO9 UyaA", + "a", + "Ib X5uanBDUouA" + ], + "authors": [], + "start_line": 3263, + "end_line": 3279 + }, + { + "statements": [ + "(c) Na\u0018 No-ioAmaaA" + ], + "holders": [ + "Na\u0018 No-ioAmaaA" + ], + "authors": [], + "start_line": 3407, + "end_line": 3443 + }, + { + "statements": [ + "(c) AW4HP14I AOu", + "(c) o\u0019 (c) TU" + ], + "holders": [ + "AW4HP14I AOu", + "o\u0019", + "TU" + ], + "authors": [], + "start_line": 3503, + "end_line": 3509 + }, + { + "statements": [ + "(c) AXoE Ek" + ], + "holders": [ + "AXoE Ek" + ], + "authors": [], + "start_line": 3692, + "end_line": 3714 + }, + { + "statements": [ + "Zt (c) RW-oTnaUDV" + ], + "holders": [ + "Zt", + "RW-oTnaUDV" + ], + "authors": [], + "start_line": 3820, + "end_line": 3826 + }, + { + "statements": [ + "(c) O1'I2\b\u0014JI GA\u001114\u00178 i14O12Oc oI''\u0012Evo\u0014oeo?eefUiII3I'1\u0014 vU-IqI E8\u0001coU12\u0019 \u000412X\u0003C/_ AB" + ], + "holders": [ + "O1'I2\b\u0014JI GA\u001114\u00178 i14O12Oc oI''\u0012Evo\u0014oeo?eefUiII3I'1\u0014 vU-IqI E8\u0001coU12\u0019 \u000412X\u0003C/_ AB" + ], + "authors": [], + "start_line": 3874, + "end_line": 3882 + }, + { + "statements": [ + "(c) \u007faaoDo (c) TEF" + ], + "holders": [ + "\u007faaoDo", + "TEF" + ], + "authors": [], + "start_line": 3884, + "end_line": 3907 + }, + { + "statements": [ + "(c) t5omYD NEo zA Au" + ], + "holders": [ + "NEo zA Au" + ], + "authors": [], + "start_line": 4101, + "end_line": 4114 + }, + { + "statements": [ + "(c) 9.nuiYI SA" + ], + "holders": [ + "9.nuiYI SA" + ], + "authors": [], + "start_line": 4115, + "end_line": 4120 + } + ], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.7.zip", + "type": "file", + "name": "react-0.14.7.zip", + "base_name": "react-0.14.7", + "extension": ".zip", + "size": 563471, + "date": "2018-03-12", + "sha1": "00f082cf31cd988b15045a463827759e4b912b69", + "md5": "aab9592750ee996fcf3a921bd93dac9f", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.14.8.zip", + "type": "file", + "name": "react-0.14.8.zip", + "base_name": "react-0.14.8", + "extension": ".zip", + "size": 563580, + "date": "2018-03-12", + "sha1": "1ee41570a906d9798c39936eabed3e8d6c0ad7ba", + "md5": "4500e766c8bf89bf5f75a75fc624bcd4", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.3.0.zip", + "type": "file", + "name": "react-0.3.0.zip", + "base_name": "react-0.3.0", + "extension": ".zip", + "size": 396602, + "date": "2018-03-12", + "sha1": "68ea543e10c200b6cb8d6e8752329abe1e41465e", + "md5": "3eeea084985aa5a1a6d4ff2a5909bcf9", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.3.1.zip", + "type": "file", + "name": "react-0.3.1.zip", + "base_name": "react-0.3.1", + "extension": ".zip", + "size": 396560, + "date": "2018-03-12", + "sha1": "421982aa8c536fb4ad69c5b0872ceb5ddde920f1", + "md5": "37d3cb704b4688a7176c5d1ca16d72d4", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.3.2.zip", + "type": "file", + "name": "react-0.3.2.zip", + "base_name": "react-0.3.2", + "extension": ".zip", + "size": 396535, + "date": "2018-03-12", + "sha1": "9790ec7b4681987856f6ec22f75f6a2a2b2b84fc", + "md5": "9931cf5f060ed0ec41854d2b7c5ba20d", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.3.3.zip", + "type": "file", + "name": "react-0.3.3.zip", + "base_name": "react-0.3.3", + "extension": ".zip", + "size": 397366, + "date": "2018-03-12", + "sha1": "a5d5fa1d7a53ea8d94ff328d8d63b31cffc0dbfb", + "md5": "b3c572e657994afb4ad5a3bb874856a6", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.4.0.zip", + "type": "file", + "name": "react-0.4.0.zip", + "base_name": "react-0.4.0", + "extension": ".zip", + "size": 421810, + "date": "2018-03-12", + "sha1": "0845e29975c954addabf95a83206adf2defb858d", + "md5": "a770c3b8ee6b5fef55c88bf59c6e0169", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1170, + "end_line": 1170, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.4.1.zip", + "type": "file", + "name": "react-0.4.1.zip", + "base_name": "react-0.4.1", + "extension": ".zip", + "size": 422449, + "date": "2018-03-12", + "sha1": "d73a0a87324487423fc1a94a7fb1d79613e3946b", + "md5": "9e1e59830e962417ec3570e905341396", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.4.2.zip", + "type": "file", + "name": "react-0.4.2.zip", + "base_name": "react-0.4.2", + "extension": ".zip", + "size": 422571, + "date": "2018-03-12", + "sha1": "55fc12b1ed4a0094198244223e2e82a067b8dd5a", + "md5": "1a7ed771731cbaba7d43d616e6c2f303", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.5.0.zip", + "type": "file", + "name": "react-0.5.0.zip", + "base_name": "react-0.5.0", + "extension": ".zip", + "size": 627024, + "date": "2018-03-12", + "sha1": "01b1dd623797217e5b6aa7b7bec5543636694b83", + "md5": "6b46455dba08b0454086ff69d04b5644", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.5.1.zip", + "type": "file", + "name": "react-0.5.1.zip", + "base_name": "react-0.5.1", + "extension": ".zip", + "size": 627425, + "date": "2018-03-12", + "sha1": "abf45ca2fcb6a8169accea1fefd4da5b53da1829", + "md5": "48d4909d0491f06f841932889c05c159", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.5.2.zip", + "type": "file", + "name": "react-0.5.2.zip", + "base_name": "react-0.5.2", + "extension": ".zip", + "size": 627521, + "date": "2018-03-12", + "sha1": "18ba08dd322febbc4ccf76b79b949ad8bf542b24", + "md5": "29772f7a2e42fef1aa79d022894879b3", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 3387, + "end_line": 3387, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.8.0.zip", + "type": "file", + "name": "react-0.8.0.zip", + "base_name": "react-0.8.0", + "extension": ".zip", + "size": 613812, + "date": "2018-03-12", + "sha1": "1f78574155976613a42453579ddfe5a96da1f4b5", + "md5": "301a4d71fc0f801e86aac41b5948292e", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-0.9.0-rc1.zip", + "type": "file", + "name": "react-0.9.0-rc1.zip", + "base_name": "react-0.9.0-rc1", + "extension": ".zip", + "size": 673107, + "date": "2018-03-12", + "sha1": "d5bd5e838e40eadd7d9c915ff01ad3308c22c553", + "md5": "f4cb4a728e4d0d608e9969032e718848", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.0.0-rc.1.zip", + "type": "file", + "name": "react-15.0.0-rc.1.zip", + "base_name": "react-15.0.0-rc.1", + "extension": ".zip", + "size": 570080, + "date": "2018-03-12", + "sha1": "5cf14fae75d42f61bb55c25bb07dd961fbfaab1c", + "md5": "57d419a547787d85ca7343503b06e456", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.0.0-rc.2.zip", + "type": "file", + "name": "react-15.0.0-rc.2.zip", + "base_name": "react-15.0.0-rc.2", + "extension": ".zip", + "size": 576047, + "date": "2018-03-12", + "sha1": "3fedd21bd435b5ccd92f8c5a21970dc778c62f05", + "md5": "95e696f693988c7d7bc6f4fcb077a1b4", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.0.0.zip", + "type": "file", + "name": "react-15.0.0.zip", + "base_name": "react-15.0.0", + "extension": ".zip", + "size": 522067, + "date": "2018-03-12", + "sha1": "355ee95c88844b4e5c0e8a40fed7eb45366c0ba5", + "md5": "0ed23a113a71921ec3d97d3090fb3910", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.0.1.zip", + "type": "file", + "name": "react-15.0.1.zip", + "base_name": "react-15.0.1", + "extension": ".zip", + "size": 522912, + "date": "2018-03-12", + "sha1": "f1127640c7e306c080a1a911e36436abee88ec56", + "md5": "4fa84912b7dc01a357cd81effca4bd74", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.0.2.zip", + "type": "file", + "name": "react-15.0.2.zip", + "base_name": "react-15.0.2", + "extension": ".zip", + "size": 525530, + "date": "2018-03-12", + "sha1": "a1ff9492b9f8245196537a6270e6345cce4aee98", + "md5": "a0845610b8f932fcf0dfd74eb29fd0e1", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.1.0.zip", + "type": "file", + "name": "react-15.1.0.zip", + "base_name": "react-15.1.0", + "extension": ".zip", + "size": 532105, + "date": "2018-03-12", + "sha1": "90815cc027cc5916939da18013bee27a21725979", + "md5": "4ffa92865fd3be2272f718cd6e9942b6", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.2.0.zip", + "type": "file", + "name": "react-15.2.0.zip", + "base_name": "react-15.2.0", + "extension": ".zip", + "size": 550344, + "date": "2018-03-12", + "sha1": "3a6a6a681aab8ad870faa51735e157a7dbd45882", + "md5": "8f35e50a045ea56bc3503718b624fc86", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.2.1.zip", + "type": "file", + "name": "react-15.2.1.zip", + "base_name": "react-15.2.1", + "extension": ".zip", + "size": 546644, + "date": "2018-03-12", + "sha1": "a8324a6955d140decead9b1c9c13fabe6dced1f0", + "md5": "d451919c105d9fd39d84748b6b8e7000", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.3.0.zip", + "type": "file", + "name": "react-15.3.0.zip", + "base_name": "react-15.3.0", + "extension": ".zip", + "size": 554242, + "date": "2018-03-12", + "sha1": "b5e66deef03dcc5003b47a496cc955d15d7c3607", + "md5": "fac11785bd28e4fe227802e49ef029e0", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.3.1.zip", + "type": "file", + "name": "react-15.3.1.zip", + "base_name": "react-15.3.1", + "extension": ".zip", + "size": 554586, + "date": "2018-03-12", + "sha1": "c6d21324cc749927a1c2a9e421b28335115147df", + "md5": "609be41974089150f840d84dc677caa3", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.3.2.zip", + "type": "file", + "name": "react-15.3.2.zip", + "base_name": "react-15.3.2", + "extension": ".zip", + "size": 555365, + "date": "2018-03-12", + "sha1": "62d3e174b808e59c2cc7365d59920fe1c68b0a64", + "md5": "cba828f051a5a16b874f1cac433862b6", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.4.0.zip", + "type": "file", + "name": "react-15.4.0.zip", + "base_name": "react-15.4.0", + "extension": ".zip", + "size": 586239, + "date": "2018-03-12", + "sha1": "46f9a4c6f70090bc21fa140a34ade78777d08863", + "md5": "7d4c98a7be18163e6ed1f8e2375e7a72", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/react-15.4.1.zip", + "type": "file", + "name": "react-15.4.1.zip", + "base_name": "react-15.4.1", + "extension": ".zip", + "size": 586444, + "date": "2018-03-12", + "sha1": "1247e17c542902100249514e737f831508b2181c", + "md5": "278093c877c57557e10ec97a11b41de3", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/downloads/single-file-example.html", + "type": "file", + "name": "single-file-example.html", + "base_name": "single-file-example", + "extension": ".html", + "size": 543, + "date": "2018-03-12", + "sha1": "2ff99fd7a81e01dcd45c3f4a0c9f1da087bf8972", + "md5": "71fd9ad6ee0a25cde281ce2c3e55087f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img", + "type": "directory", + "name": "img", + "base_name": "img", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 110, + "dirs_count": 5, + "size_count": 23811454, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/external.png", + "type": "file", + "name": "external.png", + "base_name": "external", + "extension": ".png", + "size": 1245, + "date": "2018-03-12", + "sha1": "cb740ddff0a0fa038965fbd226db3e3b280c1623", + "md5": "d84491abab583ea16701be34cf31d212", + "mime_type": "image/png", + "file_type": "PNG image data, 10 x 10, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/external_2x.png", + "type": "file", + "name": "external_2x.png", + "base_name": "external_2x", + "extension": ".png", + "size": 1151, + "date": "2018-03-12", + "sha1": "772a8e2451e9936e5879593c4394c3f4785c0817", + "md5": "0afb728edbecebd57f1a561dde9b16d0", + "mime_type": "image/png", + "file_type": "PNG image data, 20 x 20, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/logo.svg", + "type": "file", + "name": "logo.svg", + "base_name": "logo", + "extension": ".svg", + "size": 1837, + "date": "2018-03-12", + "sha1": "6e9625c2ba13e8b72f9cf7c3b0af6477ef77eb41", + "md5": "3d593052bb2819bdf7709d9f7e512c8f", + "mime_type": "image/svg+xml", + "file_type": "SVG Scalable Vector Graphics image", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/logo_og.png", + "type": "file", + "name": "logo_og.png", + "base_name": "logo_og", + "extension": ".png", + "size": 10772, + "date": "2018-03-12", + "sha1": "88e85d4e80bcd6ade37d5d558e47bc416c34218a", + "md5": "8c3223d9228013e069df6a302e81c38f", + "mime_type": "image/png", + "file_type": "PNG image data, 1200 x 630, 8-bit colormap, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/logo_small.png", + "type": "file", + "name": "logo_small.png", + "base_name": "logo_small", + "extension": ".png", + "size": 10715, + "date": "2018-03-12", + "sha1": "6f959c7e7904d0c6f2a72047ba334f53d9838551", + "md5": "dc1bec46d7d27f3b952307cdd51b3ed5", + "mime_type": "image/png", + "file_type": "PNG image data, 38 x 38, 16-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/logo_small_2x.png", + "type": "file", + "name": "logo_small_2x.png", + "base_name": "logo_small_2x", + "extension": ".png", + "size": 29070, + "date": "2018-03-12", + "sha1": "69e94981a8ea90c73f9839579ef13e915d43b4e7", + "md5": "48c78c2af22dde71f6ff26ff7ecb173b", + "mime_type": "image/png", + "file_type": "PNG image data, 76 x 76, 16-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/logo_small_gray.png", + "type": "file", + "name": "logo_small_gray.png", + "base_name": "logo_small_gray", + "extension": ".png", + "size": 5556, + "date": "2018-03-12", + "sha1": "43793a42a47d87faf4d2ccaeeb1a353a5966e983", + "md5": "269f02b5b2c803e0be28e75c241863c7", + "mime_type": "image/png", + "file_type": "PNG image data, 38 x 38, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/logo_small_gray_2x.png", + "type": "file", + "name": "logo_small_gray_2x.png", + "base_name": "logo_small_gray_2x", + "extension": ".png", + "size": 9481, + "date": "2018-03-12", + "sha1": "b77148536010d5c2d888f071a318f06e1957df5b", + "md5": "1b03163754cd483c236c520a7a2b9d5b", + "mime_type": "image/png", + "file_type": "PNG image data, 76 x 76, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/noise.png", + "type": "file", + "name": "noise.png", + "base_name": "noise", + "extension": ".png", + "size": 23367, + "date": "2018-03-12", + "sha1": "cf190bdc9833a02871064efd384614ac85e8bd4b", + "md5": "03ba0b2eeb916bdfdf1b33b340366cf5", + "mime_type": "image/png", + "file_type": "PNG image data, 100 x 100, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/oss_logo.png", + "type": "file", + "name": "oss_logo.png", + "base_name": "oss_logo", + "extension": ".png", + "size": 4370, + "date": "2018-03-12", + "sha1": "c82b09f138defc905aceea97ed086fad1bd54f68", + "md5": "eeb558422baffdaf41e339fc5181490c", + "mime_type": "image/png", + "file_type": "PNG image data, 340 x 90, 8-bit colormap, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/search.png", + "type": "file", + "name": "search.png", + "base_name": "search", + "extension": ".png", + "size": 1378, + "date": "2018-03-12", + "sha1": "814e896c23056dd01d013ec1740a8c6b149be226", + "md5": "200b8c1f031387ca796e3816abd9cd80", + "mime_type": "image/png", + "file_type": "PNG image data, 24 x 24, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog", + "type": "directory", + "name": "blog", + "base_name": "blog", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 83, + "dirs_count": 2, + "size_count": 22603912, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/animal-sounds.jpg", + "type": "file", + "name": "animal-sounds.jpg", + "base_name": "animal-sounds", + "extension": ".jpg", + "size": 52944, + "date": "2018-03-12", + "sha1": "13610fd42aafe3c92ffe40790ecdd0c35fa2e89a", + "md5": "1cad4abc4981408fe6cada29defc68d6", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 96x96, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=5, orientation=upper-left, xresolution=74, yresolution=82, resolutionunit=2], baseline, precision 8, 500x281, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2007 Apple Inc." + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 81, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/chatapp.png", + "type": "file", + "name": "chatapp.png", + "base_name": "chatapp", + "extension": ".png", + "size": 27896, + "date": "2018-03-12", + "sha1": "3cb9244366c94e7dded959f60957fa26cea55ec8", + "md5": "1b6164ef283ea91c81ab3394e0741c04", + "mime_type": "image/png", + "file_type": "PNG image data, 441 x 166, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/cra-better-output.png", + "type": "file", + "name": "cra-better-output.png", + "base_name": "cra-better-output", + "extension": ".png", + "size": 219305, + "date": "2018-03-12", + "sha1": "4a1eb6570d52b4918cb2857c5fcde5f3fffe6f5c", + "md5": "d545783318e3e5de5d0e9e82b0a35b0b", + "mime_type": "image/png", + "file_type": "PNG image data, 1000 x 360, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/cra-dynamic-import.gif", + "type": "file", + "name": "cra-dynamic-import.gif", + "base_name": "cra-dynamic-import", + "extension": ".gif", + "size": 1736236, + "date": "2018-03-12", + "sha1": "2765f1be914a193cc6fb95977a372fb2e9412e45", + "md5": "b967396662319e6aa6170dab232f0286", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 1184 x 627", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 19070, + "end_line": 19070, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 99, + "end_line": 102 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 228, + "end_line": 231 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 357, + "end_line": 360 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 486, + "end_line": 489 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 615, + "end_line": 618 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 744, + "end_line": 747 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 873, + "end_line": 876 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1002, + "end_line": 1005 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1131, + "end_line": 1134 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1260, + "end_line": 1263 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1389, + "end_line": 1392 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1518, + "end_line": 1521 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1647, + "end_line": 1650 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1776, + "end_line": 1779 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1905, + "end_line": 1908 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2034, + "end_line": 2037 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2163, + "end_line": 2166 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2292, + "end_line": 2295 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2421, + "end_line": 2424 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2550, + "end_line": 2553 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2679, + "end_line": 2682 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2808, + "end_line": 2811 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2937, + "end_line": 2940 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3066, + "end_line": 3069 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3195, + "end_line": 3198 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3324, + "end_line": 3327 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3453, + "end_line": 3456 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3582, + "end_line": 3585 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3711, + "end_line": 3714 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3840, + "end_line": 3843 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3969, + "end_line": 3972 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4098, + "end_line": 4101 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4227, + "end_line": 4230 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4356, + "end_line": 4359 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4485, + "end_line": 4488 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4614, + "end_line": 4617 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4743, + "end_line": 4746 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4872, + "end_line": 4875 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5001, + "end_line": 5004 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5130, + "end_line": 5133 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5259, + "end_line": 5262 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5388, + "end_line": 5391 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5517, + "end_line": 5520 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5646, + "end_line": 5649 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5775, + "end_line": 5778 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5904, + "end_line": 5907 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6033, + "end_line": 6036 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6162, + "end_line": 6165 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6291, + "end_line": 6294 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6420, + "end_line": 6423 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6549, + "end_line": 6552 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6678, + "end_line": 6681 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6807, + "end_line": 6810 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6936, + "end_line": 6939 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7065, + "end_line": 7068 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7194, + "end_line": 7197 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7323, + "end_line": 7326 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7452, + "end_line": 7455 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7581, + "end_line": 7584 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7710, + "end_line": 7713 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7839, + "end_line": 7842 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7968, + "end_line": 7971 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8097, + "end_line": 8100 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8226, + "end_line": 8229 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8355, + "end_line": 8358 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8484, + "end_line": 8487 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8613, + "end_line": 8616 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8742, + "end_line": 8745 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8871, + "end_line": 8874 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9000, + "end_line": 9003 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9129, + "end_line": 9132 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9258, + "end_line": 9261 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9387, + "end_line": 9390 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9516, + "end_line": 9519 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9645, + "end_line": 9648 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9774, + "end_line": 9777 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9903, + "end_line": 9906 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10032, + "end_line": 10035 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10161, + "end_line": 10164 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10290, + "end_line": 10293 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10419, + "end_line": 10422 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10548, + "end_line": 10551 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10677, + "end_line": 10680 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10806, + "end_line": 10809 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10935, + "end_line": 10938 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11064, + "end_line": 11067 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11193, + "end_line": 11196 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11322, + "end_line": 11325 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11451, + "end_line": 11454 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11580, + "end_line": 11583 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11709, + "end_line": 11712 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11838, + "end_line": 11841 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11967, + "end_line": 11970 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12096, + "end_line": 12099 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12225, + "end_line": 12228 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12354, + "end_line": 12357 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12483, + "end_line": 12486 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12612, + "end_line": 12615 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12741, + "end_line": 12744 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12870, + "end_line": 12873 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12999, + "end_line": 13002 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13128, + "end_line": 13131 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13257, + "end_line": 13260 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13386, + "end_line": 13389 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13515, + "end_line": 13518 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13644, + "end_line": 13647 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13773, + "end_line": 13776 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13902, + "end_line": 13905 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14031, + "end_line": 14034 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14160, + "end_line": 14163 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14289, + "end_line": 14292 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14418, + "end_line": 14421 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14547, + "end_line": 14550 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14676, + "end_line": 14679 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14805, + "end_line": 14808 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14934, + "end_line": 14937 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15063, + "end_line": 15066 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15192, + "end_line": 15195 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15321, + "end_line": 15324 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15450, + "end_line": 15453 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15579, + "end_line": 15582 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15708, + "end_line": 15711 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15837, + "end_line": 15840 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15966, + "end_line": 15969 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16095, + "end_line": 16098 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16224, + "end_line": 16227 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16353, + "end_line": 16356 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16482, + "end_line": 16485 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16611, + "end_line": 16614 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16740, + "end_line": 16743 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16869, + "end_line": 16872 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16998, + "end_line": 17001 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17127, + "end_line": 17130 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17256, + "end_line": 17259 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17385, + "end_line": 17388 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17514, + "end_line": 17517 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/cra-jest-search.gif", + "type": "file", + "name": "cra-jest-search.gif", + "base_name": "cra-jest-search", + "extension": ".gif", + "size": 928706, + "date": "2018-03-12", + "sha1": "bcd76e0efafa85f3e1d097759737709f14f6df10", + "md5": "bf7aa2c62ad1f43fca436bfb4d8b3a0f", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 983 x 579", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 118, + "end_line": 121 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 247, + "end_line": 250 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 376, + "end_line": 379 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 505, + "end_line": 508 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 634, + "end_line": 637 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 763, + "end_line": 766 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 892, + "end_line": 895 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1021, + "end_line": 1024 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1150, + "end_line": 1153 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1279, + "end_line": 1282 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1408, + "end_line": 1411 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1537, + "end_line": 1540 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1666, + "end_line": 1669 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1795, + "end_line": 1798 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1924, + "end_line": 1927 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2053, + "end_line": 2056 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2182, + "end_line": 2185 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2311, + "end_line": 2314 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2440, + "end_line": 2443 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2569, + "end_line": 2572 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2698, + "end_line": 2701 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2827, + "end_line": 2830 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2956, + "end_line": 2959 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3085, + "end_line": 3088 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3214, + "end_line": 3217 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3343, + "end_line": 3346 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3472, + "end_line": 3475 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3601, + "end_line": 3604 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3730, + "end_line": 3733 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3859, + "end_line": 3862 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3988, + "end_line": 3991 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4117, + "end_line": 4120 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4246, + "end_line": 4249 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4375, + "end_line": 4378 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4504, + "end_line": 4507 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4633, + "end_line": 4636 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4762, + "end_line": 4765 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4891, + "end_line": 4894 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5020, + "end_line": 5023 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5149, + "end_line": 5152 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5278, + "end_line": 5281 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5407, + "end_line": 5410 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5536, + "end_line": 5539 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5665, + "end_line": 5668 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5794, + "end_line": 5797 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5923, + "end_line": 5926 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6052, + "end_line": 6055 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6181, + "end_line": 6184 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6310, + "end_line": 6313 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6439, + "end_line": 6442 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6568, + "end_line": 6571 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6697, + "end_line": 6700 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6826, + "end_line": 6829 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6955, + "end_line": 6958 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7084, + "end_line": 7087 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7213, + "end_line": 7216 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7342, + "end_line": 7345 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7471, + "end_line": 7474 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7600, + "end_line": 7603 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7729, + "end_line": 7732 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7858, + "end_line": 7861 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7987, + "end_line": 7990 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8116, + "end_line": 8119 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8245, + "end_line": 8248 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8374, + "end_line": 8377 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8503, + "end_line": 8506 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8632, + "end_line": 8635 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8761, + "end_line": 8764 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8890, + "end_line": 8893 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9019, + "end_line": 9022 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9148, + "end_line": 9151 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9277, + "end_line": 9280 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9406, + "end_line": 9409 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9535, + "end_line": 9538 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9664, + "end_line": 9667 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9793, + "end_line": 9796 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9922, + "end_line": 9925 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10051, + "end_line": 10054 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10180, + "end_line": 10183 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10309, + "end_line": 10312 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10438, + "end_line": 10441 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10567, + "end_line": 10570 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10696, + "end_line": 10699 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10825, + "end_line": 10828 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10954, + "end_line": 10957 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11083, + "end_line": 11086 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11212, + "end_line": 11215 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11341, + "end_line": 11344 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11470, + "end_line": 11473 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11599, + "end_line": 11602 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11728, + "end_line": 11731 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11857, + "end_line": 11860 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11986, + "end_line": 11989 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12115, + "end_line": 12118 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12244, + "end_line": 12247 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12373, + "end_line": 12376 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12502, + "end_line": 12505 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12631, + "end_line": 12634 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12760, + "end_line": 12763 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12889, + "end_line": 12892 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13018, + "end_line": 13021 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13147, + "end_line": 13150 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13276, + "end_line": 13279 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13405, + "end_line": 13408 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13534, + "end_line": 13537 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13663, + "end_line": 13666 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13792, + "end_line": 13795 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13921, + "end_line": 13924 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14050, + "end_line": 14053 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14179, + "end_line": 14182 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14308, + "end_line": 14311 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14437, + "end_line": 14440 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14566, + "end_line": 14569 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14695, + "end_line": 14698 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14824, + "end_line": 14827 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14953, + "end_line": 14956 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15082, + "end_line": 15085 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15211, + "end_line": 15214 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15340, + "end_line": 15343 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15469, + "end_line": 15472 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15598, + "end_line": 15601 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15727, + "end_line": 15730 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15856, + "end_line": 15859 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15985, + "end_line": 15988 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16114, + "end_line": 16117 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16243, + "end_line": 16246 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16372, + "end_line": 16375 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16501, + "end_line": 16504 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16630, + "end_line": 16633 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16759, + "end_line": 16762 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16888, + "end_line": 16891 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17017, + "end_line": 17020 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17146, + "end_line": 17149 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17275, + "end_line": 17278 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/cra-pwa.png", + "type": "file", + "name": "cra-pwa.png", + "base_name": "cra-pwa", + "extension": ".png", + "size": 92380, + "date": "2018-03-12", + "sha1": "a9a10ab3b5cac70107374572f85bedca801af07f", + "md5": "0385d01e2a3fa6a7cd230b38f06772b7", + "mime_type": "image/png", + "file_type": "PNG image data, 1164 x 482, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/cra-runtime-error.gif", + "type": "file", + "name": "cra-runtime-error.gif", + "base_name": "cra-runtime-error", + "extension": ".gif", + "size": 1826225, + "date": "2018-03-12", + "sha1": "b89d34a1203ca40e483f1c3d94cc7e89300a9c93", + "md5": "a0c1e436d1ea034c8ecaf48e8bcb2890", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 675 x 649", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 96, + "end_line": 99 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 225, + "end_line": 228 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 354, + "end_line": 357 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 483, + "end_line": 486 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 612, + "end_line": 615 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 741, + "end_line": 744 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 870, + "end_line": 873 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 999, + "end_line": 1002 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1128, + "end_line": 1131 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1257, + "end_line": 1260 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1386, + "end_line": 1389 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1515, + "end_line": 1518 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1644, + "end_line": 1647 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1773, + "end_line": 1776 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1902, + "end_line": 1905 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2031, + "end_line": 2034 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2160, + "end_line": 2163 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2289, + "end_line": 2292 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2418, + "end_line": 2421 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2547, + "end_line": 2550 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2676, + "end_line": 2679 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2805, + "end_line": 2808 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2934, + "end_line": 2937 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3063, + "end_line": 3066 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3192, + "end_line": 3195 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3321, + "end_line": 3324 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3450, + "end_line": 3453 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3579, + "end_line": 3582 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3708, + "end_line": 3711 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3837, + "end_line": 3840 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3966, + "end_line": 3969 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4095, + "end_line": 4098 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4224, + "end_line": 4227 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4353, + "end_line": 4356 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4482, + "end_line": 4485 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4611, + "end_line": 4614 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4740, + "end_line": 4743 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4869, + "end_line": 4872 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4998, + "end_line": 5001 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5127, + "end_line": 5130 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5256, + "end_line": 5259 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5385, + "end_line": 5388 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5514, + "end_line": 5517 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5643, + "end_line": 5646 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5772, + "end_line": 5775 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5901, + "end_line": 5904 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6030, + "end_line": 6033 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6159, + "end_line": 6162 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6288, + "end_line": 6291 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6417, + "end_line": 6420 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6546, + "end_line": 6549 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6675, + "end_line": 6678 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6804, + "end_line": 6807 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6933, + "end_line": 6936 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7062, + "end_line": 7065 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7191, + "end_line": 7194 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7320, + "end_line": 7323 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7449, + "end_line": 7452 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7578, + "end_line": 7581 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7707, + "end_line": 7710 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7836, + "end_line": 7839 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7965, + "end_line": 7968 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8094, + "end_line": 8097 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8223, + "end_line": 8226 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8352, + "end_line": 8355 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8481, + "end_line": 8484 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8610, + "end_line": 8613 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8739, + "end_line": 8742 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8868, + "end_line": 8871 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8997, + "end_line": 9000 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9126, + "end_line": 9129 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9255, + "end_line": 9258 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9384, + "end_line": 9387 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9513, + "end_line": 9516 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9642, + "end_line": 9645 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9771, + "end_line": 9774 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9900, + "end_line": 9903 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10029, + "end_line": 10032 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10158, + "end_line": 10161 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10287, + "end_line": 10290 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10416, + "end_line": 10419 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10545, + "end_line": 10548 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10674, + "end_line": 10677 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10803, + "end_line": 10806 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10932, + "end_line": 10935 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11061, + "end_line": 11064 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11190, + "end_line": 11193 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11319, + "end_line": 11322 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11448, + "end_line": 11451 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11577, + "end_line": 11580 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11706, + "end_line": 11709 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11835, + "end_line": 11838 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11964, + "end_line": 11967 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12093, + "end_line": 12096 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12222, + "end_line": 12225 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12351, + "end_line": 12354 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12480, + "end_line": 12483 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12609, + "end_line": 12612 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12738, + "end_line": 12741 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12867, + "end_line": 12870 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12996, + "end_line": 12999 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13125, + "end_line": 13128 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13254, + "end_line": 13257 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13383, + "end_line": 13386 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13512, + "end_line": 13515 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13641, + "end_line": 13644 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13770, + "end_line": 13773 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13899, + "end_line": 13902 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14028, + "end_line": 14031 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14157, + "end_line": 14160 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14286, + "end_line": 14289 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14415, + "end_line": 14418 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14544, + "end_line": 14547 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14673, + "end_line": 14676 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14802, + "end_line": 14805 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14931, + "end_line": 14934 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15060, + "end_line": 15063 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15189, + "end_line": 15192 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15318, + "end_line": 15321 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15447, + "end_line": 15450 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15576, + "end_line": 15579 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15705, + "end_line": 15708 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15834, + "end_line": 15837 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15963, + "end_line": 15966 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16092, + "end_line": 16095 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16221, + "end_line": 16224 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16350, + "end_line": 16353 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16479, + "end_line": 16482 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16608, + "end_line": 16611 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16737, + "end_line": 16740 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16866, + "end_line": 16869 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16995, + "end_line": 16998 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17124, + "end_line": 17127 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17253, + "end_line": 17256 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17382, + "end_line": 17385 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17511, + "end_line": 17514 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17640, + "end_line": 17643 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17769, + "end_line": 17772 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17898, + "end_line": 17901 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18027, + "end_line": 18030 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18156, + "end_line": 18159 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18285, + "end_line": 18288 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18414, + "end_line": 18417 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18543, + "end_line": 18546 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18672, + "end_line": 18675 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18801, + "end_line": 18804 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18930, + "end_line": 18933 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19059, + "end_line": 19062 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19188, + "end_line": 19191 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19317, + "end_line": 19320 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19446, + "end_line": 19449 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19575, + "end_line": 19578 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19704, + "end_line": 19707 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19833, + "end_line": 19836 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19962, + "end_line": 19965 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20091, + "end_line": 20094 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20220, + "end_line": 20223 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20349, + "end_line": 20352 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20478, + "end_line": 20481 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20607, + "end_line": 20610 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20736, + "end_line": 20739 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20865, + "end_line": 20868 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20994, + "end_line": 20997 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21123, + "end_line": 21126 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21252, + "end_line": 21255 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21381, + "end_line": 21384 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21510, + "end_line": 21513 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21639, + "end_line": 21642 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21768, + "end_line": 21771 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21897, + "end_line": 21900 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22026, + "end_line": 22029 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22155, + "end_line": 22158 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22284, + "end_line": 22287 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22413, + "end_line": 22416 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22542, + "end_line": 22545 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22671, + "end_line": 22674 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22800, + "end_line": 22803 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22929, + "end_line": 22932 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 23058, + "end_line": 23061 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 23187, + "end_line": 23190 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/cra-update-exports.gif", + "type": "file", + "name": "cra-update-exports.gif", + "base_name": "cra-update-exports", + "extension": ".gif", + "size": 1426094, + "date": "2018-03-12", + "sha1": "ff16c2c714c133afbd86d1f2b0d556dc96a71ac8", + "md5": "d9aaae3589e6a7b6076b64de79f4bd13", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 970 x 533", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 107, + "end_line": 110 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 236, + "end_line": 239 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 365, + "end_line": 368 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 494, + "end_line": 497 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 623, + "end_line": 626 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 752, + "end_line": 755 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 881, + "end_line": 884 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1010, + "end_line": 1013 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1139, + "end_line": 1142 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1268, + "end_line": 1271 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1397, + "end_line": 1400 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1526, + "end_line": 1529 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1655, + "end_line": 1658 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1784, + "end_line": 1787 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1913, + "end_line": 1916 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2042, + "end_line": 2045 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2171, + "end_line": 2174 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2300, + "end_line": 2303 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2429, + "end_line": 2432 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2558, + "end_line": 2561 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2687, + "end_line": 2690 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2816, + "end_line": 2819 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2945, + "end_line": 2948 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3074, + "end_line": 3077 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3203, + "end_line": 3206 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3332, + "end_line": 3335 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3461, + "end_line": 3464 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3590, + "end_line": 3593 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3719, + "end_line": 3722 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3848, + "end_line": 3851 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3977, + "end_line": 3980 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4106, + "end_line": 4109 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4235, + "end_line": 4238 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4364, + "end_line": 4367 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4493, + "end_line": 4496 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4622, + "end_line": 4625 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4751, + "end_line": 4754 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4880, + "end_line": 4883 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5009, + "end_line": 5012 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5138, + "end_line": 5141 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5267, + "end_line": 5270 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5396, + "end_line": 5399 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5525, + "end_line": 5528 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5654, + "end_line": 5657 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5783, + "end_line": 5786 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5912, + "end_line": 5915 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6041, + "end_line": 6044 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6170, + "end_line": 6173 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6299, + "end_line": 6302 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6428, + "end_line": 6431 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6557, + "end_line": 6560 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6686, + "end_line": 6689 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6815, + "end_line": 6818 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6944, + "end_line": 6947 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7073, + "end_line": 7076 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7202, + "end_line": 7205 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7331, + "end_line": 7334 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7460, + "end_line": 7463 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7589, + "end_line": 7592 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7718, + "end_line": 7721 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7847, + "end_line": 7850 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7976, + "end_line": 7979 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8105, + "end_line": 8108 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8234, + "end_line": 8237 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8363, + "end_line": 8366 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8492, + "end_line": 8495 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8621, + "end_line": 8624 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8750, + "end_line": 8753 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8879, + "end_line": 8882 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9008, + "end_line": 9011 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9137, + "end_line": 9140 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9266, + "end_line": 9269 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9395, + "end_line": 9398 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9524, + "end_line": 9527 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9653, + "end_line": 9656 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9782, + "end_line": 9785 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9911, + "end_line": 9914 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10040, + "end_line": 10043 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10169, + "end_line": 10172 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10298, + "end_line": 10301 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10427, + "end_line": 10430 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10556, + "end_line": 10559 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10685, + "end_line": 10688 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10814, + "end_line": 10817 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10943, + "end_line": 10946 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11072, + "end_line": 11075 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11201, + "end_line": 11204 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11330, + "end_line": 11333 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11459, + "end_line": 11462 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11588, + "end_line": 11591 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11717, + "end_line": 11720 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11846, + "end_line": 11849 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11975, + "end_line": 11978 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12104, + "end_line": 12107 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12233, + "end_line": 12236 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12362, + "end_line": 12365 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12491, + "end_line": 12494 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12620, + "end_line": 12623 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12749, + "end_line": 12752 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12878, + "end_line": 12881 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13007, + "end_line": 13010 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13136, + "end_line": 13139 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13265, + "end_line": 13268 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13394, + "end_line": 13397 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13523, + "end_line": 13526 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13652, + "end_line": 13655 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13781, + "end_line": 13784 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13910, + "end_line": 13913 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14039, + "end_line": 14042 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14168, + "end_line": 14171 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14297, + "end_line": 14300 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14426, + "end_line": 14429 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14555, + "end_line": 14558 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14684, + "end_line": 14687 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14813, + "end_line": 14816 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14942, + "end_line": 14945 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15071, + "end_line": 15074 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15200, + "end_line": 15203 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15329, + "end_line": 15332 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15458, + "end_line": 15461 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15587, + "end_line": 15590 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15716, + "end_line": 15719 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15845, + "end_line": 15848 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15974, + "end_line": 15977 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16103, + "end_line": 16106 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16232, + "end_line": 16235 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16361, + "end_line": 16364 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16490, + "end_line": 16493 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16619, + "end_line": 16622 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16748, + "end_line": 16751 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16877, + "end_line": 16880 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17006, + "end_line": 17009 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17135, + "end_line": 17138 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17264, + "end_line": 17267 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17393, + "end_line": 17396 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17522, + "end_line": 17525 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17651, + "end_line": 17654 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17780, + "end_line": 17783 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17909, + "end_line": 17912 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18038, + "end_line": 18041 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18167, + "end_line": 18170 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18296, + "end_line": 18299 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18425, + "end_line": 18428 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18554, + "end_line": 18557 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18683, + "end_line": 18686 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18812, + "end_line": 18815 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18941, + "end_line": 18944 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19070, + "end_line": 19073 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19199, + "end_line": 19202 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19328, + "end_line": 19331 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19457, + "end_line": 19460 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19586, + "end_line": 19589 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19715, + "end_line": 19718 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19844, + "end_line": 19847 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19973, + "end_line": 19976 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20102, + "end_line": 20105 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20231, + "end_line": 20234 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20360, + "end_line": 20363 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20489, + "end_line": 20492 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20618, + "end_line": 20621 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20747, + "end_line": 20750 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20876, + "end_line": 20879 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21005, + "end_line": 21008 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21134, + "end_line": 21137 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21263, + "end_line": 21266 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21392, + "end_line": 21395 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21521, + "end_line": 21524 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21650, + "end_line": 21653 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21779, + "end_line": 21782 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21908, + "end_line": 21911 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22037, + "end_line": 22040 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22166, + "end_line": 22169 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22295, + "end_line": 22298 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22424, + "end_line": 22427 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22553, + "end_line": 22556 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22682, + "end_line": 22685 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22811, + "end_line": 22814 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/devtools-full.gif", + "type": "file", + "name": "devtools-full.gif", + "base_name": "devtools-full", + "extension": ".gif", + "size": 1411979, + "date": "2018-03-12", + "sha1": "03edc1c9a953b8e5583a1f1ea8026252133802a0", + "md5": "f57ae67cfaa1fe76880654e2eddbf71f", + "mime_type": "image/gif", + "file_type": "GIF image data, version 87a, 667 x 523", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1804, + "end_line": 1804, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/devtools-search.gif", + "type": "file", + "name": "devtools-search.gif", + "base_name": "devtools-search", + "extension": ".gif", + "size": 951506, + "date": "2018-03-12", + "sha1": "687d61c75f4c9e529d4e1d50cb5a955e65900044", + "md5": "9e5f4fcd1569e0ff017320590aafbc85", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 1684 x 480", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/devtools-side-pane.gif", + "type": "file", + "name": "devtools-side-pane.gif", + "base_name": "devtools-side-pane", + "extension": ".gif", + "size": 43651, + "date": "2018-03-12", + "sha1": "440cd4086a058c36fb88cfa1443c1cc9187b5d38", + "md5": "f3552d987634913612d6f06248fd303d", + "mime_type": "image/gif", + "file_type": "GIF image data, version 87a, 304 x 167", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/devtools-tree-view.png", + "type": "file", + "name": "devtools-tree-view.png", + "base_name": "devtools-tree-view", + "extension": ".png", + "size": 137231, + "date": "2018-03-12", + "sha1": "dad211b3ff65b7537dd1f1871b312ea9ffc5ec8e", + "md5": "61c568f7eda6873372cabdbab1881864", + "mime_type": "image/png", + "file_type": "PNG image data, 1320 x 298, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/dog-tutorial.png", + "type": "file", + "name": "dog-tutorial.png", + "base_name": "dog-tutorial", + "extension": ".png", + "size": 60612, + "date": "2018-03-12", + "sha1": "249b4f81e27eff388731fd8fb003bb105105e700", + "md5": "96807644f633646869c8d66e03ba3bf7", + "mime_type": "image/png", + "file_type": "PNG image data, 313 x 328, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/first-look.png", + "type": "file", + "name": "first-look.png", + "base_name": "first-look", + "extension": ".png", + "size": 37204, + "date": "2018-03-12", + "sha1": "43f7857e58d938daa4d7eec4dd054056fe21425e", + "md5": "8c9e83c989bcb8fdfbcf0fd436fddcf7", + "mime_type": "image/png", + "file_type": "PNG image data, 339 x 220, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/flux-chart.png", + "type": "file", + "name": "flux-chart.png", + "base_name": "flux-chart", + "extension": ".png", + "size": 69635, + "date": "2018-03-12", + "sha1": "7fc8e35cc50169a3a88cef5b98f1c5fab9887d4a", + "md5": "857412b121f26e85a44ae14f9d5c11d7", + "mime_type": "image/png", + "file_type": "PNG image data, 843 x 474, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/flux-diagram.png", + "type": "file", + "name": "flux-diagram.png", + "base_name": "flux-diagram", + "extension": ".png", + "size": 202137, + "date": "2018-03-12", + "sha1": "f036eec1d3c2a11ed0dc84a745047c5dd18c1c54", + "md5": "02e550a98a255ba3bad064c74d2804c9", + "mime_type": "image/png", + "file_type": "PNG image data, 2202 x 1096, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/genesis_skeleton.png", + "type": "file", + "name": "genesis_skeleton.png", + "base_name": "genesis_skeleton", + "extension": ".png", + "size": 171970, + "date": "2018-03-12", + "sha1": "d767db9f993f90be9eae2c33ab8aadda63d1b8ac", + "md5": "2af1fbab891a5036b4bed47f36aa7823", + "mime_type": "image/png", + "file_type": "PNG image data, 473 x 197, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/gpu-cursor-move.gif", + "type": "file", + "name": "gpu-cursor-move.gif", + "base_name": "gpu-cursor-move", + "extension": ".gif", + "size": 808516, + "date": "2018-03-12", + "sha1": "e085ef69796100c52eba0e40c83a9dd0ac60682e", + "md5": "815dd214138d96c3144488df6f6e6c69", + "mime_type": "image/gif", + "file_type": "GIF image data, version 87a, 820 x 276", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/guess_filter.jpg", + "type": "file", + "name": "guess_filter.jpg", + "base_name": "guess_filter", + "extension": ".jpg", + "size": 40622, + "date": "2018-03-12", + "sha1": "14ef25c97351d93c104c02ac60dbdab8af703b31", + "md5": "317f2412cbbaa4f96e5dc1fd5169ba79", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 96x96, segment length 16, baseline, precision 8, 500x430, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/hacker-news-react-native.png", + "type": "file", + "name": "hacker-news-react-native.png", + "base_name": "hacker-news-react-native", + "extension": ".png", + "size": 130299, + "date": "2018-03-12", + "sha1": "8fd5367b394edfcfa44d1eb1e9012d28281454c9", + "md5": "046a6d439fc8caff090a2c1cde875533", + "mime_type": "image/png", + "file_type": "PNG image data, 400 x 306, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/jsx-compiler.png", + "type": "file", + "name": "jsx-compiler.png", + "base_name": "jsx-compiler", + "extension": ".png", + "size": 30743, + "date": "2018-03-12", + "sha1": "a328723b0e56d949bff645605b3dae630444eb80", + "md5": "d67cf49fcebc0da9ad0e68c93d9faf16", + "mime_type": "image/png", + "file_type": "PNG image data, 595 x 221, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/kendoui.png", + "type": "file", + "name": "kendoui.png", + "base_name": "kendoui", + "extension": ".png", + "size": 42158, + "date": "2018-03-12", + "sha1": "04bbcf3e272c5e08a703b71fc49e934ecef9a8a0", + "md5": "361009304e48fbcc42d813d38d561f86", + "mime_type": "image/png", + "file_type": "PNG image data, 248 x 300, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/khan-academy-editor.png", + "type": "file", + "name": "khan-academy-editor.png", + "base_name": "khan-academy-editor", + "extension": ".png", + "size": 11108, + "date": "2018-03-12", + "sha1": "22e8ca0df9637172406989fcd99618d352faa422", + "md5": "6766b99a660aad664aadd0fb63983ebe", + "mime_type": "application/octet-stream", + "file_type": "RIFF (little-endian) data, Web/P image, VP8 encoding, 485x315, Scaling: [none]x[none], YUV color, decoders should clamp", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/landoflisp.png", + "type": "file", + "name": "landoflisp.png", + "base_name": "landoflisp", + "extension": ".png", + "size": 160194, + "date": "2018-03-12", + "sha1": "64d915e4c6373aab3849e05b9ed2ba1c6e04c976", + "md5": "3cd3060cc891a97dc13e72afcccb1add", + "mime_type": "image/png", + "file_type": "PNG image data, 415 x 191, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/lights-out.png", + "type": "file", + "name": "lights-out.png", + "base_name": "lights-out", + "extension": ".png", + "size": 12177, + "date": "2018-03-12", + "sha1": "68fe90782baac56f9b047a7ad48840e00784f92d", + "md5": "fd11175e830c284632c2b3c88b4c2b53", + "mime_type": "image/png", + "file_type": "PNG image data, 206 x 226, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/makona-editor.png", + "type": "file", + "name": "makona-editor.png", + "base_name": "makona-editor", + "extension": ".png", + "size": 35388, + "date": "2018-03-12", + "sha1": "6a7e4ee56a472f30fd0a49cb4405811cd24c768a", + "md5": "9a2a6ecafd538dd59070c73490af5863", + "mime_type": "image/png", + "file_type": "PNG image data, 600 x 348, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/markdown_refactor.png", + "type": "file", + "name": "markdown_refactor.png", + "base_name": "markdown_refactor", + "extension": ".png", + "size": 7329, + "date": "2018-03-12", + "sha1": "d2640fff79c83eaced21a9ebe773e42744b05711", + "md5": "9cbf2dccd7d98476faeb0231e5637c50", + "mime_type": "image/png", + "file_type": "PNG image data, 233 x 301, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/modus-create.gif", + "type": "file", + "name": "modus-create.gif", + "base_name": "modus-create", + "extension": ".gif", + "size": 1016073, + "date": "2018-03-12", + "sha1": "97602540574eb1070cc1877acc3cf2e29073ebd9", + "md5": "0183b8a57a7dac85055377b28438e013", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 250 x 443", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/monkeys.gif", + "type": "file", + "name": "monkeys.gif", + "base_name": "monkeys", + "extension": ".gif", + "size": 544763, + "date": "2018-03-12", + "sha1": "456550a64855c30950c7a68a5aae37e42c570f47", + "md5": "59f1cd505fd0b91572fffed4d86685bb", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 625 x 400", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/ngreact.png", + "type": "file", + "name": "ngreact.png", + "base_name": "ngreact", + "extension": ".png", + "size": 87313, + "date": "2018-03-12", + "sha1": "693b9c1234348bdb6b38fd0276fb199fb1221df6", + "md5": "51e459a43f8bd2bd99e3be5c6f32813a", + "mime_type": "image/png", + "file_type": "PNG image data, 500 x 256, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/om-backbone.png", + "type": "file", + "name": "om-backbone.png", + "base_name": "om-backbone", + "extension": ".png", + "size": 180191, + "date": "2018-03-12", + "sha1": "75d1dcce7e1076f984af448f598318db1aa1363e", + "md5": "615063d608f6b5b3101235e74cf99eb4", + "mime_type": "image/png", + "file_type": "PNG image data, 500 x 262, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/parse-react.jpg", + "type": "file", + "name": "parse-react.jpg", + "base_name": "parse-react", + "extension": ".jpg", + "size": 56963, + "date": "2018-03-12", + "sha1": "a3f373011e1a9348efde0cb8dba5a8bb9b18e1a2", + "md5": "18c9a1a375e21a2d334281a3c5922df8", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=5, orientation=upper-left, xresolution=74, yresolution=82, resolutionunit=2], baseline, precision 8, 650x120, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998 Hewlett-Packard Company" + ], + "holders": [ + "Hewlett-Packard Company" + ], + "authors": [], + "start_line": 28, + "end_line": 31 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/polarr.jpg", + "type": "file", + "name": "polarr.jpg", + "base_name": "polarr", + "extension": ".jpg", + "size": 71149, + "date": "2018-03-12", + "sha1": "f2ef9caa708e73a445f62a53699c8227c629b245", + "md5": "e50a59725d0b0ced47c636023b584891", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 143x143, segment length 16, baseline, precision 8, 500x264, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/propeller-logo.png", + "type": "file", + "name": "propeller-logo.png", + "base_name": "propeller-logo", + "extension": ".png", + "size": 3170, + "date": "2018-03-12", + "sha1": "e2547f9cb03b03a179f7e82b39d4c60f0d5fd603", + "md5": "f81fe4d55f721de1e08c161a4c882af7", + "mime_type": "image/png", + "file_type": "PNG image data, 100 x 100, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/property-finder.png", + "type": "file", + "name": "property-finder.png", + "base_name": "property-finder", + "extension": ".png", + "size": 74473, + "date": "2018-03-12", + "sha1": "565c236e22d0b6fdfea2c7eb4cfd2ed09dd48fe7", + "md5": "97cff832f19e4e243402925b9b3d12cb", + "mime_type": "image/png", + "file_type": "PNG image data, 400 x 206, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/quiztime.png", + "type": "file", + "name": "quiztime.png", + "base_name": "quiztime", + "extension": ".png", + "size": 22501, + "date": "2018-03-12", + "sha1": "fffcf5d5442fb10ac985aa9f7faa70a098968ff2", + "md5": "95b766be05bd6589b3dc7f945c6db93e", + "mime_type": "image/png", + "file_type": "PNG image data, 400 x 331, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-50k-mock-full.jpg", + "type": "file", + "name": "react-50k-mock-full.jpg", + "base_name": "react-50k-mock-full", + "extension": ".jpg", + "size": 137005, + "date": "2018-03-12", + "sha1": "7ac4d9651ce46c9d3ae84ba8006b4da819d85ae1", + "md5": "eb7dd3370ea3b5749034612ebcaa1982", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.02, aspect ratio, density 1x1, segment length 16, progressive, precision 8, 893x2048, frames 3, comment: \"*\", progressive, precision 8, 893x2048, frames 3, progressive, precision 8, 893x2048, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright International Color Consortium, 2009" + ], + "holders": [ + "International Color Consortium" + ], + "authors": [], + "start_line": 80, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-50k-mock.jpg", + "type": "file", + "name": "react-50k-mock.jpg", + "base_name": "react-50k-mock", + "extension": ".jpg", + "size": 121255, + "date": "2018-03-12", + "sha1": "6d1f3786d5386a0685743f1e97c0d950151c1824", + "md5": "290fce74ff90b2fd88f4ee99f7fe7ff3", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, aspect ratio, density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=3, PhotometricIntepretation=RGB, orientation=upper-left], baseline, precision 8, 893x916, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-50k-tshirt.jpg", + "type": "file", + "name": "react-50k-tshirt.jpg", + "base_name": "react-50k-tshirt", + "extension": ".jpg", + "size": 691819, + "date": "2018-03-12", + "sha1": "185a7a6458bad086ba8007c963592ae9cc07f91c", + "md5": "12155f7b0e41791b23f43df898d9db1c", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 1200x627, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-browserify-gulp.jpg", + "type": "file", + "name": "react-browserify-gulp.jpg", + "base_name": "react-browserify-gulp", + "extension": ".jpg", + "size": 25618, + "date": "2018-03-12", + "sha1": "f47e0519702d5a89997974d6f11fefdf473f7f23", + "md5": "d0986f12c3525568e499165918748238", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=6, PhotometricIntepretation=RGB, orientation=upper-left, xresolution=86, yresolution=94, resolutionunit=2], baseline, precision 8, 400x125, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998 Hewlett-Packard Company" + ], + "holders": [ + "Hewlett-Packard Company" + ], + "authors": [], + "start_line": 24, + "end_line": 27 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-dev-tools.jpg", + "type": "file", + "name": "react-dev-tools.jpg", + "base_name": "react-dev-tools", + "extension": ".jpg", + "size": 82849, + "date": "2018-03-12", + "sha1": "032821a1d75aeb966a0e9831276a7f408e710525", + "md5": "a99f4a4fa6a5d8d0d3f6bfe63cbdbf04", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=5, orientation=upper-left, xresolution=74, yresolution=82, resolutionunit=2], baseline, precision 8, 560x350, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998 Hewlett-Packard Company" + ], + "holders": [ + "Hewlett-Packard Company" + ], + "authors": [], + "start_line": 24, + "end_line": 27 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-diff-tree.png", + "type": "file", + "name": "react-diff-tree.png", + "base_name": "react-diff-tree", + "extension": ".png", + "size": 40606, + "date": "2018-03-12", + "sha1": "2b4067abbcf6f7440f96784a5204049f2ddab11f", + "md5": "ab3e34d4c5199e7ec89d0ab75b90290f", + "mime_type": "image/png", + "file_type": "PNG image data, 486 x 222, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-draggable.png", + "type": "file", + "name": "react-draggable.png", + "base_name": "react-draggable", + "extension": ".png", + "size": 27161, + "date": "2018-03-12", + "sha1": "4bb57e1c78e79d043e250524c88793d7c77b4790", + "md5": "23b9b8e4c880f434aad23a190cd1ee93", + "mime_type": "image/png", + "file_type": "PNG image data, 565 x 374, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-hackathon.jpg", + "type": "file", + "name": "react-hackathon.jpg", + "base_name": "react-hackathon", + "extension": ".jpg", + "size": 52568, + "date": "2018-03-12", + "sha1": "0061ed6e9aaf3b24f4e1b1084ade3b58ae93dee9", + "md5": "ca60734b2022b1d907464fb480782344", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 96x96, segment length 16, baseline, precision 8, 650x247, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-page.png", + "type": "file", + "name": "react-page.png", + "base_name": "react-page", + "extension": ".png", + "size": 24727, + "date": "2018-03-12", + "sha1": "a9a0a7c39f46f9b4862ec69696688c6693d60bdd", + "md5": "f6bb22c38d2b360dab1cb773615485db", + "mime_type": "image/png", + "file_type": "PNG image data, 465 x 153, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-perf-chrome-timeline.png", + "type": "file", + "name": "react-perf-chrome-timeline.png", + "base_name": "react-perf-chrome-timeline", + "extension": ".png", + "size": 98634, + "date": "2018-03-12", + "sha1": "1524ad713b6824a98fb8a6f63eb69de8e582bc53", + "md5": "63f56db2ca5ab70b87623590c96eb0cf", + "mime_type": "image/png", + "file_type": "PNG image data, 651 x 228, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-php.png", + "type": "file", + "name": "react-php.png", + "base_name": "react-php", + "extension": ".png", + "size": 42586, + "date": "2018-03-12", + "sha1": "478120b9805294fd99ad0f701472f71cad155481", + "md5": "804b15fd39108c456ffdd25c5f077372", + "mime_type": "image/png", + "file_type": "PNG image data, 300 x 384, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/react-svg-fbp.png", + "type": "file", + "name": "react-svg-fbp.png", + "base_name": "react-svg-fbp", + "extension": ".png", + "size": 73736, + "date": "2018-03-12", + "sha1": "163e550c78cb5673661f580ec71b965b638f2f97", + "md5": "2e8df5c51cbbbdcfd4321418288441d8", + "mime_type": "image/png", + "file_type": "PNG image data, 640 x 269, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/reactive-bookmarklet.png", + "type": "file", + "name": "reactive-bookmarklet.png", + "base_name": "reactive-bookmarklet", + "extension": ".png", + "size": 60069, + "date": "2018-03-12", + "sha1": "999d7f248e51949c2356420ef02a37b42a59ab01", + "md5": "9280ff42492136e8bc5ceefff68b0fa5", + "mime_type": "image/png", + "file_type": "PNG image data, 641 x 122, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/reflux-flux.png", + "type": "file", + "name": "reflux-flux.png", + "base_name": "reflux-flux", + "extension": ".png", + "size": 2911, + "date": "2018-03-12", + "sha1": "7c991fd02870f223e000358e131e177e98179515", + "md5": "06a26c2ebaafe52f613d64685aa89d6a", + "mime_type": "image/png", + "file_type": "PNG image data, 442 x 120, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/relay-visual-architecture-tour.png", + "type": "file", + "name": "relay-visual-architecture-tour.png", + "base_name": "relay-visual-architecture-tour", + "extension": ".png", + "size": 285245, + "date": "2018-03-12", + "sha1": "7f848782d86143e7ba39d091cb81bccc233f76c3", + "md5": "f4d891ea5b84d68d8ddce3434f375e6f", + "mime_type": "image/png", + "file_type": "PNG image data, 2512 x 1130, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/resistance-calculator.png", + "type": "file", + "name": "resistance-calculator.png", + "base_name": "resistance-calculator", + "extension": ".png", + "size": 59693, + "date": "2018-03-12", + "sha1": "2ade9abf7582ed05639640696a434135bcad29dc", + "md5": "a32e11eb035df993103a99a22997e61c", + "mime_type": "image/png", + "file_type": "PNG image data, 600 x 388, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/skills-matter.png", + "type": "file", + "name": "skills-matter.png", + "base_name": "skills-matter", + "extension": ".png", + "size": 169277, + "date": "2018-03-12", + "sha1": "77a226d24bb4412e66b6b72efafae76338f84833", + "md5": "e80c2ba543f0cea1b69b0c46760d0809", + "mime_type": "image/png", + "file_type": "PNG image data, 650 x 313, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/snake.png", + "type": "file", + "name": "snake.png", + "base_name": "snake", + "extension": ".png", + "size": 6958, + "date": "2018-03-12", + "sha1": "ef2985f1fa8bc2647b6f4e27d5879dc586b7665d", + "md5": "f7ff77c7e9a43b2553ab601a0df23d61", + "mime_type": "image/png", + "file_type": "PNG image data, 300 x 316, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/steve_reverse.gif", + "type": "file", + "name": "steve_reverse.gif", + "base_name": "steve_reverse", + "extension": ".gif", + "size": 5657828, + "date": "2018-03-12", + "sha1": "ae784b46d814b2dccb78dfeb92894b96ab1dd1f1", + "md5": "9a234bbe4d23c11a99f5b334b3f25f9b", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 320 x 240", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 11886, + "end_line": 11886, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 52236, + "end_line": 52236, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 64330, + "end_line": 64330, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/sweet-jsx.png", + "type": "file", + "name": "sweet-jsx.png", + "base_name": "sweet-jsx", + "extension": ".png", + "size": 49113, + "date": "2018-03-12", + "sha1": "6eba799f72f748c86ef0cbec88234003faf59d98", + "md5": "001c1e9da34664710e58a45734fe36a5", + "mime_type": "image/png", + "file_type": "PNG image data, 678 x 274, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/tcomb-react-native.png", + "type": "file", + "name": "tcomb-react-native.png", + "base_name": "tcomb-react-native", + "extension": ".png", + "size": 57521, + "date": "2018-03-12", + "sha1": "140f765cf7f819a2d083d07b0019004f6f7d0867", + "md5": "403868614cce5f5e7c9b9fe38bb51ce9", + "mime_type": "image/png", + "file_type": "PNG image data, 300 x 305, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/thinking-in-react-components.png", + "type": "file", + "name": "thinking-in-react-components.png", + "base_name": "thinking-in-react-components", + "extension": ".png", + "size": 28354, + "date": "2018-03-12", + "sha1": "db05fbd63c4edd7fb1263c85c7463a089f25e0e0", + "md5": "9b6934d31d42fff35b91ddadc9e9b2ab", + "mime_type": "image/png", + "file_type": "PNG image data, 275 x 319, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/thinking-in-react-mock.png", + "type": "file", + "name": "thinking-in-react-mock.png", + "base_name": "thinking-in-react-mock", + "extension": ".png", + "size": 24947, + "date": "2018-03-12", + "sha1": "15c329983201609c32e0b942360c9721ee3046ae", + "md5": "56fffff9f170375d2a34d42db6b39884", + "mime_type": "image/png", + "file_type": "PNG image data, 228 x 277, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/todomvc.png", + "type": "file", + "name": "todomvc.png", + "base_name": "todomvc", + "extension": ".png", + "size": 52203, + "date": "2018-03-12", + "sha1": "ea77ff371e19272f061b5d4e4e6e02d860e118ac", + "md5": "7773806e30d4b1efaac7857b1b05e5cb", + "mime_type": "image/png", + "file_type": "PNG image data, 595 x 203, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/turboreact.png", + "type": "file", + "name": "turboreact.png", + "base_name": "turboreact", + "extension": ".png", + "size": 5958, + "date": "2018-03-12", + "sha1": "620f596a1bdcabbdf3c25f77ffa6d69b4ed8122f", + "md5": "ebd36f4d20b7d82ce7fde839f72d0c48", + "mime_type": "image/png", + "file_type": "PNG image data, 566 x 213, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/tutsplus.png", + "type": "file", + "name": "tutsplus.png", + "base_name": "tutsplus", + "extension": ".png", + "size": 54273, + "date": "2018-03-12", + "sha1": "a4db55dbe75598ca8669b333cb3c8c64f0cfccb8", + "md5": "8a50cb684c7a785531c2a5bf97e5e336", + "mime_type": "image/png", + "file_type": "PNG image data, 591 x 344, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/unite.png", + "type": "file", + "name": "unite.png", + "base_name": "unite", + "extension": ".png", + "size": 16164, + "date": "2018-03-12", + "sha1": "d7ec55a4cea920961f5a843e9ff64793576fe7c0", + "md5": "f6b36e87514fffb689cdee47e0d8e8af", + "mime_type": "image/png", + "file_type": "PNG image data, 500 x 198, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/versioning-1.png", + "type": "file", + "name": "versioning-1.png", + "base_name": "versioning-1", + "extension": ".png", + "size": 22781, + "date": "2018-03-12", + "sha1": "52e1d4c79283db90725b2bc5e5ab39112f88a861", + "md5": "899ef384f039caa51a9f58b621828d7e", + "mime_type": "image/png", + "file_type": "PNG image data, 806 x 206, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/versioning-2.png", + "type": "file", + "name": "versioning-2.png", + "base_name": "versioning-2", + "extension": ".png", + "size": 23649, + "date": "2018-03-12", + "sha1": "6d297d4b71101b6ad85364d1c1ea88453756d9ba", + "md5": "90b0bb4245cfdf42bff9db6f496b75bd", + "mime_type": "image/png", + "file_type": "PNG image data, 926 x 222, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/versioning-3.png", + "type": "file", + "name": "versioning-3.png", + "base_name": "versioning-3", + "extension": ".png", + "size": 45207, + "date": "2018-03-12", + "sha1": "d2c348ad29a1c8c65002360f08501d6f733303b4", + "md5": "7575ed187d0a8ec68ec68169720d0f27", + "mime_type": "image/png", + "file_type": "PNG image data, 1006 x 274, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/versioning-4.png", + "type": "file", + "name": "versioning-4.png", + "base_name": "versioning-4", + "extension": ".png", + "size": 49055, + "date": "2018-03-12", + "sha1": "3e6e367884ef6f4e94b961353a022b5a5e0af990", + "md5": "d8dd49a51f663d1b96c8b3ac27749f78", + "mime_type": "image/png", + "file_type": "PNG image data, 996 x 346, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/versioning-5.png", + "type": "file", + "name": "versioning-5.png", + "base_name": "versioning-5", + "extension": ".png", + "size": 32277, + "date": "2018-03-12", + "sha1": "22de0eec0e0f0f08d056e2bd0347fa43615260b1", + "md5": "b7e3bc7d2d111e92cfeb45ec0b361faa", + "mime_type": "image/png", + "file_type": "PNG image data, 986 x 266, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/versioning-6.png", + "type": "file", + "name": "versioning-6.png", + "base_name": "versioning-6", + "extension": ".png", + "size": 45913, + "date": "2018-03-12", + "sha1": "f9bb612eadb5738c0c2f5a17c9119244a0827464", + "md5": "ec08ea1a53fcb540a5930a3f1f231bf8", + "mime_type": "image/png", + "file_type": "PNG image data, 986 x 306, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/versioning-poll.png", + "type": "file", + "name": "versioning-poll.png", + "base_name": "versioning-poll", + "extension": ".png", + "size": 103093, + "date": "2018-03-12", + "sha1": "3b966a4f97753ccfd6c842ff61c5d25ccb8cd8fc", + "md5": "9c400b29e1830c92a07b2508ebc92933", + "mime_type": "image/png", + "file_type": "PNG image data, 1192 x 798, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/weather.png", + "type": "file", + "name": "weather.png", + "base_name": "weather", + "extension": ".png", + "size": 14239, + "date": "2018-03-12", + "sha1": "7a928f62d719974bce27cc1fb643a8159c856d43", + "md5": "d73b3436a7bf9e64643c97dfab44cde5", + "mime_type": "image/png", + "file_type": "PNG image data, 133 x 150, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/wolfenstein_react.png", + "type": "file", + "name": "wolfenstein_react.png", + "base_name": "wolfenstein_react", + "extension": ".png", + "size": 123703, + "date": "2018-03-12", + "sha1": "7637744213bbd96698d71cf3a136dde182aabe55", + "md5": "65f89d51a062a710c8d44a5c4f3420a4", + "mime_type": "image/png", + "file_type": "PNG image data, 650 x 283, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/xoxo2013.png", + "type": "file", + "name": "xoxo2013.png", + "base_name": "xoxo2013", + "extension": ".png", + "size": 251535, + "date": "2018-03-12", + "sha1": "bbe65dba25162072592f8490097cb2cd61013da8", + "md5": "d14d2aef929c0e140e4139550845f364", + "mime_type": "image/png", + "file_type": "PNG image data, 550 x 300, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/xreact.png", + "type": "file", + "name": "xreact.png", + "base_name": "xreact", + "extension": ".png", + "size": 7913, + "date": "2018-03-12", + "sha1": "e187efa3a0a22ab30104dd2aeed5ae9e8462b861", + "md5": "d6ca62cbd4d37d75dfd62239cbc17fe8", + "mime_type": "image/png", + "file_type": "PNG image data, 347 x 78, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/create-apps-with-no-configuration", + "type": "directory", + "name": "create-apps-with-no-configuration", + "base_name": "create-apps-with-no-configuration", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 839156, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/create-apps-with-no-configuration/compiled-successfully.png", + "type": "file", + "name": "compiled-successfully.png", + "base_name": "compiled-successfully", + "extension": ".png", + "size": 82588, + "date": "2018-03-12", + "sha1": "239cfbc638ed2dca81c03f591e8eb99006c5e7a2", + "md5": "78d35c62b35b6cf80c41b60460739f39", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/create-apps-with-no-configuration/compiled-with-warnings.png", + "type": "file", + "name": "compiled-with-warnings.png", + "base_name": "compiled-with-warnings", + "extension": ".png", + "size": 190570, + "date": "2018-03-12", + "sha1": "b75d1560291435c10aaca1a2abbac464ae7690a7", + "md5": "2629337321fc7b6a929d93bdc8404047", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/create-apps-with-no-configuration/created-folder.png", + "type": "file", + "name": "created-folder.png", + "base_name": "created-folder", + "extension": ".png", + "size": 196442, + "date": "2018-03-12", + "sha1": "360d941f3600255cb0347575db7886c017d0d124", + "md5": "983d880bf926b14816f3df2978be884f", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/create-apps-with-no-configuration/failed-to-compile.png", + "type": "file", + "name": "failed-to-compile.png", + "base_name": "failed-to-compile", + "extension": ".png", + "size": 193554, + "date": "2018-03-12", + "sha1": "ea1666c1ce53bf49b8d4f06714939eb33f7b264c", + "md5": "808bb9f2c1cc7e8d85a2b1f291612461", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/create-apps-with-no-configuration/npm-run-build.png", + "type": "file", + "name": "npm-run-build.png", + "base_name": "npm-run-build", + "extension": ".png", + "size": 176002, + "date": "2018-03-12", + "sha1": "0982622c1624f19ceaa3cf53c8d16b53ac1dd2e8", + "md5": "89eea8b2e8c7e1df17a3f6546440e0de", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/relay-components", + "type": "directory", + "name": "relay-components", + "base_name": "relay-components", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 365472, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/relay-components/relay-architecture.png", + "type": "file", + "name": "relay-architecture.png", + "base_name": "relay-architecture", + "extension": ".png", + "size": 133970, + "date": "2018-03-12", + "sha1": "f82b73b73abc60e567cd47134b68552ab77986e4", + "md5": "c4842e3a82f1b66cb25bc13c8ed4b61e", + "mime_type": "image/png", + "file_type": "PNG image data, 2400 x 1200, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/relay-components/relay-containers-data-flow.png", + "type": "file", + "name": "relay-containers-data-flow.png", + "base_name": "relay-containers-data-flow", + "extension": ".png", + "size": 71044, + "date": "2018-03-12", + "sha1": "009b41ea82361f43040649ded5beef1b946c1561", + "md5": "7150363bcb243d665a4f82298bbf9536", + "mime_type": "image/png", + "file_type": "PNG image data, 1525 x 1055, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/relay-components/relay-containers.png", + "type": "file", + "name": "relay-containers.png", + "base_name": "relay-containers", + "extension": ".png", + "size": 39057, + "date": "2018-03-12", + "sha1": "ad50146ec4b01257f83b906d379abe0449abe888", + "md5": "9108ef5db348d6a75dbd87bdff0ecd56", + "mime_type": "image/png", + "file_type": "PNG image data, 795 x 1055, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/blog/relay-components/sample-newsfeed.png", + "type": "file", + "name": "sample-newsfeed.png", + "base_name": "sample-newsfeed", + "extension": ".png", + "size": 121401, + "date": "2018-03-12", + "sha1": "d35e762290a79378b8e78d8fac9825be9b238d8c", + "md5": "d87f5de1a3f56e979701f58c243674c6", + "mime_type": "image/png", + "file_type": "PNG image data, 720 x 900, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs", + "type": "directory", + "name": "docs", + "base_name": "docs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 0, + "size_count": 1056442, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/codewinds-004.png", + "type": "file", + "name": "codewinds-004.png", + "base_name": "codewinds-004", + "extension": ".png", + "size": 5765, + "date": "2018-03-12", + "sha1": "615c5d29fb6ea5cad534a489e73047364b3dd6c1", + "md5": "1ebf0ad32ac20468db4dae8360053fd8", + "mime_type": "image/png", + "file_type": "PNG image data, 264 x 27, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/devtools-dev.png", + "type": "file", + "name": "devtools-dev.png", + "base_name": "devtools-dev", + "extension": ".png", + "size": 82468, + "date": "2018-03-12", + "sha1": "6ddc88c50a5fe3375c44cd33121833d085a3b718", + "md5": "6b2955ccd5e203fd9cd6c94efd5a0d3a", + "mime_type": "image/png", + "file_type": "PNG image data, 600 x 200, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/devtools-prod.png", + "type": "file", + "name": "devtools-prod.png", + "base_name": "devtools-prod", + "extension": ".png", + "size": 45665, + "date": "2018-03-12", + "sha1": "2f4280902b762d20e067851b034071d64b6e86e8", + "md5": "99eb52d67e84d80d81c40fb17ee96bc5", + "mime_type": "image/png", + "file_type": "PNG image data, 600 x 127, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/granular-dom-updates.gif", + "type": "file", + "name": "granular-dom-updates.gif", + "base_name": "granular-dom-updates", + "extension": ".gif", + "size": 127160, + "date": "2018-03-12", + "sha1": "ea7051325e2b9304d3b3ccfbd5f3db9a3ccd8efd", + "md5": "c158617ed7cc0eac8f58330e49e48224", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 286 x 456", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 87, + "end_line": 90 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 216, + "end_line": 219 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 345, + "end_line": 348 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 474, + "end_line": 477 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 603, + "end_line": 606 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 732, + "end_line": 735 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 861, + "end_line": 864 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 990, + "end_line": 993 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1119, + "end_line": 1122 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1248, + "end_line": 1251 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1377, + "end_line": 1380 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1506, + "end_line": 1509 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1635, + "end_line": 1638 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1764, + "end_line": 1767 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1893, + "end_line": 1896 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2022, + "end_line": 2025 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2151, + "end_line": 2154 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2280, + "end_line": 2283 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2409, + "end_line": 2412 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2538, + "end_line": 2541 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/implementation-notes-tree.png", + "type": "file", + "name": "implementation-notes-tree.png", + "base_name": "implementation-notes-tree", + "extension": ".png", + "size": 59918, + "date": "2018-03-12", + "sha1": "ebd404794fa3ebb8bf5909e954f95c39970c5164", + "md5": "5466c31869861e40740e91ca3b05fd91", + "mime_type": "image/png", + "file_type": "PNG image data, 1000 x 620, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/javascript-jabber.png", + "type": "file", + "name": "javascript-jabber.png", + "base_name": "javascript-jabber", + "extension": ".png", + "size": 9611, + "date": "2018-03-12", + "sha1": "e9d692aff7dc11afbe6a0a132954eb191374ee0e", + "md5": "ca4e42536872cd25f87983a2d912f374", + "mime_type": "image/png", + "file_type": "PNG image data, 400 x 30, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/perf-dom.png", + "type": "file", + "name": "perf-dom.png", + "base_name": "perf-dom", + "extension": ".png", + "size": 14889, + "date": "2018-03-12", + "sha1": "ead1450ccb845929e344f962ebe6abcc99f25702", + "md5": "f6e815ae7604255a57497544bb1bfda1", + "mime_type": "image/png", + "file_type": "PNG image data, 687 x 32, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/perf-exclusive.png", + "type": "file", + "name": "perf-exclusive.png", + "base_name": "perf-exclusive", + "extension": ".png", + "size": 18508, + "date": "2018-03-12", + "sha1": "5f247c5d80b17894856596162eb736580103a736", + "md5": "b197e9a018fe0cbc05b6716abb81beb0", + "mime_type": "image/png", + "file_type": "PNG image data, 687 x 32, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/perf-inclusive.png", + "type": "file", + "name": "perf-inclusive.png", + "base_name": "perf-inclusive", + "extension": ".png", + "size": 23056, + "date": "2018-03-12", + "sha1": "57e8fad76155640dbb7428bb56cf80894714b967", + "md5": "35309636f175f85d4d872bf620af3423", + "mime_type": "image/png", + "file_type": "PNG image data, 687 x 62, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/perf-wasted.png", + "type": "file", + "name": "perf-wasted.png", + "base_name": "perf-wasted", + "extension": ".png", + "size": 28554, + "date": "2018-03-12", + "sha1": "971c87589991c254f54fa6954c639d7f6570ef52", + "md5": "e03f06dcab2489930cab3c422e49f350", + "mime_type": "image/png", + "file_type": "PNG image data, 687 x 62, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/react-devtools-state.gif", + "type": "file", + "name": "react-devtools-state.gif", + "base_name": "react-devtools-state", + "extension": ".gif", + "size": 580901, + "date": "2018-03-12", + "sha1": "05ade6c3d5ae581cb542d01ac6980aaf703763c5", + "md5": "ef94afc3447d75cdc245c77efb0d63be", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 623 x 322", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 2641, + "end_line": 2641, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/should-component-update.png", + "type": "file", + "name": "should-component-update.png", + "base_name": "should-component-update", + "extension": ".png", + "size": 45386, + "date": "2018-03-12", + "sha1": "c8ae2a87fa732166b7dead5584c6b900c5ad1838", + "md5": "cb7b5abf6b65e9dd428d2450b0f787d9", + "mime_type": "image/png", + "file_type": "PNG image data, 555 x 371, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/docs/thinking-in-react-tagtree.png", + "type": "file", + "name": "thinking-in-react-tagtree.png", + "base_name": "thinking-in-react-tagtree", + "extension": ".png", + "size": 14561, + "date": "2018-03-12", + "sha1": "7de05be61f14d22f5de95878cf1de8ce82f3e08d", + "md5": "ac19d27c424380e8bec63af22bf89661", + "mime_type": "image/png", + "file_type": "PNG image data, 650 x 315, 8-bit colormap, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/tutorial", + "type": "directory", + "name": "tutorial", + "base_name": "tutorial", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 52158, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/tutorial/devtools.png", + "type": "file", + "name": "devtools.png", + "base_name": "devtools", + "extension": ".png", + "size": 24215, + "date": "2018-03-12", + "sha1": "ef8bd764b3222e5836406cef10805116396fc9cf", + "md5": "311315e0a6cc5faa7e5af9bf38c31a9b", + "mime_type": "image/png", + "file_type": "PNG image data, 364 x 457, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/tutorial/tictac-empty.png", + "type": "file", + "name": "tictac-empty.png", + "base_name": "tictac-empty", + "extension": ".png", + "size": 11152, + "date": "2018-03-12", + "sha1": "ecd5a24aef36318fe28a895b504640176a9833da", + "md5": "1566a4f8490d6b4b1ed36cd2c11fe4b6", + "mime_type": "image/png", + "file_type": "PNG image data, 254 x 288, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/img/tutorial/tictac-numbers.png", + "type": "file", + "name": "tictac-numbers.png", + "base_name": "tictac-numbers", + "extension": ".png", + "size": 16791, + "date": "2018-03-12", + "sha1": "7b75c5f8ea9fe3f4108d1aa427bebf0b3fc8f592", + "md5": "685df774da6da48f451356f33f4be8b2", + "mime_type": "image/png", + "file_type": "PNG image data, 270 x 296, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/js", + "type": "directory", + "name": "js", + "base_name": "js", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 391, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/js/jsfiddle-integration-babel.js", + "type": "file", + "name": "jsfiddle-integration-babel.js", + "base_name": "jsfiddle-integration-babel", + "extension": ".js", + "size": 391, + "date": "2018-03-12", + "sha1": "c314c64895a1b7b8a2042e12b7be65e42232c654", + "md5": "779810f97dc0d25d9cd8548f7d4d92d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/tutorial", + "type": "directory", + "name": "tutorial", + "base_name": "tutorial", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 41834, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/tutorial/tutorial.md", + "type": "file", + "name": "tutorial.md", + "base_name": "tutorial", + "extension": ".md", + "size": 41834, + "date": "2018-03-12", + "sha1": "b8e59eef5a7ac2923adf218036bea130a677270f", + "md5": "aefce9334ee26ea08d10a18ca92c008c", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/warnings", + "type": "directory", + "name": "warnings", + "base_name": "warnings", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 11535, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/warnings/dont-call-proptypes.md", + "type": "file", + "name": "dont-call-proptypes.md", + "base_name": "dont-call-proptypes", + "extension": ".md", + "size": 4022, + "date": "2018-03-12", + "sha1": "3e2f3dfe932439f44b830fc66e77d90a7ad60139", + "md5": "24d1ff3008612f836b3e4a89f57c53b8", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/warnings/invalid-aria-prop.md", + "type": "file", + "name": "invalid-aria-prop.md", + "base_name": "invalid-aria-prop", + "extension": ".md", + "size": 773, + "date": "2018-03-12", + "sha1": "e485fc171903adb87aa853face49136691d528c1", + "md5": "de9fd25a76a0a1dcb77c9c4f86cf3058", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/warnings/legacy-factories.md", + "type": "file", + "name": "legacy-factories.md", + "base_name": "legacy-factories", + "extension": ".md", + "size": 1497, + "date": "2018-03-12", + "sha1": "c1caba8241bd30dcbc900618407c15f6b7a1f0cb", + "md5": "93becbca57edf6fb3d3e4a731d688565", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/warnings/refs-must-have-owner.md", + "type": "file", + "name": "refs-must-have-owner.md", + "base_name": "refs-must-have-owner", + "extension": ".md", + "size": 1471, + "date": "2018-03-12", + "sha1": "a28072b67c60ce07bad8c833e35a7383ff74ec7b", + "md5": "405aa72d92d12eca97a08fe97aeaa272", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/warnings/special-props.md", + "type": "file", + "name": "special-props.md", + "base_name": "special-props", + "extension": ".md", + "size": 646, + "date": "2018-03-12", + "sha1": "7b225ae3c9ec006804d320314b7db3624615e372", + "md5": "46fd414d675325c3b12cdac18a6029d3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/docs/warnings/unknown-prop.md", + "type": "file", + "name": "unknown-prop.md", + "base_name": "unknown-prop", + "extension": ".md", + "size": 3126, + "date": "2018-03-12", + "sha1": "caa99407248ed615f86417bda8e8bcfe7098b299", + "md5": "cd7fd3c618e1c578c2c7527dfe625ba7", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/eslint-rules", + "type": "directory", + "name": "eslint-rules", + "base_name": "eslint-rules", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 5990, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/eslint-rules/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 128, + "date": "2018-03-12", + "sha1": "eb228623e26f67bd3483579b77d767ceff26222c", + "md5": "f1aa29b8a75a3650e893c7857889380d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/eslint-rules/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 67, + "date": "2018-03-12", + "sha1": "c3572fb450931388e11c6a22612fb1c6cc8134f0", + "md5": "70e80929593bc43072b53657ae0a5bbd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "eslint-plugin-react-internal", + "version": "0.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/eslint-plugin-react-internal/-/eslint-plugin-react-internal-0.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/eslint-rules/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 369, + "date": "2018-03-12", + "sha1": "723dd012bc515ecda762d99db5e2f5d1778d9847", + "md5": "83e59ec0042c23de7645fc0c548e59a8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/eslint-rules/warning-and-invariant-args.js", + "type": "file", + "name": "warning-and-invariant-args.js", + "base_name": "warning-and-invariant-args", + "extension": ".js", + "size": 2722, + "date": "2018-03-12", + "sha1": "d5ed37f87d6bbc2988650db7866e91dd496403ff", + "md5": "eb4e93840523ff4a8a2ce1f20428ba09", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/eslint-rules/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2704, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/eslint-rules/__tests__/warning-and-invariant-args-test.js", + "type": "file", + "name": "warning-and-invariant-args-test.js", + "base_name": "warning-and-invariant-args-test", + "extension": ".js", + "size": 2704, + "date": "2018-03-12", + "sha1": "4d6064f927777ac2bc86c0a858c9fe7b1e785eff", + "md5": "68000e0fc107b1efbcaec78fb727f60e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples", + "type": "directory", + "name": "examples", + "base_name": "examples", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 8, + "size_count": 13868, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/basic-click-counter", + "type": "directory", + "name": "basic-click-counter", + "base_name": "basic-click-counter", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1760, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/basic-click-counter/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1760, + "date": "2018-03-12", + "sha1": "36eb42f2f76c18559d4f81c82b8a6977169790dc", + "md5": "46da7e95e7da3e65b68576e2720c88ab", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/basic-jsx", + "type": "directory", + "name": "basic-jsx", + "base_name": "basic-jsx", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1691, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/basic-jsx/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1691, + "date": "2018-03-12", + "sha1": "819f7d1033c7f21e6e60d03a4ca02db7b9f0b728", + "md5": "5c2a69984851995f3d7131efb2ad8734", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/basic-jsx-external", + "type": "directory", + "name": "basic-jsx-external", + "base_name": "basic-jsx-external", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1332, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/basic-jsx-external/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1332, + "date": "2018-03-12", + "sha1": "7aaba0c4d7e9025a8dc05d3895c77b086fb7adf5", + "md5": "ef67270b6300962a4d9ce335c0faeefb", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/basic-jsx-harmony", + "type": "directory", + "name": "basic-jsx-harmony", + "base_name": "basic-jsx-harmony", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1735, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/basic-jsx-harmony/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1735, + "date": "2018-03-12", + "sha1": "6a66308937f38af2581963dfd461804d074061cd", + "md5": "f85118927fd8399198f842f752552a34", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/jquery-bootstrap", + "type": "directory", + "name": "jquery-bootstrap", + "base_name": "jquery-bootstrap", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1280, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/jquery-bootstrap/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1280, + "date": "2018-03-12", + "sha1": "d4743d4fe67d12fef1b137c7a4f67d3b76d90f60", + "md5": "e6b4ac6a77472c298adfcc3ddf36dda0", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/quadratic", + "type": "directory", + "name": "quadratic", + "base_name": "quadratic", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1159, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/quadratic/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1159, + "date": "2018-03-12", + "sha1": "69269f2704345c5a1bf5fdd9945556c713abf27c", + "md5": "8832b54904e3205970842245fb6746e6", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/transitions", + "type": "directory", + "name": "transitions", + "base_name": "transitions", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2546, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/transitions/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 2546, + "date": "2018-03-12", + "sha1": "c631c1ee84a88956142ef9bf2e7ad5434f8517f1", + "md5": "f3e179dadca8830f0aa12d9367f93832", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/webcomponents", + "type": "directory", + "name": "webcomponents", + "base_name": "webcomponents", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2365, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/examples/webcomponents/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 2365, + "date": "2018-03-12", + "sha1": "8a37ca41d1b44e55d1eb5961b239c30b24cfeb5b", + "md5": "54b5114972aa4076ca56d1e84843bfc6", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures", + "type": "directory", + "name": "fixtures", + "base_name": "fixtures", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 33, + "dirs_count": 12, + "size_count": 104089, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/build-all.js", + "type": "file", + "name": "build-all.js", + "base_name": "build-all", + "extension": ".js", + "size": 871, + "date": "2018-03-12", + "sha1": "a407bf384b11ecaac098c07bd5044fe0de45490b", + "md5": "54a56ef8bb25fd21d760450f71c4a0bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/globals.html", + "type": "file", + "name": "globals.html", + "base_name": "globals", + "extension": ".html", + "size": 851, + "date": "2018-03-12", + "sha1": "cac97f60bc5de201ffa187c20e9ba09307897822", + "md5": "6b9b18cb39272e1816d3adfa5894c113", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 1345, + "date": "2018-03-12", + "sha1": "83f10a8dbf6cc7602dab8e5e54fdb91217b74040", + "md5": "8744aec8bc2d2f978db68374f8bbabb7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/requirejs.html", + "type": "file", + "name": "requirejs.html", + "base_name": "requirejs", + "extension": ".html", + "size": 1072, + "date": "2018-03-12", + "sha1": "cba937407d2c82ea1f63e70adc0a4c5b9f9fb8d2", + "md5": "b8093541fc1b230208837fe52ad48581", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/systemjs.html", + "type": "file", + "name": "systemjs.html", + "base_name": "systemjs", + "extension": ".html", + "size": 1195, + "date": "2018-03-12", + "sha1": "80ee5d68f0cc2e552a932f51376284d43c23f38a", + "md5": "34d7390965ff91f805c94ebb980e0a23", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/browserify", + "type": "directory", + "name": "browserify", + "base_name": "browserify", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 978, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/browserify/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 298, + "date": "2018-03-12", + "sha1": "f72bcd3d4ec3fe1072ac4ea3d3780e7fc7e5d2a0", + "md5": "26c0a0c025f9aa6558e24acb15c6037d", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/browserify/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 459, + "date": "2018-03-12", + "sha1": "aad4afa8532a044674c4868e33b893750ac20579", + "md5": "5f74cbc4c40f0201f546ccfacbbcf0ae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/browserify/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 221, + "date": "2018-03-12", + "sha1": "7a9bd5a2db547b9639d1dd2d010414007d287c07", + "md5": "a99b8e1c103af28dd7c1f0e9b10e3647", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/brunch", + "type": "directory", + "name": "brunch", + "base_name": "brunch", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 1807, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/brunch/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 124, + "date": "2018-03-12", + "sha1": "1ac169e2f7cab800fce094e77c01917b7f72b520", + "md5": "b026912b18e78193e3f56dac976fc79f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/brunch/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 342, + "date": "2018-03-12", + "sha1": "a7a9586b3a38665c41a171886cff87258105ed1e", + "md5": "205494b981baa96b63623c76249f4fbf", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/brunch/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 459, + "date": "2018-03-12", + "sha1": "aad4afa8532a044674c4868e33b893750ac20579", + "md5": "5f74cbc4c40f0201f546ccfacbbcf0ae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/brunch/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 423, + "date": "2018-03-12", + "sha1": "0b5f8d6371b605f3408f671d0e7ff0d157984bd8", + "md5": "351aca965a71be4808295076eb347a86", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/brunch/app", + "type": "directory", + "name": "app", + "base_name": "app", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 459, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/brunch/app/initialize.js", + "type": "file", + "name": "initialize.js", + "base_name": "initialize", + "extension": ".js", + "size": 459, + "date": "2018-03-12", + "sha1": "aad4afa8532a044674c4868e33b893750ac20579", + "md5": "5f74cbc4c40f0201f546ccfacbbcf0ae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/dom", + "type": "directory", + "name": "dom", + "base_name": "dom", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 4, + "size_count": 712, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/dom/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 3, + "size_count": 712, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/dom/src/components", + "type": "directory", + "name": "components", + "base_name": "components", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 2, + "size_count": 712, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/dom/src/components/fixtures", + "type": "directory", + "name": "fixtures", + "base_name": "fixtures", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 712, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/dom/src/components/fixtures/number-inputs", + "type": "directory", + "name": "number-inputs", + "base_name": "number-inputs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 712, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/dom/src/components/fixtures/number-inputs/NumberInputDecimal.js", + "type": "file", + "name": "NumberInputDecimal.js", + "base_name": "NumberInputDecimal", + "extension": ".js", + "size": 712, + "date": "2018-03-12", + "sha1": "9a0e1e191779812ece7ace0b8f96150bb5731d45", + "md5": "f1e5e485ab66553a2c3ed651b0e0151a", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/rjs", + "type": "directory", + "name": "rjs", + "base_name": "rjs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 1203, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/rjs/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 197, + "date": "2018-03-12", + "sha1": "6b679f5c69026a58f338707d75abc2e7015cf64b", + "md5": "9adf4bb5e9839a3610240b2c6cbb99a7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/rjs/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 371, + "date": "2018-03-12", + "sha1": "36f0d7a00607b017f92f71a5d52584ec3c91c7e0", + "md5": "b1e3a3398d00869510025948e8fd1d0b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/rjs/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 468, + "date": "2018-03-12", + "sha1": "6f986de60ae94383d2ef550006b26105df0b03aa", + "md5": "35294eec2ed5ef5f501eb5fad4a7a35a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/rjs/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 167, + "date": "2018-03-12", + "sha1": "b3b28c30b676e8aa802e0a9ba299816a07258981", + "md5": "fc5525ec38b60545a2cea0ee71612789", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/systemjs-builder", + "type": "directory", + "name": "systemjs-builder", + "base_name": "systemjs-builder", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 1340, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/systemjs-builder/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 289, + "date": "2018-03-12", + "sha1": "d657435b64ba6b793318b92766a12d3a47986a01", + "md5": "45fe95460623bf5ce137527d5bdd331e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/systemjs-builder/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 128, + "date": "2018-03-12", + "sha1": "fc1c24049be2e574755ca2695a826a1d34f1e43e", + "md5": "fc553957492d9e4810bb5ca76cfb653a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/systemjs-builder/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 298, + "date": "2018-03-12", + "sha1": "f72bcd3d4ec3fe1072ac4ea3d3780e7fc7e5d2a0", + "md5": "26c0a0c025f9aa6558e24acb15c6037d", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/systemjs-builder/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 440, + "date": "2018-03-12", + "sha1": "313fbfcf9c105090761fa6792c5aa6a4479d0efc", + "md5": "2e974ca8ae872258cb725b773ba4a3a9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/systemjs-builder/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 185, + "date": "2018-03-12", + "sha1": "ab960823b1372ce4dca5db41d51a6623600c036f", + "md5": "bfb66891f525d69ebcbcda19a49d5a11", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack", + "type": "directory", + "name": "webpack", + "base_name": "webpack", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 46307, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 138, + "date": "2018-03-12", + "sha1": "f5eb8ce2a90d1e0e4d25d11e36339f1a4d40b3ba", + "md5": "aacbe1e520a91aa5d309718cb98bca6e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 298, + "date": "2018-03-12", + "sha1": "f72bcd3d4ec3fe1072ac4ea3d3780e7fc7e5d2a0", + "md5": "26c0a0c025f9aa6558e24acb15c6037d", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 459, + "date": "2018-03-12", + "sha1": "aad4afa8532a044674c4868e33b893750ac20579", + "md5": "5f74cbc4c40f0201f546ccfacbbcf0ae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 179, + "date": "2018-03-12", + "sha1": "96cd9b5ad76f317e98365d7e42e68578a8e6d614", + "md5": "2b9691c4e4d75490306658375e70f3d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 45233, + "date": "2018-03-12", + "sha1": "fa268ceb1cdbd85cc3d0dec695edc05c4585d40b", + "md5": "10e6ce0d39d7e60f5e7c4f1f867bf68f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack-alias", + "type": "directory", + "name": "webpack-alias", + "base_name": "webpack-alias", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 46408, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack-alias/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 252, + "date": "2018-03-12", + "sha1": "d310b34c2c7fc00e217f90c891e692c6e9b39167", + "md5": "eb7385ddf0583f250c3c80d928880e9f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack-alias/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 298, + "date": "2018-03-12", + "sha1": "f72bcd3d4ec3fe1072ac4ea3d3780e7fc7e5d2a0", + "md5": "26c0a0c025f9aa6558e24acb15c6037d", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack-alias/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 446, + "date": "2018-03-12", + "sha1": "0194517b4bbdde20c167aba3f487eb8f807002d7", + "md5": "c5d83f418c836e46c34fb9949e7fc9b4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack-alias/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 179, + "date": "2018-03-12", + "sha1": "96cd9b5ad76f317e98365d7e42e68578a8e6d614", + "md5": "2b9691c4e4d75490306658375e70f3d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/fixtures/webpack-alias/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 45233, + "date": "2018-03-12", + "sha1": "7f35f4c332b9a307516ddc8e1a6aeb42e5a8a0d2", + "md5": "afbf60684abb6a0528234f51bdbcc5d9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/flow", + "type": "directory", + "name": "flow", + "base_name": "flow", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2089, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/flow/environment.js", + "type": "file", + "name": "environment.js", + "base_name": "environment", + "extension": ".js", + "size": 600, + "date": "2018-03-12", + "sha1": "50650e7b775cea4189fed044229b426b4b9f8cdc", + "md5": "a889bcd9ab20ea3f68a2f7d93506e02b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/flow/react-native-host-hooks.js", + "type": "file", + "name": "react-native-host-hooks.js", + "base_name": "react-native-host-hooks", + "extension": ".js", + "size": 1489, + "date": "2018-03-12", + "sha1": "0f8d540be902f0840bb65919f302cd0470610c6d", + "md5": "07fbc2efa7bbfb3496f42a90ca07a6c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt", + "type": "directory", + "name": "grunt", + "base_name": "grunt", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 3, + "size_count": 23183, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/config", + "type": "directory", + "name": "config", + "base_name": "config", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 9845, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/config/browserify.js", + "type": "file", + "name": "browserify.js", + "base_name": "browserify", + "extension": ".js", + "size": 9545, + "date": "2018-03-12", + "sha1": "3d274468b046109921cddaa48e2c3228d15dbfdc", + "md5": "63dc0cc396e7bacc8713169a29cfe1df", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/config/compare_size.js", + "type": "file", + "name": "compare_size.js", + "base_name": "compare_size", + "extension": ".js", + "size": 266, + "date": "2018-03-12", + "sha1": "1164a2c8857464f73e0ee6bce0e4c5abc1520fca", + "md5": "540a330d07a6038283423ff39e7aef4c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/config/npm.js", + "type": "file", + "name": "npm.js", + "base_name": "npm", + "extension": ".js", + "size": 34, + "date": "2018-03-12", + "sha1": "ff9246b975a548fcecfc328df0bcfbb903495210", + "md5": "3ccdf35e1e79c88eb8fa80fc1bcd9a1e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/data", + "type": "directory", + "name": "data", + "base_name": "data", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 390, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/data/header-template-extended.txt", + "type": "file", + "name": "header-template-extended.txt", + "base_name": "header-template-extended", + "extension": ".txt", + "size": 345, + "date": "2018-03-12", + "sha1": "1a4a497777a7a187a7c3023d466585cbbd9c80f3", + "md5": "9f5f4d38fb1628f2575b69457e6a49bd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 7, + "end_line": 9, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 9, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 4, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/data/header-template-short.txt", + "type": "file", + "name": "header-template-short.txt", + "base_name": "header-template-short", + "extension": ".txt", + "size": 45, + "date": "2018-03-12", + "sha1": "8a1a9142ff4f8146047c4b5e836126557df6fe6f", + "md5": "aaedb5f271be52a7762b14e8aaf7bbbc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/tasks", + "type": "directory", + "name": "tasks", + "base_name": "tasks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 12948, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/tasks/browserify.js", + "type": "file", + "name": "browserify.js", + "base_name": "browserify", + "extension": ".js", + "size": 1754, + "date": "2018-03-12", + "sha1": "e5c6b328c2711244a7a599b0cd4325a53ae2932b", + "md5": "ca78a3cd74be1a765bf63c8c741f1f2f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/tasks/jest.js", + "type": "file", + "name": "jest.js", + "base_name": "jest", + "extension": ".js", + "size": 974, + "date": "2018-03-12", + "sha1": "f42eb379c7d3fd7bf18959f886db9b4ff50c487c", + "md5": "e0cd58ad58c35491336b2038de7758c1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/tasks/npm-react-dom.js", + "type": "file", + "name": "npm-react-dom.js", + "base_name": "npm-react-dom", + "extension": ".js", + "size": 1584, + "date": "2018-03-12", + "sha1": "ef12bb27f075948d7aba923abc244096f9e767c5", + "md5": "c747309ac59e58ef246a81d5cc377e4b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/tasks/npm-react-test.js", + "type": "file", + "name": "npm-react-test.js", + "base_name": "npm-react-test", + "extension": ".js", + "size": 1368, + "date": "2018-03-12", + "sha1": "d6af07b386a51c81daa5ef421d4715d12ff2b203", + "md5": "8418bb4a530347b094602a2ead598fca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/tasks/npm-react.js", + "type": "file", + "name": "npm-react.js", + "base_name": "npm-react", + "extension": ".js", + "size": 1982, + "date": "2018-03-12", + "sha1": "51b451ae26e7612939db1302e8fde2134b817e2f", + "md5": "e5918fdba630ec00e736d0655eebd21a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/tasks/npm.js", + "type": "file", + "name": "npm.js", + "base_name": "npm", + "extension": ".js", + "size": 2586, + "date": "2018-03-12", + "sha1": "e0cada6042f4825881c7b9ad55f29222b6c7650f", + "md5": "ff571ea5539df8233c2c40a31478ed87", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/grunt/tasks/release.js", + "type": "file", + "name": "release.js", + "base_name": "release", + "extension": ".js", + "size": 2700, + "date": "2018-03-12", + "sha1": "9b0c93a21986ce063e7d829f26394fb12f336f5e", + "md5": "19648354ab69d76d1eeb31afc4374345", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/gulp", + "type": "directory", + "name": "gulp", + "base_name": "gulp", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 1, + "size_count": 3565, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/gulp/tasks", + "type": "directory", + "name": "tasks", + "base_name": "tasks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 3565, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/gulp/tasks/eslint.js", + "type": "file", + "name": "eslint.js", + "base_name": "eslint", + "extension": ".js", + "size": 1075, + "date": "2018-03-12", + "sha1": "d96a9f9f5d815a7a41eeac485e7934b0bae1d5f8", + "md5": "1ad65754b88fab733445df7dc3209e45", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/gulp/tasks/flow.js", + "type": "file", + "name": "flow.js", + "base_name": "flow", + "extension": ".js", + "size": 1090, + "date": "2018-03-12", + "sha1": "0d4985a94fb43099c569dd17df52e802ce965274", + "md5": "f8b48f14a0d8395a16ab6e7b1a89576c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/gulp/tasks/version-check.js", + "type": "file", + "name": "version-check.js", + "base_name": "version-check", + "extension": ".js", + "size": 1400, + "date": "2018-03-12", + "sha1": "b0149dd5cfb2a7f1810302c0bc0016607895df7d", + "md5": "5e6770e82925923c93b603e1827b2085", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/mocks", + "type": "directory", + "name": "mocks", + "base_name": "mocks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1217, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/mocks/ReactElementTestChild.js", + "type": "file", + "name": "ReactElementTestChild.js", + "base_name": "ReactElementTestChild", + "extension": ".js", + "size": 517, + "date": "2018-03-12", + "sha1": "4a4ce251de1daef2cb4da442be968c7bd67a7c9d", + "md5": "e02fb38bde6c57a839f8431fb478798c", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/mocks/ReactMockedComponentTestComponent.js", + "type": "file", + "name": "ReactMockedComponentTestComponent.js", + "base_name": "ReactMockedComponentTestComponent", + "extension": ".js", + "size": 700, + "date": "2018-03-12", + "sha1": "af9d0cc80022062b0905dc84b5581c691a32de8d", + "md5": "722b6b5813404e663cd3159677a2f96a", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages", + "type": "directory", + "name": "packages", + "base_name": "packages", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 4, + "size_count": 13453, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react", + "type": "directory", + "name": "react", + "base_name": "react", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 1659, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 754, + "date": "2018-03-12", + "sha1": "bcb44d4a4d9da74840734fbc1a539cd5548b6662", + "md5": "72cd392a51bd5c4660deb68e2ff0f25b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react", + "version": "15.6.1", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React is a JavaScript library for building user interfaces.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react/-/react-15.6.1.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "create-react-class", + "version": null, + "version_constraint": "^15.6.0" + }, + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.9" + }, + { + "name": "loose-envify", + "version": null, + "version_constraint": "^1.1.0" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.0" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.5.10" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react/react.js", + "type": "file", + "name": "react.js", + "base_name": "react", + "extension": ".js", + "size": 56, + "date": "2018-03-12", + "sha1": "1b28505c2056e0f7296e6d7d066d677365377958", + "md5": "f813dc4697f359327d301774a612ceb2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 849, + "date": "2018-03-12", + "sha1": "715a8c0689af1acb7f229ee744c19a5b8eff8fa8", + "md5": "391f35a5c72c78ac47876b2b79226962", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom", + "type": "directory", + "name": "react-dom", + "base_name": "react-dom", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 1900, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom/fiber.js", + "type": "file", + "name": "fiber.js", + "base_name": "fiber", + "extension": ".js", + "size": 64, + "date": "2018-03-12", + "sha1": "3e0973b81a1b8a73d1009fa345ec454ba2580e40", + "md5": "aa9bb21dbda6f1320c7f6c54f776c723", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 59, + "date": "2018-03-12", + "sha1": "90f444ac957cfbc3f261ee70385b7900643520a9", + "md5": "354e5b1a2c68ee25d3a940f086d5bf8c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 750, + "date": "2018-03-12", + "sha1": "829e3b1c2a095d1660cd605dfbd42e1b0347442b", + "md5": "38138a6281c1a7b83561beae6ef7e43e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-dom", + "version": "15.6.1", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React package for working with the DOM.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-dom/-/react-dom-15.6.1.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.9" + }, + { + "name": "loose-envify", + "version": null, + "version_constraint": "^1.1.0" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.0" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.5.10" + } + ], + "optional": [ + { + "name": "react", + "version": null, + "version_constraint": "^15.6.1" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 897, + "date": "2018-03-12", + "sha1": "d208317e1c17b95d5cbb150609e6d57bea066ab3", + "md5": "261e2548fd03ea0603992b8261ced628", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom/server.js", + "type": "file", + "name": "server.js", + "base_name": "server", + "extension": ".js", + "size": 65, + "date": "2018-03-12", + "sha1": "b1420ad22c3c6bf3f4b5daa2eef46fc517e9b961", + "md5": "53aa158bffd921846d294617901547ee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom/test-utils.js", + "type": "file", + "name": "test-utils.js", + "base_name": "test-utils", + "extension": ".js", + "size": 65, + "date": "2018-03-12", + "sha1": "cfc074b8df92582873542e6831a4952c45b1c2bd", + "md5": "beaafae407b4d2d8b9d98ac1d86fc2b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom-factories", + "type": "directory", + "name": "react-dom-factories", + "base_name": "react-dom-factories", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 7523, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom-factories/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 6470, + "date": "2018-03-12", + "sha1": "4ac5136d1d654fdfd406c8980f9dfdb60ae34205", + "md5": "aca2a92afb05745ebef0bf8dbfa03d40", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 7, + "end_line": 9, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 9, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 4, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom-factories/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 507, + "date": "2018-03-12", + "sha1": "78b74e896305fa72ae4e0b94ddaf125df28f2d6c", + "md5": "982e93e75e2623ccf4c0eae43c0ac0d3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-dom-factories", + "version": "15.6.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React package for DOM factory methods.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-15.6.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "optional": [ + { + "name": "react", + "version": null, + "version_constraint": "^15.6.0-rc.1" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-dom-factories/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 546, + "date": "2018-03-12", + "sha1": "f21c5facfa569dd21bc17230d4bfbb60d361c9d4", + "md5": "914e4300f4052b1a16a8a0e712fb0b8a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-test-renderer", + "type": "directory", + "name": "react-test-renderer", + "base_name": "react-test-renderer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 2371, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-test-renderer/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 68, + "date": "2018-03-12", + "sha1": "742aa0bd8382534dc152460683b411c71e92fd03", + "md5": "b70adb55cf3ee09aca1fc45d427d6a26", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-test-renderer/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 635, + "date": "2018-03-12", + "sha1": "196210128e3afc858d84b2a696c6673c267788fb", + "md5": "4cad8535fc7c8c8fa2131490cec694db", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 12, + "end_line": 12, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-test-renderer", + "version": "15.6.1", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React package for snapshot testing.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-native", + "react-testing" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-15.6.1.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.9" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.0" + } + ], + "optional": [ + { + "name": "react", + "version": null, + "version_constraint": "^15.6.1" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-test-renderer/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 1589, + "date": "2018-03-12", + "sha1": "99281486c36160ea91b74b8a234cf45e3fbea882", + "md5": "048b8edc393b42664fae2197751ed0c4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/packages/react-test-renderer/shallow.js", + "type": "file", + "name": "shallow.js", + "base_name": "shallow", + "extension": ".js", + "size": 79, + "date": "2018-03-12", + "sha1": "2bc580161c91d079a96fbd7a019925f9070d6c43", + "md5": "54d4e5e5135b57628cfd173b9a6a4192", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts", + "type": "directory", + "name": "scripts", + "base_name": "scripts", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 50, + "dirs_count": 11, + "size_count": 683377, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/authors", + "type": "file", + "name": "authors", + "base_name": "authors", + "extension": "", + "size": 284, + "date": "2018-03-12", + "sha1": "f9a83b0a40c49db0caa5774787a2deb5346cea53", + "md5": "888e87932008270c1c4b0879715e05d3", + "mime_type": "text/plain", + "file_type": "a /usr/bin/env sh script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/babel", + "type": "directory", + "name": "babel", + "base_name": "babel", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1387, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/babel/transform-object-assign-require.js", + "type": "file", + "name": "transform-object-assign-require.js", + "base_name": "transform-object-assign-require", + "extension": ".js", + "size": 1387, + "date": "2018-03-12", + "sha1": "9a8dfa3b60921d7219955e94831b4449ba5f4e95", + "md5": "9c662befe65c472684e47286d85d74a1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench", + "type": "directory", + "name": "bench", + "base_name": "bench", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 0, + "size_count": 571510, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/analyze.py", + "type": "file", + "name": "analyze.py", + "base_name": "analyze", + "extension": ".py", + "size": 3365, + "date": "2018-03-12", + "sha1": "ea75bf5d3089d2876d2590466a30e488bc936034", + "md5": "1bfa3015a569eb135d689370c3f5f0a3", + "mime_type": "text/x-python", + "file_type": "Python script, ASCII text executable", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 1, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/bench-createclass.js", + "type": "file", + "name": "bench-createclass.js", + "base_name": "bench-createclass", + "extension": ".js", + "size": 14279, + "date": "2018-03-12", + "sha1": "29d66c3ce7ae8301219eeb18468d6fa22530ab2b", + "md5": "4404ba3c025976068f6db61420f54ca2", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/bench-pe-es5.js", + "type": "file", + "name": "bench-pe-es5.js", + "base_name": "bench-pe-es5", + "extension": ".js", + "size": 166204, + "date": "2018-03-12", + "sha1": "91672dfda27db0d6ca7770b2e5fea19eceffa57c", + "md5": "e2b995d18edd2c3a77b33e2734418b47", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/bench-pe-sfc-es5.js", + "type": "file", + "name": "bench-pe-sfc-es5.js", + "base_name": "bench-pe-sfc-es5", + "extension": ".js", + "size": 138353, + "date": "2018-03-12", + "sha1": "ff775cf69e380c88f37fba9d1d57ab9ad6571f4e", + "md5": "3a26543afc96f6ab7b289b15dabfa9dd", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/bench-pe-sfc.js", + "type": "file", + "name": "bench-pe-sfc.js", + "base_name": "bench-pe-sfc", + "extension": ".js", + "size": 112217, + "date": "2018-03-12", + "sha1": "906603a852e6015b722519dc577492a7b19d5894", + "md5": "6a35cf22ba63b79cced21c4c398c69da", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/bench-pe.js", + "type": "file", + "name": "bench-pe.js", + "base_name": "bench-pe", + "extension": ".js", + "size": 123013, + "date": "2018-03-12", + "sha1": "60ea128de83dfe9b95c455321b944d6ad97d1f06", + "md5": "1838c17ee8ba654dfe473a63623ff89f", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/extract-component.js", + "type": "file", + "name": "extract-component.js", + "base_name": "extract-component", + "extension": ".js", + "size": 6646, + "date": "2018-03-12", + "sha1": "74e4a3bab50132d599b4d55b02917da2ef1657cc", + "md5": "049f4e8d64de8c601850a3d149233cf5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/measure.py", + "type": "file", + "name": "measure.py", + "base_name": "measure", + "extension": ".py", + "size": 5759, + "date": "2018-03-12", + "sha1": "794c9a2d746e40c45a58c7b216a0f2c7e96cea55", + "md5": "1969b1fea43f2ce83742170e98878241", + "mime_type": "text/x-python", + "file_type": "Python script, ASCII text executable", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 1, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/bench/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 1674, + "date": "2018-03-12", + "sha1": "e29b72c69cf03f83c7146c93aa851f6f6e416be3", + "md5": "e874f73b8fd752ae396c9748cc9b26f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci", + "type": "directory", + "name": "circleci", + "base_name": "circleci", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 4299, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci/build_gh_pages.sh", + "type": "file", + "name": "build_gh_pages.sh", + "base_name": "build_gh_pages", + "extension": ".sh", + "size": 669, + "date": "2018-03-12", + "sha1": "8573730e487e0c1388f823d821246c01c36e2a26", + "md5": "73796b89d7df8ab18142639ad7cfd5e9", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci/set_up_github_keys.sh", + "type": "file", + "name": "set_up_github_keys.sh", + "base_name": "set_up_github_keys", + "extension": ".sh", + "size": 272, + "date": "2018-03-12", + "sha1": "2182a730bc11eed470dda8b3a4704d1e6f8275ec", + "md5": "2d47e5b456c008977bf9b466a1c96902", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci/test_coverage.sh", + "type": "file", + "name": "test_coverage.sh", + "base_name": "test_coverage", + "extension": ".sh", + "size": 156, + "date": "2018-03-12", + "sha1": "97c7436a0d17721d64bdabf4206d64f4930d1872", + "md5": "c158b9caaf58ceae597626bcc7117f1e", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci/test_entry_point.sh", + "type": "file", + "name": "test_entry_point.sh", + "base_name": "test_entry_point", + "extension": ".sh", + "size": 1677, + "date": "2018-03-12", + "sha1": "26e398f440ddeb4d2a55d3babee57cf21efcd9e1", + "md5": "25f8bf5ad4337f2a0a84e7d33b524e6f", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci/test_extract_errors.sh", + "type": "file", + "name": "test_extract_errors.sh", + "base_name": "test_extract_errors", + "extension": ".sh", + "size": 114, + "date": "2018-03-12", + "sha1": "30a76956a1efd8f69041c1f6d31e33d116dc1b9e", + "md5": "32b6c8937433fee17e9c0143e92f5951", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci/test_html_generation.sh", + "type": "file", + "name": "test_html_generation.sh", + "base_name": "test_html_generation", + "extension": ".sh", + "size": 292, + "date": "2018-03-12", + "sha1": "17b457715d00b1c3ed32f8a2a274ce9c4272f960", + "md5": "6d2fc48a305422216fb9672901b9da22", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci/track_stats.sh", + "type": "file", + "name": "track_stats.sh", + "base_name": "track_stats", + "extension": ".sh", + "size": 310, + "date": "2018-03-12", + "sha1": "7301b8d7f5f0021002d38bb3c54c4b44c92d36b8", + "md5": "ded99d43221a7c208310e205a46bfd2c", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/circleci/upload_build.sh", + "type": "file", + "name": "upload_build.sh", + "base_name": "upload_build", + "extension": ".sh", + "size": 809, + "date": "2018-03-12", + "sha1": "e7acb4c453079784ad698729ddef955d47cc2bb0", + "md5": "7941692ce1362005198709b1e76559a9", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes", + "type": "directory", + "name": "error-codes", + "base_name": "error-codes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 1, + "size_count": 37226, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/codes.json", + "type": "file", + "name": "codes.json", + "base_name": "codes", + "extension": ".json", + "size": 14872, + "date": "2018-03-12", + "sha1": "b637fa8e5c61160bdb36de279c69356b440d22f5", + "md5": "7b969f3a650b6dd9fea2d7bcb997161b", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/dev-expression-with-codes.js", + "type": "file", + "name": "dev-expression-with-codes.js", + "base_name": "dev-expression-with-codes", + "extension": ".js", + "size": 6828, + "date": "2018-03-12", + "sha1": "230af42b8384960424980056106ad0e7b5c874be", + "md5": "0e2c60d1550aacea3ccf53b3baf21157", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/evalToString.js", + "type": "file", + "name": "evalToString.js", + "base_name": "evalToString", + "extension": ".js", + "size": 784, + "date": "2018-03-12", + "sha1": "8cfdd9bf6b4a17f36800d586f42c9fc35cb0e7fb", + "md5": "fad5e541d24b1a6cf0907999697187ae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/gulp-extract-errors.js", + "type": "file", + "name": "gulp-extract-errors.js", + "base_name": "gulp-extract-errors", + "extension": ".js", + "size": 3146, + "date": "2018-03-12", + "sha1": "524b8d55e2e390f1ec1c43a67bc5083cc7a4dc5f", + "md5": "c590351c34de51704b6eba0b748fde0e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/invertObject.js", + "type": "file", + "name": "invertObject.js", + "base_name": "invertObject", + "extension": ".js", + "size": 846, + "date": "2018-03-12", + "sha1": "fe0a822424cc3c981d039a4bb675b83d2d989ef5", + "md5": "add3f44bdbc238aa5a24c73a500bfaa9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 3508, + "date": "2018-03-12", + "sha1": "ac7afbcd070c8bcafc53d37a9c7a562d4033eb0d", + "md5": "cd2b52991c1903f5d97ed4da4e4ab51c", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/Types.js", + "type": "file", + "name": "Types.js", + "base_name": "Types", + "extension": ".js", + "size": 394, + "date": "2018-03-12", + "sha1": "35adcb16b4efd24f3c3ae9bd005406c04c44cd10", + "md5": "58e871bb1de000f664d86bf4f884494e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 6848, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/__tests__/dev-expression-with-codes-test.js", + "type": "file", + "name": "dev-expression-with-codes-test.js", + "base_name": "dev-expression-with-codes-test", + "extension": ".js", + "size": 4309, + "date": "2018-03-12", + "sha1": "f8872ffce07f174475627e1c974ca3ab02e9379e", + "md5": "046d44a28b11ecbbbdf0ebe02f04f7a4", + "mime_type": "text/x-pascal", + "file_type": "Pascal source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/__tests__/evalToString-test.js", + "type": "file", + "name": "evalToString-test.js", + "base_name": "evalToString-test", + "extension": ".js", + "size": 1294, + "date": "2018-03-12", + "sha1": "88e59da5c1f972e565e1a76e491e5f3c963aba69", + "md5": "019f1afb560ba53b19478026f125ac9f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/error-codes/__tests__/invertObject-test.js", + "type": "file", + "name": "invertObject-test.js", + "base_name": "invertObject-test", + "extension": ".js", + "size": 1245, + "date": "2018-03-12", + "sha1": "2d77e763a1d347fe62e5e2f8555cad27bf4156ed", + "md5": "f696eb5097d2245440eda6ddf482cd13", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/facts-tracker", + "type": "directory", + "name": "facts-tracker", + "base_name": "facts-tracker", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 5150, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/facts-tracker/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 5150, + "date": "2018-03-12", + "sha1": "108d800498fce00a3641c8a6974845102f9e5adb", + "md5": "8f2c67086a376ac803295f9ebe120a6b", + "mime_type": "application/javascript", + "file_type": "Node.js script, ASCII text executable", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 7, + "end_line": 9, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 7, + "end_line": 9, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 4, + "end_line": 5 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/git", + "type": "directory", + "name": "git", + "base_name": "git", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 241, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/git/pre-commit", + "type": "file", + "name": "pre-commit", + "base_name": "pre-commit", + "extension": "", + "size": 241, + "date": "2018-03-12", + "sha1": "ca64408f950e5c6f2d0bfc18faaf190cb9c2fa52", + "md5": "26efb67d6116db883b1e653853149fdf", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/jest", + "type": "directory", + "name": "jest", + "base_name": "jest", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 9362, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/jest/environment.js", + "type": "file", + "name": "environment.js", + "base_name": "environment", + "extension": ".js", + "size": 292, + "date": "2018-03-12", + "sha1": "1fa9007efd87111039f2e76c6242e6d059bf35b4", + "md5": "97b76387ada9c60fd3f185e34566dc34", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/jest/jest.d.ts", + "type": "file", + "name": "jest.d.ts", + "base_name": "jest.d", + "extension": ".ts", + "size": 2016, + "date": "2018-03-12", + "sha1": "24eb8360a33207a1bb6d7fd5f11fd356d7aaf688", + "md5": "69124dc24b2024b110ebdf9f8e67bcd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/jest/preprocessor.js", + "type": "file", + "name": "preprocessor.js", + "base_name": "preprocessor", + "extension": ".js", + "size": 2256, + "date": "2018-03-12", + "sha1": "bb046aa936196bdada9e7f227f20ffdcd516bab4", + "md5": "bc2c6bdcf5643062a2264742bc3a2e7b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/jest/setupSpecEquivalenceReporter.js", + "type": "file", + "name": "setupSpecEquivalenceReporter.js", + "base_name": "setupSpecEquivalenceReporter", + "extension": ".js", + "size": 728, + "date": "2018-03-12", + "sha1": "cec46f0c48c01959012ef978facf263391f1d9d0", + "md5": "9859bacb76ce4abb30be649430244ee0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/jest/test-framework-setup.js", + "type": "file", + "name": "test-framework-setup.js", + "base_name": "test-framework-setup", + "extension": ".js", + "size": 1365, + "date": "2018-03-12", + "sha1": "e75323a88974583229a3d43e1d9478f16d0b28d2", + "md5": "c1db286cf4c059b8d7531ace89f5e7a7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/jest/ts-preprocessor.js", + "type": "file", + "name": "ts-preprocessor.js", + "base_name": "ts-preprocessor", + "extension": ".js", + "size": 2705, + "date": "2018-03-12", + "sha1": "8bfcb4c38b6a0a0ba0a982ffcd176045ab984ae3", + "md5": "d597b0a51684c1604e99152df64d42b3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters", + "type": "directory", + "name": "perf-counters", + "base_name": "perf-counters", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 1, + "size_count": 51436, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/binding.gyp", + "type": "file", + "name": "binding.gyp", + "base_name": "binding", + "extension": ".gyp", + "size": 259, + "date": "2018-03-12", + "sha1": "b9a3926ff061ac28a0bd6195b2c98002af4cab88", + "md5": "35cb1c51afa0a42f2418dc1ae99bfebf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 69, + "date": "2018-03-12", + "sha1": "99423201af23bcdabb79ad0c709dae646d1b8e40", + "md5": "7be639ff695f945779cd9d46f4f9ed7b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/Makefile", + "type": "file", + "name": "Makefile", + "base_name": "Makefile", + "extension": "", + "size": 189, + "date": "2018-03-12", + "sha1": "49a91b35bbea5c864d2188ee2eec312ecc6d388b", + "md5": "cb9e30ae252bc125c33c125d7a7f51af", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 224, + "date": "2018-03-12", + "sha1": "93ae6eaa9031b47320f10ba7289e48cb150749cd", + "md5": "77f4d16d1773421372cfc40520a0db8e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 6, + "end_line": 6, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "perf-counters", + "version": "0.1.2", + "primary_language": "JavaScript", + "packaging": null, + "summary": "Lightweight bindings to Linux perf event counters.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/perf-counters/-/perf-counters-0.1.2.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "bindings", + "version": null, + "version_constraint": "^1.2.1" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 380, + "date": "2018-03-12", + "sha1": "a492c49b004e7936cab38b6c09a07a76c257c5a9", + "md5": "d763d1f5a06e57d1a17f2f1f9cc95e17", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 50315, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/src/hardware-counter.cpp", + "type": "file", + "name": "hardware-counter.cpp", + "base_name": "hardware-counter", + "extension": ".cpp", + "size": 12841, + "date": "2018-03-12", + "sha1": "10e58227e31fa9acd58932fdb6c9fd3448c554f7", + "md5": "75b3de099b5eda243bc3dc626532db01", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/src/hardware-counter.h", + "type": "file", + "name": "hardware-counter.h", + "base_name": "hardware-counter", + "extension": ".h", + "size": 3374, + "date": "2018-03-12", + "sha1": "4bed41604942db78a2c2660000534bc30e498a09", + "md5": "525f23a7e50f5eb3b2656519608aa506", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/src/jsc-perf.cpp", + "type": "file", + "name": "jsc-perf.cpp", + "base_name": "jsc-perf", + "extension": ".cpp", + "size": 4774, + "date": "2018-03-12", + "sha1": "9b0eb75b5fa988b7846b6cda15cb2a6fce06b708", + "md5": "5017f9dd378ee0039bc4194a697bbaa0", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/src/perf-counters.cpp", + "type": "file", + "name": "perf-counters.cpp", + "base_name": "perf-counters", + "extension": ".cpp", + "size": 1638, + "date": "2018-03-12", + "sha1": "8c31c9b9151a12981a53b6371ea44b792649ebe0", + "md5": "d643d24f4247341fcb6c4122604d229c", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/src/portability.h", + "type": "file", + "name": "portability.h", + "base_name": "portability", + "extension": ".h", + "size": 5341, + "date": "2018-03-12", + "sha1": "97b6f0f193e3bfe6f161f2af7235d321f94d99db", + "md5": "cefa50083b9c11c1b07578e4f2a79d84", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/src/thread-local.cpp", + "type": "file", + "name": "thread-local.cpp", + "base_name": "thread-local", + "extension": ".cpp", + "size": 2488, + "date": "2018-03-12", + "sha1": "c886f1ff64c3dd1d50ca4bd25d3c85718163eafa", + "md5": "3e52f42a1422904ba393657d5d8c9521", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/perf-counters/src/thread-local.h", + "type": "file", + "name": "thread-local.h", + "base_name": "thread-local", + "extension": ".h", + "size": 19859, + "date": "2018-03-12", + "sha1": "a13979938896d2383cc68535041dbc669e4feaf2", + "md5": "e7bf92b8b3b1514e1c9f327ffa337b37", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/prettier", + "type": "directory", + "name": "prettier", + "base_name": "prettier", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2482, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/scripts/prettier/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 2482, + "date": "2018-03-12", + "sha1": "01a24258c885b22a9d2861d0b49b833d0da688f9", + "md5": "0760a7640382e198e1534fcf450d428c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 4, + "end_line": 6, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 357, + "dirs_count": 83, + "size_count": 2250186, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 80, + "date": "2018-03-12", + "sha1": "e45204836824169fb1a71325f26efc8aedb71cd6", + "md5": "ddbaca949b29d7dffbc99f96393b6512", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 20.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 4, + "matched_rule": { + "identifier": "bsd-new_195.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-haste", + "version": "15.0.1", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-haste/-/react-haste-15.0.1.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "BSD-3-Clause", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/ReactVersion.js", + "type": "file", + "name": "ReactVersion.js", + "base_name": "ReactVersion", + "extension": ".js", + "size": 383, + "date": "2018-03-12", + "sha1": "0f15a21e2953babc60beddd742b631aee395c67f", + "md5": "ef4d81866056e924eb76b6705d9dcca6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons", + "type": "directory", + "name": "addons", + "base_name": "addons", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 20, + "dirs_count": 4, + "size_count": 62534, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/ReactAddonsDOMDependencies.js", + "type": "file", + "name": "ReactAddonsDOMDependencies.js", + "base_name": "ReactAddonsDOMDependencies", + "extension": ".js", + "size": 814, + "date": "2018-03-12", + "sha1": "2fb632a8f7f65e1316cb69ce3917eae0cc298ee2", + "md5": "9c1903df43e6a2a3dc694a6fac4777b9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/ReactComponentWithPureRenderMixin.js", + "type": "file", + "name": "ReactComponentWithPureRenderMixin.js", + "base_name": "ReactComponentWithPureRenderMixin", + "extension": ".js", + "size": 1580, + "date": "2018-03-12", + "sha1": "f4ef701f94472c9ae0dd9c4c79362cdaa09099e0", + "md5": "93ff578ff1fa953b1ef5e3d880a8e4b9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/ReactDOMFactories.js", + "type": "file", + "name": "ReactDOMFactories.js", + "base_name": "ReactDOMFactories", + "extension": ".js", + "size": 5484, + "date": "2018-03-12", + "sha1": "46b60c6e5e6474eb0dc3d3d2d364a3831fa7cd83", + "md5": "3db16f2677fa11481d0254526a163ca9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/ReactFragment.js", + "type": "file", + "name": "ReactFragment.js", + "base_name": "ReactFragment", + "extension": ".js", + "size": 2513, + "date": "2018-03-12", + "sha1": "ed88dff6f86c08b8ad0fe8578ae7966992da3c55", + "md5": "6669e45efaf1ddc3aaf1d988902f3ad5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/ReactWithAddons.js", + "type": "file", + "name": "ReactWithAddons.js", + "base_name": "ReactWithAddons", + "extension": ".js", + "size": 1650, + "date": "2018-03-12", + "sha1": "df38c5b4a28ea2f88bc8a1e701d762b6519cb2df", + "md5": "c99b900ca8527f7e46addd523122caf9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/shallowCompare.js", + "type": "file", + "name": "shallowCompare.js", + "base_name": "shallowCompare", + "extension": ".js", + "size": 776, + "date": "2018-03-12", + "sha1": "74cb39e1d61ea7a1bd630c8bf5bdd05e9f28724c", + "md5": "8414e398b5c8a1a76e8e131a2bbf787f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/update.js", + "type": "file", + "name": "update.js", + "base_name": "update", + "extension": ".js", + "size": 4361, + "date": "2018-03-12", + "sha1": "80d8742800a7f213663f0aef5399b53868420bb0", + "md5": "8b520f2bbdf710497c34ab1105920609", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 15652, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/__tests__/ReactDOMFactories-test.js", + "type": "file", + "name": "ReactDOMFactories-test.js", + "base_name": "ReactDOMFactories-test", + "extension": ".js", + "size": 1151, + "date": "2018-03-12", + "sha1": "2d3c19a875342ca3560d0bb1bfc0124bcdec6a42", + "md5": "3b469cefa5389f159335760c60da2178", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/__tests__/ReactFragment-test.js", + "type": "file", + "name": "ReactFragment-test.js", + "base_name": "ReactFragment-test", + "extension": ".js", + "size": 3761, + "date": "2018-03-12", + "sha1": "7d0046bf0cb263a5f4f67ebd77fd5c1553bcd5f0", + "md5": "2a3c80ff3758918e67501e66f7b22711", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/__tests__/renderSubtreeIntoContainer-test.js", + "type": "file", + "name": "renderSubtreeIntoContainer-test.js", + "base_name": "renderSubtreeIntoContainer-test", + "extension": ".js", + "size": 5144, + "date": "2018-03-12", + "sha1": "28b268849ed8d0dd48ea640bc0ff92b51ec218bc", + "md5": "8d3bef373455decec2c55bde5bed7875", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/__tests__/update-test.js", + "type": "file", + "name": "update-test.js", + "base_name": "update-test", + "extension": ".js", + "size": 5596, + "date": "2018-03-12", + "sha1": "3295783e83b374d42fa5641508de15815393f9e8", + "md5": "c79eb8762c65016632f43589ec52360b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/link", + "type": "directory", + "name": "link", + "base_name": "link", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 6329, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/link/LinkedStateMixin.js", + "type": "file", + "name": "LinkedStateMixin.js", + "base_name": "LinkedStateMixin", + "extension": ".js", + "size": 1119, + "date": "2018-03-12", + "sha1": "9d71c837286a19819f0a00232637122c1c37a183", + "md5": "9eb8a6e404111a5f8103416606ad24a5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/link/ReactLink.js", + "type": "file", + "name": "ReactLink.js", + "base_name": "ReactLink", + "extension": ".js", + "size": 1536, + "date": "2018-03-12", + "sha1": "fbf4a5c35d393528e587650dac7e595f3fc346c0", + "md5": "b055eb78a58f3b5e8257fb2473d9591b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/link/ReactStateSetters.js", + "type": "file", + "name": "ReactStateSetters.js", + "base_name": "ReactStateSetters", + "extension": ".js", + "size": 3674, + "date": "2018-03-12", + "sha1": "a8d77ab3bb0369d316fde996e3b6bafeb7bbb2c3", + "md5": "c9e5861cefc1085660e486f9da3d5798", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/transitions", + "type": "directory", + "name": "transitions", + "base_name": "transitions", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 23375, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/transitions/ReactCSSTransitionGroup.js", + "type": "file", + "name": "ReactCSSTransitionGroup.js", + "base_name": "ReactCSSTransitionGroup", + "extension": ".js", + "size": 3328, + "date": "2018-03-12", + "sha1": "03018e5993e1c93407dbb792b18315921ec47153", + "md5": "c4b2606a1ee650084ae2a5fa65d295f5", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/transitions/ReactCSSTransitionGroupChild.js", + "type": "file", + "name": "ReactCSSTransitionGroupChild.js", + "base_name": "ReactCSSTransitionGroupChild", + "extension": ".js", + "size": 4761, + "date": "2018-03-12", + "sha1": "785f527cb23a21fb89510fe266821321feb74338", + "md5": "52dce4e157747ad2745ebcea6bbe9028", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/transitions/ReactTransitionChildMapping.js", + "type": "file", + "name": "ReactTransitionChildMapping.js", + "base_name": "ReactTransitionChildMapping", + "extension": ".js", + "size": 3313, + "date": "2018-03-12", + "sha1": "ec545c393a3cc63b45d64bdc24d685acbd9b368c", + "md5": "db4cb491cb31073008a0b0ed040d916d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/transitions/ReactTransitionEvents.js", + "type": "file", + "name": "ReactTransitionEvents.js", + "base_name": "ReactTransitionEvents", + "extension": ".js", + "size": 1988, + "date": "2018-03-12", + "sha1": "4e388c2dbb85540efe0ec728011d50faa8977668", + "md5": "0e5ef6215e87389aea8fafcd85fcc2fa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/transitions/ReactTransitionGroup.js", + "type": "file", + "name": "ReactTransitionGroup.js", + "base_name": "ReactTransitionGroup", + "extension": ".js", + "size": 6962, + "date": "2018-03-12", + "sha1": "3e5f148e2809297188df6a62b3513b0f80ee4812", + "md5": "957636252500c5880e0ba79adaa78bcb", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/transitions/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3023, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/addons/transitions/__tests__/ReactTransitionChildMapping-test.js", + "type": "file", + "name": "ReactTransitionChildMapping-test.js", + "base_name": "ReactTransitionChildMapping-test", + "extension": ".js", + "size": 3023, + "date": "2018-03-12", + "sha1": "a319535aeac60ff20d20fd264f8274750100de47", + "md5": "675adf3dbb0cb162a67dfa57989987cc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic", + "type": "directory", + "name": "isomorphic", + "base_name": "isomorphic", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 36, + "dirs_count": 17, + "size_count": 265489, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/getNextDebugID.js", + "type": "file", + "name": "getNextDebugID.js", + "base_name": "getNextDebugID", + "extension": ".js", + "size": 485, + "date": "2018-03-12", + "sha1": "22a843f3c4fc3cb97da8b4bfcbe348d057ddbfaf", + "md5": "9033df629ccc3e52226f03396c0f5d35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/React.js", + "type": "file", + "name": "React.js", + "base_name": "React", + "extension": ".js", + "size": 5275, + "date": "2018-03-12", + "sha1": "f39158b86ba884ca1fdcd96fe9db213a2a0f562d", + "md5": "f36db913b704ce7be631a3ce8ff8d721", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2520, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/__tests__/React-test.js", + "type": "file", + "name": "React-test.js", + "base_name": "React-test", + "extension": ".js", + "size": 2520, + "date": "2018-03-12", + "sha1": "a3032ac769a7424eea818c79f47887239307e381", + "md5": "cf56bd495eb6338da7401730ae2d5e6a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/children", + "type": "directory", + "name": "children", + "base_name": "children", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 27147, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/children/onlyChild.js", + "type": "file", + "name": "onlyChild.js", + "base_name": "onlyChild", + "extension": ".js", + "size": 1233, + "date": "2018-03-12", + "sha1": "c907d339f78b09f8ba12d2590bd2e3b524fc25a9", + "md5": "38a46cfdc891d36e98e7687fa8d83f43", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/children/ReactChildren.js", + "type": "file", + "name": "ReactChildren.js", + "base_name": "ReactChildren", + "extension": ".js", + "size": 6239, + "date": "2018-03-12", + "sha1": "82d960c622e9aeee2a63475b8aea85f679e472bf", + "md5": "5caef3b0bb9ae4eedab2421e43e6541a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/children/sliceChildren.js", + "type": "file", + "name": "sliceChildren.js", + "base_name": "sliceChildren", + "extension": ".js", + "size": 1017, + "date": "2018-03-12", + "sha1": "a60e11af6f7611b3ac9e306dda38b684fce41a0d", + "md5": "5cd2a881643de5c25dcfda3c8d232f22", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/children/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 18658, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/children/__tests__/onlyChild-test.js", + "type": "file", + "name": "onlyChild-test.js", + "base_name": "onlyChild-test", + "extension": ".js", + "size": 2285, + "date": "2018-03-12", + "sha1": "a8ec3ad7361e1ab92d46292602b1501214281e3f", + "md5": "3bd8bbaf942dc41aac6fa487c226085c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/children/__tests__/ReactChildren-test.js", + "type": "file", + "name": "ReactChildren-test.js", + "base_name": "ReactChildren-test", + "extension": ".js", + "size": 14443, + "date": "2018-03-12", + "sha1": "5c4cd1bf51f4a5816aa38645443e86ccb19840d1", + "md5": "939ee059c1b8b2199f56711bacc53c9c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/children/__tests__/sliceChildren-test.js", + "type": "file", + "name": "sliceChildren-test.js", + "base_name": "sliceChildren-test", + "extension": ".js", + "size": 1930, + "date": "2018-03-12", + "sha1": "7e0679533a9e95a3b3af385db75b54fe4ea8658e", + "md5": "801e6174c4a608b5088e939ffa6f9984", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic", + "type": "directory", + "name": "classic", + "base_name": "classic", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 7, + "size_count": 140053, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 7185, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/__tests__/ReactContextValidator-test.js", + "type": "file", + "name": "ReactContextValidator-test.js", + "base_name": "ReactContextValidator-test", + "extension": ".js", + "size": 7185, + "date": "2018-03-12", + "sha1": "41cf06a8fecf1efb623456cf10a1f5fe84681972", + "md5": "a9fd161fc8caf0ca2ea47975d4374876", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/class", + "type": "directory", + "name": "class", + "base_name": "class", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 1, + "size_count": 25430, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/class/createClass.js", + "type": "file", + "name": "createClass.js", + "base_name": "createClass", + "extension": ".js", + "size": 639, + "date": "2018-03-12", + "sha1": "f9e8ec217389e09d6fa5bc80335ab279a93b7b1d", + "md5": "32a0e1ee5cc9e2dda9d455f01ed6767c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/class/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 24791, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/class/__tests__/create-react-class-integration-test.js", + "type": "file", + "name": "create-react-class-integration-test.js", + "base_name": "create-react-class-integration-test", + "extension": ".js", + "size": 12239, + "date": "2018-03-12", + "sha1": "5bc92447b9c30e52b6afa5e730701e09629c4696", + "md5": "2a8dcfc3cb7f3b2e1dcec3fc266c146f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/class/__tests__/ReactCreateClass-test.js", + "type": "file", + "name": "ReactCreateClass-test.js", + "base_name": "ReactCreateClass-test", + "extension": ".js", + "size": 12552, + "date": "2018-03-12", + "sha1": "585e4fa603d9b77b11a3b1dd43e250155bca1424", + "md5": "634e60e6ecbfb59ed6a7209cfbe0f8de", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element", + "type": "directory", + "name": "element", + "base_name": "element", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 1, + "size_count": 69884, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element/ReactCurrentOwner.js", + "type": "file", + "name": "ReactCurrentOwner.js", + "base_name": "ReactCurrentOwner", + "extension": ".js", + "size": 744, + "date": "2018-03-12", + "sha1": "424d30c5363440de8b9a47b34947c6d8627cfbf7", + "md5": "f05c0b4d8cca1fe1edd6ea914850840a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element/ReactElement.js", + "type": "file", + "name": "ReactElement.js", + "base_name": "ReactElement", + "extension": ".js", + "size": 11269, + "date": "2018-03-12", + "sha1": "190473011d5ec33a10441d9bf3b086038302b35c", + "md5": "a1c671688b365f5985d05af35956e46f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element/ReactElementType.js", + "type": "file", + "name": "ReactElementType.js", + "base_name": "ReactElementType", + "extension": ".js", + "size": 739, + "date": "2018-03-12", + "sha1": "ba5a21c47c376236d3ac15e7ba4397950b7bfd2f", + "md5": "c18d65450ac3bd87d8b2820608c6b829", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element/ReactElementValidator.js", + "type": "file", + "name": "ReactElementValidator.js", + "base_name": "ReactElementValidator", + "extension": ".js", + "size": 9432, + "date": "2018-03-12", + "sha1": "4d5902daf172d1f9de2c16bc8276c9dd8553e8c1", + "md5": "8bd2c4d849f06e78ec3caa09aa3071b6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 47700, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element/__tests__/ReactElement-test.js", + "type": "file", + "name": "ReactElement-test.js", + "base_name": "ReactElement-test", + "extension": ".js", + "size": 18535, + "date": "2018-03-12", + "sha1": "d1955065b9a65f7f9d4f08008fe0979b30e3d777", + "md5": "139e7f5fff6c830303a6cd121dfca65d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element/__tests__/ReactElementClone-test.js", + "type": "file", + "name": "ReactElementClone-test.js", + "base_name": "ReactElementClone-test", + "extension": ".js", + "size": 10538, + "date": "2018-03-12", + "sha1": "64b4e3c8e541222c86541bef76d0f296fc772b65", + "md5": "88bbb1976f263a49ac605f9628e25f72", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/element/__tests__/ReactElementValidator-test.js", + "type": "file", + "name": "ReactElementValidator-test.js", + "base_name": "ReactElementValidator-test", + "extension": ".js", + "size": 18627, + "date": "2018-03-12", + "sha1": "07c65f804dffd8c08d86c44e82534199ff360c1e", + "md5": "8eabdbc6f6ccda2065098d3121df96aa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/types", + "type": "directory", + "name": "types", + "base_name": "types", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 37554, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/types/ReactPropTypes.js", + "type": "file", + "name": "ReactPropTypes.js", + "base_name": "ReactPropTypes", + "extension": ".js", + "size": 494, + "date": "2018-03-12", + "sha1": "bdd2032575e20bd5cc843fe070ef58576e0b4899", + "md5": "29f5e8773152ae4596a069280fbac952", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/types/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 37060, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/classic/types/__tests__/ReactPropTypes-test.js", + "type": "file", + "name": "ReactPropTypes-test.js", + "base_name": "ReactPropTypes-test", + "extension": ".js", + "size": 37060, + "date": "2018-03-12", + "sha1": "3e11196c46a3ada6fe4443273b6f0299ac92b499", + "md5": "476a0611d578fd5d8c3574a817a5f966", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/hooks", + "type": "directory", + "name": "hooks", + "base_name": "hooks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 12481, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/hooks/ReactComponentTreeDevtool.js", + "type": "file", + "name": "ReactComponentTreeDevtool.js", + "base_name": "ReactComponentTreeDevtool", + "extension": ".js", + "size": 471, + "date": "2018-03-12", + "sha1": "b7462bc8c6cba144051f880e90bc18bb68c70c34", + "md5": "1614d4d43de656d44fdea9d552fe9572", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/hooks/ReactComponentTreeHook.js", + "type": "file", + "name": "ReactComponentTreeHook.js", + "base_name": "ReactComponentTreeHook", + "extension": ".js", + "size": 12010, + "date": "2018-03-12", + "sha1": "17b3567061933e38c1a711b3f4fea2efcd2e2abd", + "md5": "6b444d546073f64d6d88e146be2be7fc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern", + "type": "directory", + "name": "modern", + "base_name": "modern", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 4, + "size_count": 77528, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class", + "type": "directory", + "name": "class", + "base_name": "class", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 1, + "size_count": 56443, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/PropTypes.d.ts", + "type": "file", + "name": "PropTypes.d.ts", + "base_name": "PropTypes.d", + "extension": ".ts", + "size": 529, + "date": "2018-03-12", + "sha1": "69c1aa314aafc6d0db8f21a2af945effc878dc7c", + "md5": "79916c631e06c0b9c410db7a9eb6bcb7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/React.d.ts", + "type": "file", + "name": "React.d.ts", + "base_name": "React.d", + "extension": ".ts", + "size": 846, + "date": "2018-03-12", + "sha1": "a58925df92d2bb4faf446db5a78ccd987a40b33c", + "md5": "b85533294ba5729b92f6b24fa2875623", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/ReactBaseClasses.js", + "type": "file", + "name": "ReactBaseClasses.js", + "base_name": "ReactBaseClasses", + "extension": ".js", + "size": 5397, + "date": "2018-03-12", + "sha1": "c95e4945d04d0a4ae20df2880156d3b50b16e96d", + "md5": "9e3d02098b729cf8e81a42b6ec272abf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/ReactDOM.d.ts", + "type": "file", + "name": "ReactDOM.d.ts", + "base_name": "ReactDOM.d", + "extension": ".ts", + "size": 680, + "date": "2018-03-12", + "sha1": "fb61360a4f109c67ec0749335badefdd8bfc39b9", + "md5": "93f1956796c756a19aee2e37cc06210e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/ReactNoopUpdateQueue.js", + "type": "file", + "name": "ReactNoopUpdateQueue.js", + "base_name": "ReactNoopUpdateQueue", + "extension": ".js", + "size": 3374, + "date": "2018-03-12", + "sha1": "46a08d8034cba1c77233f99972ec090b535dc10a", + "md5": "c9d3c579746f39e70933e7bf780ab0c3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 45617, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/__tests__/ReactClassEquivalence-test.js", + "type": "file", + "name": "ReactClassEquivalence-test.js", + "base_name": "ReactClassEquivalence-test", + "extension": ".js", + "size": 1950, + "date": "2018-03-12", + "sha1": "5eb07c916d00ad717519e4d8a26fed22e42536fe", + "md5": "5573b720b65ad21035ee70264e48010c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/__tests__/ReactCoffeeScriptClass-test.coffee", + "type": "file", + "name": "ReactCoffeeScriptClass-test.coffee", + "base_name": "ReactCoffeeScriptClass-test", + "extension": ".coffee", + "size": 12266, + "date": "2018-03-12", + "sha1": "95e691b6393004eaf3679b4bd385c0bb95847597", + "md5": "4c9c051b74aa539626aa53322f94f104", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CoffeeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/__tests__/ReactES6Class-test.js", + "type": "file", + "name": "ReactES6Class-test.js", + "base_name": "ReactES6Class-test", + "extension": ".js", + "size": 13200, + "date": "2018-03-12", + "sha1": "d797108d1fc9d35235383ae10f80f063679b1bf5", + "md5": "d8ec7ee3d1cdbaaf0f03d6aa06f26a46", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/__tests__/ReactPureComponent-test.js", + "type": "file", + "name": "ReactPureComponent-test.js", + "base_name": "ReactPureComponent-test", + "extension": ".js", + "size": 2627, + "date": "2018-03-12", + "sha1": "3b7b5cf32c2fc2cc72be6ae554b998cf8dfc429a", + "md5": "399955fba94e9b08a6cc63238758dc4f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/class/__tests__/ReactTypeScriptClass-test.ts", + "type": "file", + "name": "ReactTypeScriptClass-test.ts", + "base_name": "ReactTypeScriptClass-test", + "extension": ".ts", + "size": 15574, + "date": "2018-03-12", + "sha1": "2b4b8ba91c89724aa06e7391a5c4136053b8df32", + "md5": "12a4c5229eeff5696ff7be18d52efbb0", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 9, + "end_line": 11, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 9, + "end_line": 11, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 6, + "end_line": 7 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/element", + "type": "directory", + "name": "element", + "base_name": "element", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 21085, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/element/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 21085, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/element/__tests__/ReactJSXElement-test.js", + "type": "file", + "name": "ReactJSXElement-test.js", + "base_name": "ReactJSXElement-test", + "extension": ".js", + "size": 6331, + "date": "2018-03-12", + "sha1": "dae8e46ab2ba0a8ff2007fbf965bc15daa33a5fc", + "md5": "a383b29bddcb64b26bb3085b1068e4cb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/isomorphic/modern/element/__tests__/ReactJSXElementValidator-test.js", + "type": "file", + "name": "ReactJSXElementValidator-test.js", + "base_name": "ReactJSXElementValidator-test", + "extension": ".js", + "size": 14754, + "date": "2018-03-12", + "sha1": "b8c4bf0cdffbe9138b8d421e350536335bdc5f7a", + "md5": "2df5064eae1d2819cd06ded2e9f5479f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/node_modules", + "type": "directory", + "name": "node_modules", + "base_name": "node_modules", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 2, + "size_count": 155, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/node_modules/react", + "type": "directory", + "name": "react", + "base_name": "react", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 155, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/node_modules/react/lib", + "type": "directory", + "name": "lib", + "base_name": "lib", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 155, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/node_modules/react/lib/getNextDebugID.js", + "type": "file", + "name": "getNextDebugID.js", + "base_name": "getNextDebugID", + "extension": ".js", + "size": 155, + "date": "2018-03-12", + "sha1": "6f57e92a9cde25a9e73447ababd613b5d1294a96", + "md5": "7c42bece704ed03959a65bdab2b9d6e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers", + "type": "directory", + "name": "renderers", + "base_name": "renderers", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 264, + "dirs_count": 46, + "size_count": 1586779, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/art", + "type": "directory", + "name": "art", + "base_name": "art", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 24245, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/art/ReactART.js", + "type": "file", + "name": "ReactART.js", + "base_name": "ReactART", + "extension": ".js", + "size": 16687, + "date": "2018-03-12", + "sha1": "d00cc293dccaca3dce32c84c03a9d636936fc6fe", + "md5": "d127f9867078b320be72aa7aeaecf767", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/art/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 7558, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/art/__tests__/ReactART-test.js", + "type": "file", + "name": "ReactART-test.js", + "base_name": "ReactART-test", + "extension": ".js", + "size": 7558, + "date": "2018-03-12", + "sha1": "606f9f25828c369179d60c31d972d2a4a3482ac5", + "md5": "041d86a0522778c46578f0c89e101e40", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom", + "type": "directory", + "name": "dom", + "base_name": "dom", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 129, + "dirs_count": 18, + "size_count": 687784, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/ReactDOM.js", + "type": "file", + "name": "ReactDOM.js", + "base_name": "ReactDOM", + "extension": ".js", + "size": 5290, + "date": "2018-03-12", + "sha1": "7b10deffc26553db90a1cc359d0aedbfe134ce58", + "md5": "a8ede08c0919134f70a69d947a5eaa1c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/ReactDOMServer.js", + "type": "file", + "name": "ReactDOMServer.js", + "base_name": "ReactDOMServer", + "extension": ".js", + "size": 765, + "date": "2018-03-12", + "sha1": "11c0f586b811924831a6283992666f3cbaa75355", + "md5": "7697b94619d6d7f0eb2b0365c6ae3132", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/__mocks__", + "type": "directory", + "name": "__mocks__", + "base_name": "__mocks__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 520, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/__mocks__/ReactDOM.js", + "type": "file", + "name": "ReactDOM.js", + "base_name": "ReactDOM", + "extension": ".js", + "size": 520, + "date": "2018-03-12", + "sha1": "0b73aa1a10fd5effb502282e81f91a819cfb26c4", + "md5": "60841e9a52b412b01977343f980b694c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 4938, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/__tests__/ReactDOMProduction-test.js", + "type": "file", + "name": "ReactDOMProduction-test.js", + "base_name": "ReactDOMProduction-test", + "extension": ".js", + "size": 4938, + "date": "2018-03-12", + "sha1": "112618654741bffb8d1c83fb0f31df0cd6f3227b", + "md5": "4802dd7ea74d0b7c56b19326fe7c34ec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client", + "type": "directory", + "name": "client", + "base_name": "client", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 86, + "dirs_count": 9, + "size_count": 440107, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/findDOMNode.js", + "type": "file", + "name": "findDOMNode.js", + "base_name": "findDOMNode", + "extension": ".js", + "size": 2232, + "date": "2018-03-12", + "sha1": "5a4b9f150eb54cd3de66fc13cba53b11a6709964", + "md5": "8637636e488bb7ed2afe0f6f5fe4ebb0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/inputValueTracking.js", + "type": "file", + "name": "inputValueTracking.js", + "base_name": "inputValueTracking", + "extension": ".js", + "size": 3140, + "date": "2018-03-12", + "sha1": "ff478576a76362cf82eb58ad2defe7c9c4ef593f", + "md5": "1f487eb79834dac789d48f26f65698e8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactBrowserEventEmitter.js", + "type": "file", + "name": "ReactBrowserEventEmitter.js", + "base_name": "ReactBrowserEventEmitter", + "extension": ".js", + "size": 13229, + "date": "2018-03-12", + "sha1": "df2beff68e951a6c98c4aceba4db2e1a38e4b2a8", + "md5": "51f2ed1109f14d8b5d302153f0889d7b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactDOMComponentTree.js", + "type": "file", + "name": "ReactDOMComponentTree.js", + "base_name": "ReactDOMComponentTree", + "extension": ".js", + "size": 6057, + "date": "2018-03-12", + "sha1": "4d2bf09711a36c1ede9422f006d3b9f387bfbcd7", + "md5": "b02e85776892c37e43322e67a7c39501", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactDOMIDOperations.js", + "type": "file", + "name": "ReactDOMIDOperations.js", + "base_name": "ReactDOMIDOperations", + "extension": ".js", + "size": 992, + "date": "2018-03-12", + "sha1": "6824a16c44a40cfb078f135cc6ebebd6fda60663", + "md5": "48dbbde1ede0dbce94bab439e799c0b0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactDOMSelection.js", + "type": "file", + "name": "ReactDOMSelection.js", + "base_name": "ReactDOMSelection", + "extension": ".js", + "size": 6852, + "date": "2018-03-12", + "sha1": "f4d5df4ddc527b11432f8c15e62193a59d2cd7b7", + "md5": "5013df38a26c03a7258428ecc627a65b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactDOMTreeTraversal.js", + "type": "file", + "name": "ReactDOMTreeTraversal.js", + "base_name": "ReactDOMTreeTraversal", + "extension": ".js", + "size": 3287, + "date": "2018-03-12", + "sha1": "ebed3460204658acdd9d86f22d3574c7028b6c6f", + "md5": "673b0e632969b55c29f6345d132f2bbc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactEventListener.js", + "type": "file", + "name": "ReactEventListener.js", + "base_name": "ReactEventListener", + "extension": ".js", + "size": 5376, + "date": "2018-03-12", + "sha1": "1332b8791b455f99b4ad5608b406379fcfd78ab1", + "md5": "03e70d20a1f864cb00b6f8bf0cd84a0e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactInputSelection.js", + "type": "file", + "name": "ReactInputSelection.js", + "base_name": "ReactInputSelection", + "extension": ".js", + "size": 4372, + "date": "2018-03-12", + "sha1": "765b778a435c3df1f667ba4a9edf00a9fc6c3f98", + "md5": "25c8d4314f241f2286424c2a9378518c", + "mime_type": "text/x-pascal", + "file_type": "Pascal source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactMount.js", + "type": "file", + "name": "ReactMount.js", + "base_name": "ReactMount", + "extension": ".js", + "size": 25519, + "date": "2018-03-12", + "sha1": "d52cacaeb32f7f4f72675f5dbf2156eb1fe1aad0", + "md5": "2808be06aa7da7c27ef2cb32af919dd4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/ReactReconcileTransaction.js", + "type": "file", + "name": "ReactReconcileTransaction.js", + "base_name": "ReactReconcileTransaction", + "extension": ".js", + "size": 5239, + "date": "2018-03-12", + "sha1": "87b8d9108e10dced185688d505a5cf3470251898", + "md5": "3e2986f4561d9d2098b132d6aea74797", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/renderSubtreeIntoContainer.js", + "type": "file", + "name": "renderSubtreeIntoContainer.js", + "base_name": "renderSubtreeIntoContainer", + "extension": ".js", + "size": 467, + "date": "2018-03-12", + "sha1": "175b55289aada1fec106ad7d362d39fbd11bae8d", + "md5": "f039bc3dda6e4d30566b83f3ae704be1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/validateDOMNesting.js", + "type": "file", + "name": "validateDOMNesting.js", + "base_name": "validateDOMNesting", + "extension": ".js", + "size": 14719, + "date": "2018-03-12", + "sha1": "c98c739f5ceaa232c1c05491913f656f44a58d0e", + "md5": "181194c163a20523504da6e8deea56fe", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 14, + "dirs_count": 0, + "size_count": 76891, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/findDOMNode-test.js", + "type": "file", + "name": "findDOMNode-test.js", + "base_name": "findDOMNode-test", + "extension": ".js", + "size": 2099, + "date": "2018-03-12", + "sha1": "6d1457aad45fa66a4a5b2fb5c7847da505204f99", + "md5": "1212d9d56e11ad4860bc30d841567f2b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/inputValueTracking-test.js", + "type": "file", + "name": "inputValueTracking-test.js", + "base_name": "inputValueTracking-test", + "extension": ".js", + "size": 4491, + "date": "2018-03-12", + "sha1": "13efb211f8afeecf8511fc1af5fdd731d3aa403e", + "md5": "b6afb6491315bdfb78fd07fadb5878c3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactBrowserEventEmitter-test.js", + "type": "file", + "name": "ReactBrowserEventEmitter-test.js", + "base_name": "ReactBrowserEventEmitter-test", + "extension": ".js", + "size": 14377, + "date": "2018-03-12", + "sha1": "8c0a4c029766cb05fe90ca9659b1e1f9c5605869", + "md5": "d9a22a781c66bac89e7763c68a272c4d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactDOM-test.js", + "type": "file", + "name": "ReactDOM-test.js", + "base_name": "ReactDOM-test", + "extension": ".js", + "size": 5588, + "date": "2018-03-12", + "sha1": "059f760c82b59af83a2ad233689be23403f6c287", + "md5": "354ac70cf0fb53c637f721849f53a72c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactDOMComponentTree-test.js", + "type": "file", + "name": "ReactDOMComponentTree-test.js", + "base_name": "ReactDOMComponentTree-test", + "extension": ".js", + "size": 3570, + "date": "2018-03-12", + "sha1": "0cb9c3d7a86ff7a47725775db171701da9becb37", + "md5": "cbf2ca7baee13b6d6d8709982b955c31", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactDOMIDOperations-test.js", + "type": "file", + "name": "ReactDOMIDOperations-test.js", + "base_name": "ReactDOMIDOperations-test", + "extension": ".js", + "size": 1098, + "date": "2018-03-12", + "sha1": "211785f8d520fc58c4c28ef6fcf0c329ec24bef3", + "md5": "b6ea98e2a4f629a49f234c2af4ef8af2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactDOMSVG-test.js", + "type": "file", + "name": "ReactDOMSVG-test.js", + "base_name": "ReactDOMSVG-test", + "extension": ".js", + "size": 795, + "date": "2018-03-12", + "sha1": "5141510930a84a2a5dd1e0287b66f4b76ba888ec", + "md5": "4972fde404f679cf483f7726e83f7d95", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactDOMTreeTraversal-test.js", + "type": "file", + "name": "ReactDOMTreeTraversal-test.js", + "base_name": "ReactDOMTreeTraversal-test", + "extension": ".js", + "size": 9835, + "date": "2018-03-12", + "sha1": "9a4a7fa7a7bada475dfd83e910e22bc38a0b7624", + "md5": "d242b6d9aac7aa875d06f4f7eab8da01", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactEventIndependence-test.js", + "type": "file", + "name": "ReactEventIndependence-test.js", + "base_name": "ReactEventIndependence-test", + "extension": ".js", + "size": 1965, + "date": "2018-03-12", + "sha1": "43eb319ab839c1e5d71832b08866a03e1393a73c", + "md5": "7482a8d3167779b980d5c5a7b5b4dc22", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactEventListener-test.js", + "type": "file", + "name": "ReactEventListener-test.js", + "base_name": "ReactEventListener-test", + "extension": ".js", + "size": 7611, + "date": "2018-03-12", + "sha1": "03c95b08209ffbcb7a8b83b5b69cb64957e425b1", + "md5": "ea4d27abe5913fc0409283d1c47ecc56", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactMount-test.js", + "type": "file", + "name": "ReactMount-test.js", + "base_name": "ReactMount-test", + "extension": ".js", + "size": 11134, + "date": "2018-03-12", + "sha1": "5ef54f6b0cac36d48aafb0dd22a1e347e9c65fd1", + "md5": "360bdd32e85d282e1070fb8cd0926495", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactMountDestruction-test.js", + "type": "file", + "name": "ReactMountDestruction-test.js", + "base_name": "ReactMountDestruction-test", + "extension": ".js", + "size": 3216, + "date": "2018-03-12", + "sha1": "e3666ebc9afdd4724371894b344ca3f4762d27e4", + "md5": "b4d8b01999290443923cb8bf022b9441", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/ReactRenderDocument-test.js", + "type": "file", + "name": "ReactRenderDocument-test.js", + "base_name": "ReactRenderDocument-test", + "extension": ".js", + "size": 7275, + "date": "2018-03-12", + "sha1": "0d38065887e1e425691520e978add83fca5c3899", + "md5": "96c7bb5242efbd72120909c06fa81ced", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/__tests__/validateDOMNesting-test.js", + "type": "file", + "name": "validateDOMNesting-test.js", + "base_name": "validateDOMNesting-test", + "extension": ".js", + "size": 3837, + "date": "2018-03-12", + "sha1": "f5126ee0564826e38d6abcb4301d3774dbc9862f", + "md5": "625273f28a1347c4ca89755459ce8e67", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins", + "type": "directory", + "name": "eventPlugins", + "base_name": "eventPlugins", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 14, + "dirs_count": 1, + "size_count": 78021, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/BeforeInputEventPlugin.js", + "type": "file", + "name": "BeforeInputEventPlugin.js", + "base_name": "BeforeInputEventPlugin", + "extension": ".js", + "size": 13811, + "date": "2018-03-12", + "sha1": "8050cca9404c274dec6b78e06d5e27e612943ae4", + "md5": "965b3ff0d464224dbb19da7b2c4f82ce", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/ChangeEventPlugin.js", + "type": "file", + "name": "ChangeEventPlugin.js", + "base_name": "ChangeEventPlugin", + "extension": ".js", + "size": 11089, + "date": "2018-03-12", + "sha1": "22733bbfcf87e656db13ac2970c3facfbc32cbff", + "md5": "30ea454a9b59701d1a1e5b71bc395833", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/DefaultEventPluginOrder.js", + "type": "file", + "name": "DefaultEventPluginOrder.js", + "base_name": "DefaultEventPluginOrder", + "extension": ".js", + "size": 1137, + "date": "2018-03-12", + "sha1": "ef6b926eb82c42d3af6e6b6bf00b582f5136c155", + "md5": "0b44949718fcdd8e25860f1eee4b6fe6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/EnterLeaveEventPlugin.js", + "type": "file", + "name": "EnterLeaveEventPlugin.js", + "base_name": "EnterLeaveEventPlugin", + "extension": ".js", + "size": 3334, + "date": "2018-03-12", + "sha1": "6fb4bcc0023565b54e7272541b86409b3c72716e", + "md5": "7ea45d0d7cfc3f541402429f3e5732bb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/FallbackCompositionState.js", + "type": "file", + "name": "FallbackCompositionState.js", + "base_name": "FallbackCompositionState", + "extension": ".js", + "size": 2430, + "date": "2018-03-12", + "sha1": "59d7287a6052de499166b474f2dd318502ed58d7", + "md5": "f3bef4d331f4df81bdc9b7e2c3306f03", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/SelectEventPlugin.js", + "type": "file", + "name": "SelectEventPlugin.js", + "base_name": "SelectEventPlugin", + "extension": ".js", + "size": 6246, + "date": "2018-03-12", + "sha1": "5b0875a1dfbe3a7cbc3b7f4e7092978f5cddeaf8", + "md5": "bf0a241d43f9c5ef41de8421b7345335", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/SimpleEventPlugin.js", + "type": "file", + "name": "SimpleEventPlugin.js", + "base_name": "SimpleEventPlugin", + "extension": ".js", + "size": 8613, + "date": "2018-03-12", + "sha1": "6c3b0b2546818b1ba2118873d849c100815bfaf1", + "md5": "0b32ac4aace69cf0a5bebd5aefdbb719", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/TapEventPlugin.js", + "type": "file", + "name": "TapEventPlugin.js", + "base_name": "TapEventPlugin", + "extension": ".js", + "size": 4509, + "date": "2018-03-12", + "sha1": "014af19a34f1691a474b7e98d5a01360fe81c9c1", + "md5": "05bd8e2776348375a1c324eed3662362", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 26852, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/__tests__/BeforeInputEventPlugin-test.js", + "type": "file", + "name": "BeforeInputEventPlugin-test.js", + "base_name": "BeforeInputEventPlugin-test", + "extension": ".js", + "size": 8223, + "date": "2018-03-12", + "sha1": "a4bcb77058908eca5180cab28dc9db11b6f4a19c", + "md5": "8c3937bb58f34086d6ab6a77561c9f8c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/__tests__/ChangeEventPlugin-test.js", + "type": "file", + "name": "ChangeEventPlugin-test.js", + "base_name": "ChangeEventPlugin-test", + "extension": ".js", + "size": 5972, + "date": "2018-03-12", + "sha1": "a46bec5440b9a28c1458c52f0f3efa341232311a", + "md5": "0430c022324769ddfde5e5347dbaf9f0", + "mime_type": "text/x-pascal", + "file_type": "Pascal source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/__tests__/EnterLeaveEventPlugin-test.js", + "type": "file", + "name": "EnterLeaveEventPlugin-test.js", + "base_name": "EnterLeaveEventPlugin-test", + "extension": ".js", + "size": 1696, + "date": "2018-03-12", + "sha1": "e4e6c373ff2f725f188d1d5b94907f146bfe0eef", + "md5": "cb5ce7caacaac7070bacb95cacaa4f57", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/__tests__/FallbackCompositionState-test.js", + "type": "file", + "name": "FallbackCompositionState-test.js", + "base_name": "FallbackCompositionState-test", + "extension": ".js", + "size": 2750, + "date": "2018-03-12", + "sha1": "3f8b31c33676543578b9efe1fa550132e4d5d9b0", + "md5": "5f30acf9198018cbbae3feab672efbc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/__tests__/SelectEventPlugin-test.js", + "type": "file", + "name": "SelectEventPlugin-test.js", + "base_name": "SelectEventPlugin-test", + "extension": ".js", + "size": 2281, + "date": "2018-03-12", + "sha1": "a50df5ba67b113e89f7e730b48c3f26b94e48d59", + "md5": "6b159ac40ecffee5fd223a7b96137af5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/eventPlugins/__tests__/SimpleEventPlugin-test.js", + "type": "file", + "name": "SimpleEventPlugin-test.js", + "base_name": "SimpleEventPlugin-test", + "extension": ".js", + "size": 5930, + "date": "2018-03-12", + "sha1": "e0ede0bd41d13d56ef804771cb3baaf6f430bc46", + "md5": "f660eda892f39c1dc590358ff03cf9ef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents", + "type": "directory", + "name": "syntheticEvents", + "base_name": "syntheticEvents", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 1, + "size_count": 35003, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticAnimationEvent.js", + "type": "file", + "name": "SyntheticAnimationEvent.js", + "base_name": "SyntheticAnimationEvent", + "extension": ".js", + "size": 1288, + "date": "2018-03-12", + "sha1": "0c192f88bc6ad348d7ee713e154066db7c763482", + "md5": "b43c79821cb39b70f56f2297b7759b7f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticClipboardEvent.js", + "type": "file", + "name": "SyntheticClipboardEvent.js", + "base_name": "SyntheticClipboardEvent", + "extension": ".js", + "size": 1259, + "date": "2018-03-12", + "sha1": "a6622c1e8730a037c83d3976c5fc50e1b22a2134", + "md5": "228bc01a740636f31fbe305c024db023", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticCompositionEvent.js", + "type": "file", + "name": "SyntheticCompositionEvent.js", + "base_name": "SyntheticCompositionEvent", + "extension": ".js", + "size": 1187, + "date": "2018-03-12", + "sha1": "5635391c9a5322b49f0be25356141b27ab82630e", + "md5": "86df44d41722613a77898b41c7082dc4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticDragEvent.js", + "type": "file", + "name": "SyntheticDragEvent.js", + "base_name": "SyntheticDragEvent", + "extension": ".js", + "size": 1145, + "date": "2018-03-12", + "sha1": "6e2bb9ace0490222b9e703d2d1250a27605e7dd6", + "md5": "ac710a0ec8aba5567b0c197551c383ae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticFocusEvent.js", + "type": "file", + "name": "SyntheticFocusEvent.js", + "base_name": "SyntheticFocusEvent", + "extension": ".js", + "size": 1141, + "date": "2018-03-12", + "sha1": "6ca8dd00493d0263283671520a25f3226456828e", + "md5": "a06702dd50f82be18813620366c30967", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticInputEvent.js", + "type": "file", + "name": "SyntheticInputEvent.js", + "base_name": "SyntheticInputEvent", + "extension": ".js", + "size": 1164, + "date": "2018-03-12", + "sha1": "dd3098f00734ef4df94f248874642748743f0fb2", + "md5": "271bdbaa4d331116f527d0d76506389f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticKeyboardEvent.js", + "type": "file", + "name": "SyntheticKeyboardEvent.js", + "base_name": "SyntheticKeyboardEvent", + "extension": ".js", + "size": 2774, + "date": "2018-03-12", + "sha1": "8294c81aafc9c191004bd0a0c6a36a2867af01e9", + "md5": "e0d0a250772e040bb41aae51f177ffc1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticMouseEvent.js", + "type": "file", + "name": "SyntheticMouseEvent.js", + "base_name": "SyntheticMouseEvent", + "extension": ".js", + "size": 2268, + "date": "2018-03-12", + "sha1": "d6b7a832f109bfa4f73da67316d87cd12154e062", + "md5": "53e79121c13d533a8b8c51777d289567", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticTouchEvent.js", + "type": "file", + "name": "SyntheticTouchEvent.js", + "base_name": "SyntheticTouchEvent", + "extension": ".js", + "size": 1350, + "date": "2018-03-12", + "sha1": "b6e4233dc4650e8c862670c9039c4e70db9eb587", + "md5": "7498f064ba69e9a8d8325519d2364cf1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticTransitionEvent.js", + "type": "file", + "name": "SyntheticTransitionEvent.js", + "base_name": "SyntheticTransitionEvent", + "extension": ".js", + "size": 1306, + "date": "2018-03-12", + "sha1": "6b8437dd6bbe9985b6f73729383c7723bf37b958", + "md5": "6da7d4fc0699c7fbfdf4d23759f09d3b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticUIEvent.js", + "type": "file", + "name": "SyntheticUIEvent.js", + "base_name": "SyntheticUIEvent", + "extension": ".js", + "size": 1639, + "date": "2018-03-12", + "sha1": "4568d1bed2029cad3e7c5031d216c6ad92f936d6", + "md5": "cce3b3033b2704063c51b4dceae9ef4c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/SyntheticWheelEvent.js", + "type": "file", + "name": "SyntheticWheelEvent.js", + "base_name": "SyntheticWheelEvent", + "extension": ".js", + "size": 2051, + "date": "2018-03-12", + "sha1": "667b2413c5046737afdab63db80fc95d0419d9cf", + "md5": "38fa03c13e989e7fa4ef1bef86d9e6f8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 16431, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/__tests__/SyntheticClipboardEvent-test.js", + "type": "file", + "name": "SyntheticClipboardEvent-test.js", + "base_name": "SyntheticClipboardEvent-test", + "extension": ".js", + "size": 2447, + "date": "2018-03-12", + "sha1": "e93350ac2c85f2775b75240cce24abe056e4871f", + "md5": "b84ef9fbfbb6bf9ba2faf79b81f8ac79", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/__tests__/SyntheticEvent-test.js", + "type": "file", + "name": "SyntheticEvent-test.js", + "base_name": "SyntheticEvent-test", + "extension": ".js", + "size": 7799, + "date": "2018-03-12", + "sha1": "4b5d0a979048ddf9c037fc2ac43b06f2aa5afcbd", + "md5": "5a1f0e6d6947717ff74b8cdf10bd424a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/__tests__/SyntheticKeyboardEvent-test.js", + "type": "file", + "name": "SyntheticKeyboardEvent-test.js", + "base_name": "SyntheticKeyboardEvent-test", + "extension": ".js", + "size": 3955, + "date": "2018-03-12", + "sha1": "2359644c782340a754aaa02bc85f6d44324f51c2", + "md5": "be7d10de0a3214dae85f530ad30c0158", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/syntheticEvents/__tests__/SyntheticWheelEvent-test.js", + "type": "file", + "name": "SyntheticWheelEvent-test.js", + "base_name": "SyntheticWheelEvent-test", + "extension": ".js", + "size": 2230, + "date": "2018-03-12", + "sha1": "5f346a4add4874da01a5fd5844bdf317cb7e280f", + "md5": "1e98762f8f5c4b73d87475160420e4f6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils", + "type": "directory", + "name": "utils", + "base_name": "utils", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 1, + "size_count": 41328, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/createMicrosoftUnsafeLocalFunction.js", + "type": "file", + "name": "createMicrosoftUnsafeLocalFunction.js", + "base_name": "createMicrosoftUnsafeLocalFunction", + "extension": ".js", + "size": 861, + "date": "2018-03-12", + "sha1": "21798b3097ed248ec206ec8a1b5392bd010ea015", + "md5": "789abb02537e8237ae9569dd97f13db6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/DOMChildrenOperations.js", + "type": "file", + "name": "DOMChildrenOperations.js", + "base_name": "DOMChildrenOperations", + "extension": ".js", + "size": 7685, + "date": "2018-03-12", + "sha1": "6a8662770af641dc87e8fd4c0140e015fdf00a22", + "md5": "9cbf405e66472c10b6539daafbf20bba", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/DOMLazyTree.js", + "type": "file", + "name": "DOMLazyTree.js", + "base_name": "DOMLazyTree", + "extension": ".js", + "size": 3792, + "date": "2018-03-12", + "sha1": "33ac4ca108c3a83c3f85a2fc4df68ddf3a601682", + "md5": "87a978873d276d3c07d8af88fb05490d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/getEventCharCode.js", + "type": "file", + "name": "getEventCharCode.js", + "base_name": "getEventCharCode", + "extension": ".js", + "size": 1541, + "date": "2018-03-12", + "sha1": "ac3a2ac423c809d7b6180efd6463b00fa640007a", + "md5": "6a85a57b5d7fa412bef9067999ce2995", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/getEventKey.js", + "type": "file", + "name": "getEventKey.js", + "base_name": "getEventKey", + "extension": ".js", + "size": 2900, + "date": "2018-03-12", + "sha1": "f257e519f537192d64a1e89f80ef5b8965074696", + "md5": "a29d609d923d5f373a47b38b70cd0bc2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/getEventModifierState.js", + "type": "file", + "name": "getEventModifierState.js", + "base_name": "getEventModifierState", + "extension": ".js", + "size": 1268, + "date": "2018-03-12", + "sha1": "70b295411a2a4a0e8e78b5f8f226fbd2a990ca1b", + "md5": "bc6cde0ce69899d84aa14af51979385e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/getEventTarget.js", + "type": "file", + "name": "getEventTarget.js", + "base_name": "getEventTarget", + "extension": ".js", + "size": 1044, + "date": "2018-03-12", + "sha1": "f48940fe2112ff382e8a4e1bfdf3da63c8e4f0ce", + "md5": "1a53261b4291788374050d136d4ced15", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/getNodeForCharacterOffset.js", + "type": "file", + "name": "getNodeForCharacterOffset.js", + "base_name": "getNodeForCharacterOffset", + "extension": ".js", + "size": 1663, + "date": "2018-03-12", + "sha1": "4f60953bc68c023b14d7656dc25ac68c0f1f91c5", + "md5": "1c190cfb199e203fcc4ccaf94502a12f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/getTextContentAccessor.js", + "type": "file", + "name": "getTextContentAccessor.js", + "base_name": "getTextContentAccessor", + "extension": ".js", + "size": 1001, + "date": "2018-03-12", + "sha1": "c011d49d7e1cfbd7c9d0bcd43c913c0182cead94", + "md5": "baa821bae57977c84095d0ea84748a16", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/getVendorPrefixedEventName.js", + "type": "file", + "name": "getVendorPrefixedEventName.js", + "base_name": "getVendorPrefixedEventName", + "extension": ".js", + "size": 2910, + "date": "2018-03-12", + "sha1": "c9a659c5f91ffa8f38dd786520cf094e7a740bde", + "md5": "47dd83c3ce2bdc11ff68a573f79a7ca4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/isEventSupported.js", + "type": "file", + "name": "isEventSupported.js", + "base_name": "isEventSupported", + "extension": ".js", + "size": 1993, + "date": "2018-03-12", + "sha1": "e1bf8f2616c107c67098647f69d75c90e8f389d4", + "md5": "a60959189cdc0cdb272f45c4f7267652", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/setInnerHTML.js", + "type": "file", + "name": "setInnerHTML.js", + "base_name": "setInnerHTML", + "extension": ".js", + "size": 3910, + "date": "2018-03-12", + "sha1": "20d9d1fc0704dc0ae0b2f10872d1b9bdf96846c6", + "md5": "2ba0da8fb12ec741ebab6c56f911d38c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/setTextContent.js", + "type": "file", + "name": "setTextContent.js", + "base_name": "setTextContent", + "extension": ".js", + "size": 1497, + "date": "2018-03-12", + "sha1": "77e718cee67aa7a416c5182dc54fa4422e4786aa", + "md5": "05177cd70ec1fde15ddf84deb942edbd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/ViewportMetrics.js", + "type": "file", + "name": "ViewportMetrics.js", + "base_name": "ViewportMetrics", + "extension": ".js", + "size": 640, + "date": "2018-03-12", + "sha1": "f5054c3f95233ff6dfebfa3dee5a5c4d88754cbc", + "md5": "75bc6a1e3cb3948186d8562a2aaeca1f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 8623, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/__tests__/getEventCharCode-test.js", + "type": "file", + "name": "getEventCharCode-test.js", + "base_name": "getEventCharCode-test", + "extension": ".js", + "size": 2629, + "date": "2018-03-12", + "sha1": "4fbe67965003a38dc4cbc7f3c58ecc1c0920b628", + "md5": "445ec94c5c9a03c9681ccccea846d483", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/__tests__/getEventKey-test.js", + "type": "file", + "name": "getEventKey-test.js", + "base_name": "getEventKey-test", + "extension": ".js", + "size": 2396, + "date": "2018-03-12", + "sha1": "a478fec507859f10d74ab1cba26ebdbfa4abcd43", + "md5": "62983241305710261f46711f30217551", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/__tests__/getNodeForCharacterOffset-test.js", + "type": "file", + "name": "getNodeForCharacterOffset-test.js", + "base_name": "getNodeForCharacterOffset-test", + "extension": ".js", + "size": 2144, + "date": "2018-03-12", + "sha1": "aba006ced23f709eb0ce4067a3fdf048a40f33f2", + "md5": "1fafc61526b8b140e4335627c0c06e89", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/utils/__tests__/setInnerHTML-test.js", + "type": "file", + "name": "setInnerHTML-test.js", + "base_name": "setInnerHTML-test", + "extension": ".js", + "size": 1454, + "date": "2018-03-12", + "sha1": "2210d59cc6d875da68c0d76ef59e157150175997", + "md5": "1d22bac56931ef38612c1fcf75b7488d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers", + "type": "directory", + "name": "wrappers", + "base_name": "wrappers", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 1, + "size_count": 117383, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/AutoFocusUtils.js", + "type": "file", + "name": "AutoFocusUtils.js", + "base_name": "AutoFocusUtils", + "extension": ".js", + "size": 623, + "date": "2018-03-12", + "sha1": "4cc38262d56c65a953ac395c397bcea478adff7d", + "md5": "20d154bf14e8ecb8dfaeaa7477cda987", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/LinkedValueUtils.js", + "type": "file", + "name": "LinkedValueUtils.js", + "base_name": "LinkedValueUtils", + "extension": ".js", + "size": 5181, + "date": "2018-03-12", + "sha1": "2585b5a830987df596b76975bd6ff63f5ca0b764", + "md5": "3a5ab5cb2c1d8aaeca93ef50a19ec1d3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/ReactDOMInput.js", + "type": "file", + "name": "ReactDOMInput.js", + "base_name": "ReactDOMInput", + "extension": ".js", + "size": 13369, + "date": "2018-03-12", + "sha1": "d9e67d3fe3f9a293749887e2975d7e868e66858c", + "md5": "a83cf6e6620d8e3b0d70348c7838e5ae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/ReactDOMOption.js", + "type": "file", + "name": "ReactDOMOption.js", + "base_name": "ReactDOMOption", + "extension": ".js", + "size": 3608, + "date": "2018-03-12", + "sha1": "dd88b6f1ee12772ea8bbc15b1669a318bf754fee", + "md5": "5f38b2c8faf1cfba51aaa55710969d48", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/ReactDOMSelect.js", + "type": "file", + "name": "ReactDOMSelect.js", + "base_name": "ReactDOMSelect", + "extension": ".js", + "size": 6776, + "date": "2018-03-12", + "sha1": "d1fa6f4855f2a89fc22a631aea4ea91e93f69c4b", + "md5": "d3ad53b6ccbe685f11b8e44963adb76e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/ReactDOMTextarea.js", + "type": "file", + "name": "ReactDOMTextarea.js", + "base_name": "ReactDOMTextarea", + "extension": ".js", + "size": 6244, + "date": "2018-03-12", + "sha1": "554335221db9135c09b3f4e820aaebf3dfc47023", + "md5": "07e4f2df79d7c1b944fccab58802ed81", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 81582, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/__tests__/ReactDOMIframe-test.js", + "type": "file", + "name": "ReactDOMIframe-test.js", + "base_name": "ReactDOMIframe-test", + "extension": ".js", + "size": 996, + "date": "2018-03-12", + "sha1": "ba862a9356035b2b3d19437ce3dd76f76a99d921", + "md5": "3a7a468ed6a8998a250783a40cf61fca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/__tests__/ReactDOMInput-test.js", + "type": "file", + "name": "ReactDOMInput-test.js", + "base_name": "ReactDOMInput-test", + "extension": ".js", + "size": 44532, + "date": "2018-03-12", + "sha1": "a6865c682f9e1f2945ebfc0f9c8566ecbbe047c3", + "md5": "69296c63556a2289128461c3f426f8cd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/__tests__/ReactDOMOption-test.js", + "type": "file", + "name": "ReactDOMOption-test.js", + "base_name": "ReactDOMOption-test", + "extension": ".js", + "size": 3101, + "date": "2018-03-12", + "sha1": "83625b8d48a26949ae32b4076b7dc77f6a7cc2a6", + "md5": "fa0c227ea6f5890f178b035a66e5fb6c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/__tests__/ReactDOMSelect-test.js", + "type": "file", + "name": "ReactDOMSelect-test.js", + "base_name": "ReactDOMSelect-test", + "extension": ".js", + "size": 20088, + "date": "2018-03-12", + "sha1": "4f771e1f1abfd0bf0216f44ae4765b8d92554639", + "md5": "8d67e62782256a4b0063ccb7ca58bb80", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/client/wrappers/__tests__/ReactDOMTextarea-test.js", + "type": "file", + "name": "ReactDOMTextarea-test.js", + "base_name": "ReactDOMTextarea-test", + "extension": ".js", + "size": 12865, + "date": "2018-03-12", + "sha1": "94717d838ea08f81d07ef3ad748ab91395875a86", + "md5": "533732ecd0633c25fac752a9e3660643", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/fiber", + "type": "directory", + "name": "fiber", + "base_name": "fiber", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3437, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/fiber/ReactDOMFiber.js", + "type": "file", + "name": "ReactDOMFiber.js", + "base_name": "ReactDOMFiber", + "extension": ".js", + "size": 3437, + "date": "2018-03-12", + "sha1": "6471ce19a7fbdd6b4f4cc0cf50e1c85affa7b35c", + "md5": "dc8326203a3baf743671e759969ed1c6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/server", + "type": "directory", + "name": "server", + "base_name": "server", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 29207, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/server/ReactMarkupChecksum.js", + "type": "file", + "name": "ReactMarkupChecksum.js", + "base_name": "ReactMarkupChecksum", + "extension": ".js", + "size": 1547, + "date": "2018-03-12", + "sha1": "04c297404e741959dd520e0f53901b37b8b145a8", + "md5": "97ce508f51cac3fa880e4d83f8ae12ad", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/server/ReactServerBatchingStrategy.js", + "type": "file", + "name": "ReactServerBatchingStrategy.js", + "base_name": "ReactServerBatchingStrategy", + "extension": ".js", + "size": 662, + "date": "2018-03-12", + "sha1": "887afac513b214e1ef7d36557d18eb8576d126fb", + "md5": "95d0e7d8435481f99daefc96556086f4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/server/ReactServerRendering.js", + "type": "file", + "name": "ReactServerRendering.js", + "base_name": "ReactServerRendering", + "extension": ".js", + "size": 3328, + "date": "2018-03-12", + "sha1": "2d5a23f214749db08a9d89eb4ee3a64877b82428", + "md5": "4cfc51b1ea7aceddbdc859a637585b46", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/server/ReactServerRenderingTransaction.js", + "type": "file", + "name": "ReactServerRenderingTransaction.js", + "base_name": "ReactServerRenderingTransaction", + "extension": ".js", + "size": 2263, + "date": "2018-03-12", + "sha1": "645931247bf7fda103feeba95513e5ca70f60039", + "md5": "a0519ec7dc6332b31b4ed0d8debb9131", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/server/ReactServerUpdateQueue.js", + "type": "file", + "name": "ReactServerUpdateQueue.js", + "base_name": "ReactServerUpdateQueue", + "extension": ".js", + "size": 4656, + "date": "2018-03-12", + "sha1": "faea460b60461837acd2becaf61f03a535f9373a", + "md5": "31165a700fcf6b4ca8c1400660fae85c", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/server/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 16751, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/server/__tests__/ReactServerRendering-test.js", + "type": "file", + "name": "ReactServerRendering-test.js", + "base_name": "ReactServerRendering-test", + "extension": ".js", + "size": 16751, + "date": "2018-03-12", + "sha1": "dfb0df75c66e02e74c17ed344e491852acbcc2fa", + "md5": "287d290824db05ce88e9a6d947ae9a7a", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 32, + "dirs_count": 2, + "size_count": 203520, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ARIADOMPropertyConfig.js", + "type": "file", + "name": "ARIADOMPropertyConfig.js", + "base_name": "ARIADOMPropertyConfig", + "extension": ".js", + "size": 1860, + "date": "2018-03-12", + "sha1": "874a05264456b9791c63a88dde6041e0651986db", + "md5": "4afbc45fbc611223ee86b124ad0764e7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/CSSProperty.js", + "type": "file", + "name": "CSSProperty.js", + "base_name": "CSSProperty", + "extension": ".js", + "size": 3839, + "date": "2018-03-12", + "sha1": "407d612b05bb4b270588650309ef268a06988d76", + "md5": "af123361022027c55e8bd62b5a92d98b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/CSSPropertyOperations.js", + "type": "file", + "name": "CSSPropertyOperations.js", + "base_name": "CSSPropertyOperations", + "extension": ".js", + "size": 7147, + "date": "2018-03-12", + "sha1": "9fd509ef2a0b2869910aba548559935c233332ef", + "md5": "216b0b2ecf68b89b40f8e93646643434", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/Danger.js", + "type": "file", + "name": "Danger.js", + "base_name": "Danger", + "extension": ".js", + "size": 2045, + "date": "2018-03-12", + "sha1": "9e5831e3edbc2e6c51a895e8469e93629ae3575f", + "md5": "b1ed4f1e0ed88728ae6f0b64fb4522fe", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/dangerousStyleValue.js", + "type": "file", + "name": "dangerousStyleValue.js", + "base_name": "dangerousStyleValue", + "extension": ".js", + "size": 3146, + "date": "2018-03-12", + "sha1": "b156600fe03878b1d38ec66ddacfbda471f74a9a", + "md5": "56cc6fef6657e19d21d6efea0579bc1a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/DOMNamespaces.js", + "type": "file", + "name": "DOMNamespaces.js", + "base_name": "DOMNamespaces", + "extension": ".js", + "size": 540, + "date": "2018-03-12", + "sha1": "0fd5ea824b9760c9fcda42dc959778520ba8f68b", + "md5": "9895cfde6ad82066f44b5e7c9abe8717", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/DOMProperty.js", + "type": "file", + "name": "DOMProperty.js", + "base_name": "DOMProperty", + "extension": ".js", + "size": 8170, + "date": "2018-03-12", + "sha1": "f1699fd23391a93ed8b6210a0434cd6476b8f479", + "md5": "a2a5a58e8b170a2fdc2f99f39c9e85bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/DOMPropertyOperations.js", + "type": "file", + "name": "DOMPropertyOperations.js", + "base_name": "DOMPropertyOperations", + "extension": ".js", + "size": 7621, + "date": "2018-03-12", + "sha1": "507d152eabdf44846d20e5e6a91486482f741bdd", + "md5": "8e93373af519da72fecf6c36e49c5cfe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/escapeTextContentForBrowser.js", + "type": "file", + "name": "escapeTextContentForBrowser.js", + "base_name": "escapeTextContentForBrowser", + "extension": ".js", + "size": 3439, + "date": "2018-03-12", + "sha1": "de6455327851289ad795babd7705fb4c6f781121", + "md5": "37872107c467c3ccd62db3c767716dc0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "mit", + "score": 86.29, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 5, + "end_line": 32, + "matched_rule": { + "identifier": "mit_103.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "mit", + "score": 15.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 9, + "end_line": 9, + "matched_rule": { + "identifier": "mit_27.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + }, + { + "statements": [ + "Copyright (c) 2012-2013 TJ Holowaychuk", + "Copyright (c) 2015 Andreas Lubbe", + "Copyright (c) 2015 Tiancheng Timothy Gu" + ], + "holders": [ + "TJ Holowaychuk", + "Andreas Lubbe", + "Tiancheng Timothy Gu" + ], + "authors": [], + "start_line": 11, + "end_line": 13 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/HTMLDOMPropertyConfig.js", + "type": "file", + "name": "HTMLDOMPropertyConfig.js", + "base_name": "HTMLDOMPropertyConfig", + "extension": ".js", + "size": 6655, + "date": "2018-03-12", + "sha1": "d406b12c0392a3e65fb1329478f3f14b7e308064", + "md5": "f0fde8b471b4bc970fffe48cb7f71943", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/quoteAttributeValueForBrowser.js", + "type": "file", + "name": "quoteAttributeValueForBrowser.js", + "base_name": "quoteAttributeValueForBrowser", + "extension": ".js", + "size": 748, + "date": "2018-03-12", + "sha1": "bf56775412868ee52ed3bbb00a6ff83df3982ad4", + "md5": "952f9cf1f5ef8a76fe32daf2d5f9d94c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactComponentBrowserEnvironment.js", + "type": "file", + "name": "ReactComponentBrowserEnvironment.js", + "base_name": "ReactComponentBrowserEnvironment", + "extension": ".js", + "size": 958, + "date": "2018-03-12", + "sha1": "b473e3df92c0e854a70744414edc262c8689bd5f", + "md5": "f7bec8bedb844008f4c7c481f4f47014", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactDefaultInjection.js", + "type": "file", + "name": "ReactDefaultInjection.js", + "base_name": "ReactDefaultInjection", + "extension": ".js", + "size": 3515, + "date": "2018-03-12", + "sha1": "f1b3e44030af8827b2c01b62470858acfdb50c72", + "md5": "a4e20800de8b664dac7653b0e2d3e601", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactDOMComponent.js", + "type": "file", + "name": "ReactDOMComponent.js", + "base_name": "ReactDOMComponent", + "extension": ".js", + "size": 39034, + "date": "2018-03-12", + "sha1": "ce3b24dfc8f1dcf691a401faf8b5c1e6dfcb3b91", + "md5": "788d34e0633a80f2012795efd0d52e5c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactDOMComponentFlags.js", + "type": "file", + "name": "ReactDOMComponentFlags.js", + "base_name": "ReactDOMComponentFlags", + "extension": ".js", + "size": 473, + "date": "2018-03-12", + "sha1": "36e9207b3077ecaf2221eca0bc1cf6f3b45736bf", + "md5": "c519e4177469ea90d95f0b32e47b4e21", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactDOMContainerInfo.js", + "type": "file", + "name": "ReactDOMContainerInfo.js", + "base_name": "ReactDOMContainerInfo", + "extension": ".js", + "size": 1002, + "date": "2018-03-12", + "sha1": "b9f2cc239fd315492b5adefd9a9bfd3ff8ced97e", + "md5": "c6a6fbb94bd1129d2b37f4e84568af5f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactDOMEmptyComponent.js", + "type": "file", + "name": "ReactDOMEmptyComponent.js", + "base_name": "ReactDOMEmptyComponent", + "extension": ".js", + "size": 1923, + "date": "2018-03-12", + "sha1": "b7dc21b9cad0b25871757798c64e5b61266d7376", + "md5": "d9d147fe08aecc86155d4ab8b8d51e9e", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactDOMFeatureFlags.js", + "type": "file", + "name": "ReactDOMFeatureFlags.js", + "base_name": "ReactDOMFeatureFlags", + "extension": ".js", + "size": 481, + "date": "2018-03-12", + "sha1": "8e3b49d16cbd2e10949948d17566162b3b970f66", + "md5": "ada63353f80cf1c1ad0276a4aa8798e1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactDOMTextComponent.js", + "type": "file", + "name": "ReactDOMTextComponent.js", + "base_name": "ReactDOMTextComponent", + "extension": ".js", + "size": 5818, + "date": "2018-03-12", + "sha1": "3c2313ce7d2bb8b53b9cee6e840dae50e6ee32d5", + "md5": "0727a9d1f2a8cf8464949523cb7ad3d2", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/ReactInjection.js", + "type": "file", + "name": "ReactInjection.js", + "base_name": "ReactInjection", + "extension": ".js", + "size": 1220, + "date": "2018-03-12", + "sha1": "e43b5012c36135e13685820c7db3eda690fc9e6d", + "md5": "b2214cd3a62595a2dd1ca9c9a137091c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/SVGDOMPropertyConfig.js", + "type": "file", + "name": "SVGDOMPropertyConfig.js", + "base_name": "SVGDOMPropertyConfig", + "extension": ".js", + "size": 7353, + "date": "2018-03-12", + "sha1": "7632428d556d11c033cc70c1306d2ab5e3273d35", + "md5": "1d744e69faeff672db96d8700cd15bbc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 87686, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__/CSSProperty-test.js", + "type": "file", + "name": "CSSProperty-test.js", + "base_name": "CSSProperty-test", + "extension": ".js", + "size": 1411, + "date": "2018-03-12", + "sha1": "f85ad6b6d28b5e206baceab79ce8745b8b586946", + "md5": "93dfaaf6a5dbbe4852d5ba141765314a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__/CSSPropertyOperations-test.js", + "type": "file", + "name": "CSSPropertyOperations-test.js", + "base_name": "CSSPropertyOperations-test", + "extension": ".js", + "size": 8550, + "date": "2018-03-12", + "sha1": "63d2f0065337aca416ab0a7ecd34bed5b471da09", + "md5": "16936471521766909aff5017d63d79aa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__/DOMPropertyOperations-test.js", + "type": "file", + "name": "DOMPropertyOperations-test.js", + "base_name": "DOMPropertyOperations-test", + "extension": ".js", + "size": 14201, + "date": "2018-03-12", + "sha1": "a2a6a4e0baffe733f74eeffc1c71aa3356140421", + "md5": "d2e52435ba0b188ebbb1cce57da7dfde", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__/escapeTextContentForBrowser-test.js", + "type": "file", + "name": "escapeTextContentForBrowser-test.js", + "base_name": "escapeTextContentForBrowser-test", + "extension": ".js", + "size": 1355, + "date": "2018-03-12", + "sha1": "a815898a0032c2f4c20a08363252acee0f308ac1", + "md5": "8d525af8452abf0679522cd2cf77b902", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__/quoteAttributeValueForBrowser-test.js", + "type": "file", + "name": "quoteAttributeValueForBrowser-test.js", + "base_name": "quoteAttributeValueForBrowser-test", + "extension": ".js", + "size": 1397, + "date": "2018-03-12", + "sha1": "e54d3f84e52779ba2f6a9fea3a338f13ad2aff1b", + "md5": "f5b3add5908da33806f0a6a75ec5f14b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js", + "type": "file", + "name": "ReactDOMComponent-test.js", + "base_name": "ReactDOMComponent-test", + "extension": ".js", + "size": 54804, + "date": "2018-03-12", + "sha1": "69c309ef01ae7965cdc653b7b09283eefc2d1faf", + "md5": "3a9f95f39a57f2b68780b251ba62f1e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__/ReactDOMInvalidARIAHook-test.js", + "type": "file", + "name": "ReactDOMInvalidARIAHook-test.js", + "base_name": "ReactDOMInvalidARIAHook-test", + "extension": ".js", + "size": 2238, + "date": "2018-03-12", + "sha1": "3ef6a1237fb23cef6c28d103a126e05fa7b4fadf", + "md5": "36c8f5dcc36378cb77b63a6ba0ca48cf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/__tests__/ReactDOMTextComponent-test.js", + "type": "file", + "name": "ReactDOMTextComponent-test.js", + "base_name": "ReactDOMTextComponent-test", + "extension": ".js", + "size": 3730, + "date": "2018-03-12", + "sha1": "dc74ce5c6103711639e5418c103d6ffff143364c", + "md5": "6eb5cb6e7c8c2ec967b0fbf9fe1bb12a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/hooks", + "type": "directory", + "name": "hooks", + "base_name": "hooks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 8847, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/hooks/ReactDOMInvalidARIAHook.js", + "type": "file", + "name": "ReactDOMInvalidARIAHook.js", + "base_name": "ReactDOMInvalidARIAHook", + "extension": ".js", + "size": 3087, + "date": "2018-03-12", + "sha1": "ca8776700c942e58a7c109f9fd6a532bc221033a", + "md5": "d80323209b0cb3604a61404798a6631c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/hooks/ReactDOMNullInputValuePropHook.js", + "type": "file", + "name": "ReactDOMNullInputValuePropHook.js", + "base_name": "ReactDOMNullInputValuePropHook", + "extension": ".js", + "size": 1409, + "date": "2018-03-12", + "sha1": "542b2a3b37f0cf14e1d2992d68f88669f3e13eb1", + "md5": "0b911eb4c84762767204ea2ad57865ca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/dom/shared/hooks/ReactDOMUnknownPropertyHook.js", + "type": "file", + "name": "ReactDOMUnknownPropertyHook.js", + "base_name": "ReactDOMUnknownPropertyHook", + "extension": ".js", + "size": 4351, + "date": "2018-03-12", + "sha1": "8b09c0a9293d39161cae871726bdf83628b8d286", + "md5": "9f64ede34958b59001432a21583f3ecc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native", + "type": "directory", + "name": "native", + "base_name": "native", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 32, + "dirs_count": 4, + "size_count": 93302, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/createReactNativeComponentClass.js", + "type": "file", + "name": "createReactNativeComponentClass.js", + "base_name": "createReactNativeComponentClass", + "extension": ".js", + "size": 1413, + "date": "2018-03-12", + "sha1": "bd6ab5e11fb80da9186a59ec3d70b7b9aeb8464a", + "md5": "7d6cdcf2d7b7e972a3bc1c0613487e11", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/findNodeHandle.js", + "type": "file", + "name": "findNodeHandle.js", + "base_name": "findNodeHandle", + "extension": ".js", + "size": 3903, + "date": "2018-03-12", + "sha1": "384aa58cf12af4092464f886cb226a98cb5dc908", + "md5": "e6d43eb1db4138b8502e5922495c26c6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/NativeMethodsMixin.js", + "type": "file", + "name": "NativeMethodsMixin.js", + "base_name": "NativeMethodsMixin", + "extension": ".js", + "size": 6832, + "date": "2018-03-12", + "sha1": "451a9eaf04f044182b44d3803cd746416ed6e63f", + "md5": "688d732ae2f8feeba2dff1bd2a6035d2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNative.js", + "type": "file", + "name": "ReactNative.js", + "base_name": "ReactNative", + "extension": ".js", + "size": 2399, + "date": "2018-03-12", + "sha1": "db0ee9c861472601b83fb4a3a07ca52c3cc390f5", + "md5": "6658de421ed6931146bafa00a044a428", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeAttributePayload.js", + "type": "file", + "name": "ReactNativeAttributePayload.js", + "base_name": "ReactNativeAttributePayload", + "extension": ".js", + "size": 14653, + "date": "2018-03-12", + "sha1": "2e95491a3f675d7a51d2dea14fb9e4fdd5785567", + "md5": "9f07dc9d40938fed2739288b9aab7397", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeBaseComponent.js", + "type": "file", + "name": "ReactNativeBaseComponent.js", + "base_name": "ReactNativeBaseComponent", + "extension": ".js", + "size": 7177, + "date": "2018-03-12", + "sha1": "2b8a723395d3d0aae9c1cf9feabce55921ef3927", + "md5": "98f66c05cb60af9b97e912c892f6550f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeBridgeEventPlugin.js", + "type": "file", + "name": "ReactNativeBridgeEventPlugin.js", + "base_name": "ReactNativeBridgeEventPlugin", + "extension": ".js", + "size": 2055, + "date": "2018-03-12", + "sha1": "5f9cc73c89e8a934484c8666608dee6088ca7b3c", + "md5": "a44c01f96ed738108756624f92cf2ce5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeComponentEnvironment.js", + "type": "file", + "name": "ReactNativeComponentEnvironment.js", + "base_name": "ReactNativeComponentEnvironment", + "extension": ".js", + "size": 987, + "date": "2018-03-12", + "sha1": "b28052932665a651d0f9370a2d22e9c3de62164d", + "md5": "61a78e973b9378cfd8793adf1d5be151", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeComponentTree.js", + "type": "file", + "name": "ReactNativeComponentTree.js", + "base_name": "ReactNativeComponentTree", + "extension": ".js", + "size": 1702, + "date": "2018-03-12", + "sha1": "755fac75d0284a6c6272353da5edee0c6ef6bd63", + "md5": "af5e85a8697b817bb6c49a78d6347fd3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeContainerInfo.js", + "type": "file", + "name": "ReactNativeContainerInfo.js", + "base_name": "ReactNativeContainerInfo", + "extension": ".js", + "size": 525, + "date": "2018-03-12", + "sha1": "2fe2007eec9327344b2ce419bc79ee57c9ae02e7", + "md5": "ebc803df2e29e68cb7e70a1d3848ca90", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeDefaultInjection.js", + "type": "file", + "name": "ReactNativeDefaultInjection.js", + "base_name": "ReactNativeDefaultInjection", + "extension": ".js", + "size": 4066, + "date": "2018-03-12", + "sha1": "9edd08108b9ede8f7645a1cded7312f9b5ca952c", + "md5": "b5e8ce58673e4efefbbc630582d19a53", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeDOMIDOperations.js", + "type": "file", + "name": "ReactNativeDOMIDOperations.js", + "base_name": "ReactNativeDOMIDOperations", + "extension": ".js", + "size": 2809, + "date": "2018-03-12", + "sha1": "3eb5fad770cc587dbd17010811187e40ba71c42a", + "md5": "7b996d9f79eb9e9f6aecf22d5e461438", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeEventEmitter.js", + "type": "file", + "name": "ReactNativeEventEmitter.js", + "base_name": "ReactNativeEventEmitter", + "extension": ".js", + "size": 7170, + "date": "2018-03-12", + "sha1": "37773f3ad256950432c99d175258a816e60d1f9e", + "md5": "68089bce6e6497b42abb5eca4f5f51ae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeEventPluginOrder.js", + "type": "file", + "name": "ReactNativeEventPluginOrder.js", + "base_name": "ReactNativeEventPluginOrder", + "extension": ".js", + "size": 529, + "date": "2018-03-12", + "sha1": "c22b2c395426c023f4f19041a5500c3cea31ade3", + "md5": "c5b48880e5fa68875f3eb5be630b4155", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeGlobalResponderHandler.js", + "type": "file", + "name": "ReactNativeGlobalResponderHandler.js", + "base_name": "ReactNativeGlobalResponderHandler", + "extension": ".js", + "size": 725, + "date": "2018-03-12", + "sha1": "6351f60cb4fbdbbd8653b90a9c23f799db14d41b", + "md5": "2616d1a8efec5c1f8764dbba694bd53d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeMount.js", + "type": "file", + "name": "ReactNativeMount.js", + "base_name": "ReactNativeMount", + "extension": ".js", + "size": 7498, + "date": "2018-03-12", + "sha1": "0b7a881f32bbce494c21c47d89d30b3d1d049af0", + "md5": "bdd82a3c0c1d15c18d70a6d3696cac58", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativePropRegistry.js", + "type": "file", + "name": "ReactNativePropRegistry.js", + "base_name": "ReactNativePropRegistry", + "extension": ".js", + "size": 1069, + "date": "2018-03-12", + "sha1": "8874d587dd15ef44bdcc9f5bb0d835438ea37034", + "md5": "7de6cb5df0522f5ef0fc88178a722824", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeReconcileTransaction.js", + "type": "file", + "name": "ReactNativeReconcileTransaction.js", + "base_name": "ReactNativeReconcileTransaction", + "extension": ".js", + "size": 3548, + "date": "2018-03-12", + "sha1": "d45145e2dd046d20cae04d7f58f475a3a4a26542", + "md5": "53ce2cc5f54c2ec2e3c840a54f0df71e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeTagHandles.js", + "type": "file", + "name": "ReactNativeTagHandles.js", + "base_name": "ReactNativeTagHandles", + "extension": ".js", + "size": 1960, + "date": "2018-03-12", + "sha1": "0fee3ce3c31225a001f79da8f34d97d1fb80856c", + "md5": "adfb7312d20286de8fa3aca178334b83", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeTextComponent.js", + "type": "file", + "name": "ReactNativeTextComponent.js", + "base_name": "ReactNativeTextComponent", + "extension": ".js", + "size": 2233, + "date": "2018-03-12", + "sha1": "8d63cb4b03015a32b3c870006d87b8c479e56352", + "md5": "a3c2ae06f57431833e646f0eed56870b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNativeTreeTraversal.js", + "type": "file", + "name": "ReactNativeTreeTraversal.js", + "base_name": "ReactNativeTreeTraversal", + "extension": ".js", + "size": 2942, + "date": "2018-03-12", + "sha1": "09a08ea4043110f5aae8cfa569145da5ff8939cc", + "md5": "1fa4de10e227178b75f43a926eb3fb71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__mocks__", + "type": "directory", + "name": "__mocks__", + "base_name": "__mocks__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 5549, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__mocks__/deepDiffer.js", + "type": "file", + "name": "deepDiffer.js", + "base_name": "deepDiffer", + "extension": ".js", + "size": 1744, + "date": "2018-03-12", + "sha1": "5ac0da4fcb13021023e24d51e11fc31a2ff45fe5", + "md5": "c5658b482e509423c7a8dd2194362396", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__mocks__/deepFreezeAndThrowOnMutationInDev.js", + "type": "file", + "name": "deepFreezeAndThrowOnMutationInDev.js", + "base_name": "deepFreezeAndThrowOnMutationInDev", + "extension": ".js", + "size": 460, + "date": "2018-03-12", + "sha1": "a52eac558ee578e83451318e4f08907d0d6eec0f", + "md5": "9bf3ba2c42499da50503e1175b9a347c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__mocks__/flattenStyle.js", + "type": "file", + "name": "flattenStyle.js", + "base_name": "flattenStyle", + "extension": ".js", + "size": 423, + "date": "2018-03-12", + "sha1": "fb726c2ecde6a16251eb58df7a6b5936ce080c16", + "md5": "7e9881d96fe1ee6eb7c66164c8881b4c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__mocks__/InitializeJavaScriptAppEngine.js", + "type": "file", + "name": "InitializeJavaScriptAppEngine.js", + "base_name": "InitializeJavaScriptAppEngine", + "extension": ".js", + "size": 402, + "date": "2018-03-12", + "sha1": "89feef4b9f55b0b1eea63d64ad10f10fb8964a2d", + "md5": "c4a16aef2169fa5c872a05408aae668b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__mocks__/RCTEventEmitter.js", + "type": "file", + "name": "RCTEventEmitter.js", + "base_name": "RCTEventEmitter", + "extension": ".js", + "size": 403, + "date": "2018-03-12", + "sha1": "d73369495aa7d114ea66d08f7bfe8a7773d117af", + "md5": "fe541036920cad5024511b62958faf9c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__mocks__/TextInputState.js", + "type": "file", + "name": "TextInputState.js", + "base_name": "TextInputState", + "extension": ".js", + "size": 479, + "date": "2018-03-12", + "sha1": "b59362ac1eaab9e7a67996d157725639d7c98e31", + "md5": "56ba97a5ed5e86dfa355159a2e29f8e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__mocks__/UIManager.js", + "type": "file", + "name": "UIManager.js", + "base_name": "UIManager", + "extension": ".js", + "size": 1638, + "date": "2018-03-12", + "sha1": "97d0fb2d37dcac9ba2d10e244895aaeb0589b511", + "md5": "58d6f9b56315eef761993433d84d7301", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 11034, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__tests__/ReactNativeAttributePayload-test.js", + "type": "file", + "name": "ReactNativeAttributePayload-test.js", + "base_name": "ReactNativeAttributePayload-test", + "extension": ".js", + "size": 6602, + "date": "2018-03-12", + "sha1": "fd69900ceb5538f0b3b61d1600f476951a4c5fa2", + "md5": "212220b1736f226fc240e9ede260acf7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__tests__/ReactNativeEvents-test.js", + "type": "file", + "name": "ReactNativeEvents-test.js", + "base_name": "ReactNativeEvents-test", + "extension": ".js", + "size": 2522, + "date": "2018-03-12", + "sha1": "81eb528636cdf25731fd7b1e6b210a2f9a50fb74", + "md5": "12075929999f8427fa191a3759053bbd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/__tests__/ReactNativeMount-test.js", + "type": "file", + "name": "ReactNativeMount-test.js", + "base_name": "ReactNativeMount-test", + "extension": ".js", + "size": 1910, + "date": "2018-03-12", + "sha1": "7f8690750b6fca2ea2b25ff123ee9af9476dd553", + "md5": "62f09416e68a58a039a75f3686b12f38", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNative", + "type": "directory", + "name": "ReactNative", + "base_name": "ReactNative", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 524, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNative/__mocks__", + "type": "directory", + "name": "__mocks__", + "base_name": "__mocks__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 524, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/native/ReactNative/__mocks__/View.js", + "type": "file", + "name": "View.js", + "base_name": "View", + "extension": ".js", + "size": 524, + "date": "2018-03-12", + "sha1": "b3c70e042536349d423e43b4f822f62242d1f810", + "md5": "e162048b8c722aad229637b9ac591cba", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/noop", + "type": "directory", + "name": "noop", + "base_name": "noop", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 6591, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/noop/ReactNoop.js", + "type": "file", + "name": "ReactNoop.js", + "base_name": "ReactNoop", + "extension": ".js", + "size": 6591, + "date": "2018-03-12", + "sha1": "7e43c4c6448af7b2b606e3604a40428eb68eec22", + "md5": "0c6fb08a80d60992e032aeed5d7b916d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 93, + "dirs_count": 16, + "size_count": 745054, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/ReactDebugTool.js", + "type": "file", + "name": "ReactDebugTool.js", + "base_name": "ReactDebugTool", + "extension": ".js", + "size": 12395, + "date": "2018-03-12", + "sha1": "d4c8c492ad6ee7c3140ce6a49dcbb1808bed0ce9", + "md5": "b98b38d6354e1fd58374a2a209beaf6a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/ReactInstrumentation.js", + "type": "file", + "name": "ReactInstrumentation.js", + "base_name": "ReactInstrumentation", + "extension": ".js", + "size": 633, + "date": "2018-03-12", + "sha1": "64930ed031f52ef10029c91f0c469e7468786173", + "md5": "1c3fd44f0d224c696726a650c7ec1986", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/ReactPerf.js", + "type": "file", + "name": "ReactPerf.js", + "base_name": "ReactPerf", + "extension": ".js", + "size": 12263, + "date": "2018-03-12", + "sha1": "59c4217ae739d16064e33cb020747fe252256471", + "md5": "aedf8562c679b0e84f4e3eb13d4c6d2a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 21970, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/__tests__/ReactDebugTool-test.js", + "type": "file", + "name": "ReactDebugTool-test.js", + "base_name": "ReactDebugTool-test", + "extension": ".js", + "size": 2411, + "date": "2018-03-12", + "sha1": "b42394dbd0d9242b266fe86271723583a3b5677d", + "md5": "2458e2dc251d650c332d114d8a97e980", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/__tests__/ReactPerf-test.js", + "type": "file", + "name": "ReactPerf-test.js", + "base_name": "ReactPerf-test", + "extension": ".js", + "size": 19559, + "date": "2018-03-12", + "sha1": "8de606ae4108990a3ec91d4e033a9d4d44819615", + "md5": "44538f1282568b69412fffa08a30478c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber", + "type": "directory", + "name": "fiber", + "base_name": "fiber", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 17, + "dirs_count": 2, + "size_count": 104122, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactChildFiber.js", + "type": "file", + "name": "ReactChildFiber.js", + "base_name": "ReactChildFiber", + "extension": ".js", + "size": 9485, + "date": "2018-03-12", + "sha1": "f8932a26d18d248dfcfe197b1d1f3f7f7da58b64", + "md5": "31a1002dd4873f1686b543aba7a6b34e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactFiber.js", + "type": "file", + "name": "ReactFiber.js", + "base_name": "ReactFiber", + "extension": ".js", + "size": 9709, + "date": "2018-03-12", + "sha1": "f98ef59bfa36286cb699477a69d1051e843be24f", + "md5": "058357a91dbd5744a480dba7a461392e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactFiberBeginWork.js", + "type": "file", + "name": "ReactFiberBeginWork.js", + "base_name": "ReactFiberBeginWork", + "extension": ".js", + "size": 16249, + "date": "2018-03-12", + "sha1": "351f7c1365a3d7baf8ca61109e9611a73a39d829", + "md5": "9ea8d7335e02511f90746d2388457c11", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactFiberCommitWork.js", + "type": "file", + "name": "ReactFiberCommitWork.js", + "base_name": "ReactFiberCommitWork", + "extension": ".js", + "size": 2714, + "date": "2018-03-12", + "sha1": "abacac381213d944b0a9c03e0807f5f9565fc8a3", + "md5": "02d2a2ea72196e17e9ae2e36676a8e1b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactFiberCompleteWork.js", + "type": "file", + "name": "ReactFiberCompleteWork.js", + "base_name": "ReactFiberCompleteWork", + "extension": ".js", + "size": 8613, + "date": "2018-03-12", + "sha1": "f419ad974221ea7a39992ac0b4f8b103887b9881", + "md5": "fae121c6477499b7ccda33aae8d62be9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactFiberReconciler.js", + "type": "file", + "name": "ReactFiberReconciler.js", + "base_name": "ReactFiberReconciler", + "extension": ".js", + "size": 3713, + "date": "2018-03-12", + "sha1": "4df17a2002704fcb06a2a7ead5d3478fec1df280", + "md5": "124c692c9ebd7ea60ca41dc018689412", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactFiberRoot.js", + "type": "file", + "name": "ReactFiberRoot.js", + "base_name": "ReactFiberRoot", + "extension": ".js", + "size": 1280, + "date": "2018-03-12", + "sha1": "c9f55eebb0de705e0db4753f264cedc4649f2e9d", + "md5": "db562f077dec6c57510154746be6afc3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactFiberScheduler.js", + "type": "file", + "name": "ReactFiberScheduler.js", + "base_name": "ReactFiberScheduler", + "extension": ".js", + "size": 12260, + "date": "2018-03-12", + "sha1": "56278a52eb3f6eb92770c27f7b65b6490cab3361", + "md5": "68f9324d84facb8247c1beba6a862a12", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactFiberUpdateQueue.js", + "type": "file", + "name": "ReactFiberUpdateQueue.js", + "base_name": "ReactFiberUpdateQueue", + "extension": ".js", + "size": 2294, + "date": "2018-03-12", + "sha1": "259c66b9c9c4755022cafcdfff8d050cb8a6a112", + "md5": "4fe370d1d974b20b2c1989ff8bed92fd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactPriorityLevel.js", + "type": "file", + "name": "ReactPriorityLevel.js", + "base_name": "ReactPriorityLevel", + "extension": ".js", + "size": 877, + "date": "2018-03-12", + "sha1": "2a3e45dffa1394738c2c77d81f590cb834dc41c0", + "md5": "6375ef99d75eb61e57075ba25f2a4d5d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactReifiedYield.js", + "type": "file", + "name": "ReactReifiedYield.js", + "base_name": "ReactReifiedYield", + "extension": ".js", + "size": 1027, + "date": "2018-03-12", + "sha1": "f90263703f9db1865a9018d61f36a9638e9ae65d", + "md5": "ca9ecc945b1110eb67b41f9c512c1b53", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/ReactTypeOfWork.js", + "type": "file", + "name": "ReactTypeOfWork.js", + "base_name": "ReactTypeOfWork", + "extension": ".js", + "size": 750, + "date": "2018-03-12", + "sha1": "2864fe5007ad34b18596a8fe87c6b10d32fcdba4", + "md5": "04f83db40313acbd8f051391c5be0fa4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 31318, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/__tests__/ReactCoroutine-test.js", + "type": "file", + "name": "ReactCoroutine-test.js", + "base_name": "ReactCoroutine-test", + "extension": ".js", + "size": 2129, + "date": "2018-03-12", + "sha1": "b065060d2a00917f7ec460609e8c79cd42151b58", + "md5": "7ad812138322d36346930ed095c6b5db", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/__tests__/ReactIncremental-test.js", + "type": "file", + "name": "ReactIncremental-test.js", + "base_name": "ReactIncremental-test", + "extension": ".js", + "size": 19415, + "date": "2018-03-12", + "sha1": "b70e828f846f23802a376873c1f4fba64ea77b39", + "md5": "c4dbfe8b8379d4ad865e8d36322a5a74", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/__tests__/ReactIncrementalSideEffects-test.js", + "type": "file", + "name": "ReactIncrementalSideEffects-test.js", + "base_name": "ReactIncrementalSideEffects-test", + "extension": ".js", + "size": 9774, + "date": "2018-03-12", + "sha1": "0b512c81af24b103da9c964accf42628159b5376", + "md5": "1138236ae7a27b266c640000533fd227", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/isomorphic", + "type": "directory", + "name": "isomorphic", + "base_name": "isomorphic", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 3833, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/isomorphic/ReactCoroutine.js", + "type": "file", + "name": "ReactCoroutine.js", + "base_name": "ReactCoroutine", + "extension": ".js", + "size": 3085, + "date": "2018-03-12", + "sha1": "396e900dba9f3d20f437ec9c17dc225fed3bec8e", + "md5": "e33e8b0fe895753a52fd506457392bc3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/fiber/isomorphic/ReactTypes.js", + "type": "file", + "name": "ReactTypes.js", + "base_name": "ReactTypes", + "extension": ".js", + "size": 748, + "date": "2018-03-12", + "sha1": "d4d7edf28b5fc79cd4bd1a65cdca9fe257968a02", + "md5": "320bf8b7e60a98b0afb8ca8f0fe577e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/hooks", + "type": "directory", + "name": "hooks", + "base_name": "hooks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 128145, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/hooks/ReactHostOperationHistoryHook.js", + "type": "file", + "name": "ReactHostOperationHistoryHook.js", + "base_name": "ReactHostOperationHistoryHook", + "extension": ".js", + "size": 1410, + "date": "2018-03-12", + "sha1": "7dc6f2308d1344f525cfdc7b5d3785869483657f", + "md5": "8e357b7a6c5587ba1d9c98628bfc6781", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/hooks/ReactInvalidSetStateWarningHook.js", + "type": "file", + "name": "ReactInvalidSetStateWarningHook.js", + "base_name": "ReactInvalidSetStateWarningHook", + "extension": ".js", + "size": 957, + "date": "2018-03-12", + "sha1": "1d1af0cbf520712cdbfe35c32e98c8c0cb5db83e", + "md5": "bcf2fe09f1aad1bb566b42393d20d323", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/hooks/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 125778, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/hooks/__tests__/ReactComponentTreeHook-test.js", + "type": "file", + "name": "ReactComponentTreeHook-test.js", + "base_name": "ReactComponentTreeHook-test", + "extension": ".js", + "size": 53695, + "date": "2018-03-12", + "sha1": "d8a5173d121c8c74d8e5cb647714cce30546e27e", + "md5": "0fbf3c7dc397c31c21e5d7915d5b3f2e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/hooks/__tests__/ReactComponentTreeHook-test.native.js", + "type": "file", + "name": "ReactComponentTreeHook-test.native.js", + "base_name": "ReactComponentTreeHook-test.native", + "extension": ".js", + "size": 47666, + "date": "2018-03-12", + "sha1": "388bff49aea543a497be1e38f200fe682ad518b8", + "md5": "534c2635a400bb385519fb02f4674168", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/hooks/__tests__/ReactHostOperationHistoryHook-test.js", + "type": "file", + "name": "ReactHostOperationHistoryHook-test.js", + "base_name": "ReactHostOperationHistoryHook-test", + "extension": ".js", + "size": 24417, + "date": "2018-03-12", + "sha1": "f1d80f17669ff0d0d75d59b77f138c239800b025", + "md5": "b4f9a5c99f3ad14533bad158b293bd82", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2727, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/shared/ReactInstanceMap.js", + "type": "file", + "name": "ReactInstanceMap.js", + "base_name": "ReactInstanceMap", + "extension": ".js", + "size": 1252, + "date": "2018-03-12", + "sha1": "7b3e777291806c8c6b64b8da896b21ce858698ea", + "md5": "6ffa085211908a0be50caa4d8eb91332", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/shared/shouldUpdateReactComponent.js", + "type": "file", + "name": "shouldUpdateReactComponent.js", + "base_name": "shouldUpdateReactComponent", + "extension": ".js", + "size": 1475, + "date": "2018-03-12", + "sha1": "19e0e3a5f849d88b8647e82702864509411e4c9c", + "md5": "38a1f7b0541425d89b5f99f063643575", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack", + "type": "directory", + "name": "stack", + "base_name": "stack", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 52, + "dirs_count": 6, + "size_count": 429323, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event", + "type": "directory", + "name": "event", + "base_name": "event", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 15, + "dirs_count": 3, + "size_count": 138618, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/EventConstants.js", + "type": "file", + "name": "EventConstants.js", + "base_name": "EventConstants", + "extension": ".js", + "size": 2101, + "date": "2018-03-12", + "sha1": "deb1ef0dd3e58f79f89aa0db321b5abc746d102d", + "md5": "793802d90037ae2403a9ce21e6c484c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/EventPluginHub.js", + "type": "file", + "name": "EventPluginHub.js", + "base_name": "EventPluginHub", + "extension": ".js", + "size": 9136, + "date": "2018-03-12", + "sha1": "a650f687b57c6af81cfeb486738e451e9a896450", + "md5": "9ec66b2a89bc7220be4614d1f217d7b3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/EventPluginRegistry.js", + "type": "file", + "name": "EventPluginRegistry.js", + "base_name": "EventPluginRegistry", + "extension": ".js", + "size": 10054, + "date": "2018-03-12", + "sha1": "cb94522b5fcdcfc481cd15197861028dff217b8b", + "md5": "4732c9019af7e46e1fdd42918342d40c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/EventPluginUtils.js", + "type": "file", + "name": "EventPluginUtils.js", + "base_name": "EventPluginUtils", + "extension": ".js", + "size": 7703, + "date": "2018-03-12", + "sha1": "ad8d9fca97a67f27af2804f43c67cb9c1a29146a", + "md5": "d0e882c8c3315cdbe9751e71f6f71889", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/EventPropagators.js", + "type": "file", + "name": "EventPropagators.js", + "base_name": "EventPropagators", + "extension": ".js", + "size": 5246, + "date": "2018-03-12", + "sha1": "80e2cb4d6421b1f6a8204b212599ede707e9a4d2", + "md5": "cb6b88ac27aac74b45853cc774992daa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/PluginModuleType.js", + "type": "file", + "name": "PluginModuleType.js", + "base_name": "PluginModuleType", + "extension": ".js", + "size": 1153, + "date": "2018-03-12", + "sha1": "948dd72c4ede3d5752d1d22782124e76df612ff6", + "md5": "9365a8b8604c196a6413363baf4e648a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/ReactSyntheticEventType.js", + "type": "file", + "name": "ReactSyntheticEventType.js", + "base_name": "ReactSyntheticEventType", + "extension": ".js", + "size": 938, + "date": "2018-03-12", + "sha1": "7a60e0711329b850a220d1988e52e4c6e2a78637", + "md5": "f8f0407de8bd04bca71fb648d17a2844", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/SyntheticEvent.js", + "type": "file", + "name": "SyntheticEvent.js", + "base_name": "SyntheticEvent", + "extension": ".js", + "size": 9328, + "date": "2018-03-12", + "sha1": "a59ff600f465ad46ad8b97f628185c9884f99285", + "md5": "6b24b2ef2157636239dd096c7981ada9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 9095, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/__tests__/EventPluginHub-test.js", + "type": "file", + "name": "EventPluginHub-test.js", + "base_name": "EventPluginHub-test", + "extension": ".js", + "size": 928, + "date": "2018-03-12", + "sha1": "5fd08a4105fb9e026daf6fbe8c3315f004dda530", + "md5": "f4edc65ad1c9fe1fab97e1522db92db5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/__tests__/EventPluginRegistry-test.js", + "type": "file", + "name": "EventPluginRegistry-test.js", + "base_name": "EventPluginRegistry-test", + "extension": ".js", + "size": 8167, + "date": "2018-03-12", + "sha1": "b31e079b6140aa59472bb21f73d2bf9003cf2369", + "md5": "4b4efc8b24028b8c4f9322992a193bc5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/eventPlugins", + "type": "directory", + "name": "eventPlugins", + "base_name": "eventPlugins", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 83864, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/eventPlugins/ResponderEventPlugin.js", + "type": "file", + "name": "ResponderEventPlugin.js", + "base_name": "ResponderEventPlugin", + "extension": ".js", + "size": 24685, + "date": "2018-03-12", + "sha1": "24dc62e9481ce473f429804c32a579bb37503af2", + "md5": "ac4b9636287c98e0e18288232e77f09f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/eventPlugins/ResponderSyntheticEvent.js", + "type": "file", + "name": "ResponderSyntheticEvent.js", + "base_name": "ResponderSyntheticEvent", + "extension": ".js", + "size": 1371, + "date": "2018-03-12", + "sha1": "e0be744be4af48e51df54e6f657d93c863bd6b35", + "md5": "e60434bcfb69efccf072a9a868cc9476", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/eventPlugins/ResponderTouchHistoryStore.js", + "type": "file", + "name": "ResponderTouchHistoryStore.js", + "base_name": "ResponderTouchHistoryStore", + "extension": ".js", + "size": 7079, + "date": "2018-03-12", + "sha1": "949396da0ad219682598f660e3a65e36286e388e", + "md5": "2def9cd559e988c1a2bac494586e50c7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/eventPlugins/TouchHistoryMath.js", + "type": "file", + "name": "TouchHistoryMath.js", + "base_name": "TouchHistoryMath", + "extension": ".js", + "size": 4111, + "date": "2018-03-12", + "sha1": "d3dd3408fb70126d0fdb27eee14068a5d94ee476", + "md5": "d0accf090bc59251c2e748644c8d9a5f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/eventPlugins/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 46618, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/event/eventPlugins/__tests__/ResponderEventPlugin-test.js", + "type": "file", + "name": "ResponderEventPlugin-test.js", + "base_name": "ResponderEventPlugin-test", + "extension": ".js", + "size": 46618, + "date": "2018-03-12", + "sha1": "d9e78252ea70ac5a78d58b79855b1287874da9ef", + "md5": "be9e94e957bb8caa1ebc2673dc42d8fd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler", + "type": "directory", + "name": "reconciler", + "base_name": "reconciler", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 37, + "dirs_count": 1, + "size_count": 290705, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/getHostComponentFromComposite.js", + "type": "file", + "name": "getHostComponentFromComposite.js", + "base_name": "getHostComponentFromComposite", + "extension": ".js", + "size": 788, + "date": "2018-03-12", + "sha1": "1065a74b993426e602a8b67771f9cac7bb528f23", + "md5": "a29329e78ed6676c6b747698f63078cf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/instantiateReactComponent.js", + "type": "file", + "name": "instantiateReactComponent.js", + "base_name": "instantiateReactComponent", + "extension": ".js", + "size": 4806, + "date": "2018-03-12", + "sha1": "e9053da38c7ff15d99e13820d7253b22f6ff0e62", + "md5": "3399a894934b6fcfdb132f063fd976c1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactChildReconciler.js", + "type": "file", + "name": "ReactChildReconciler.js", + "base_name": "ReactChildReconciler", + "extension": ".js", + "size": 6305, + "date": "2018-03-12", + "sha1": "e9debfb9f4bdca9868282b4ff676f327e363acff", + "md5": "2a896868d2e875f51c071da454315548", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactComponentEnvironment.js", + "type": "file", + "name": "ReactComponentEnvironment.js", + "base_name": "ReactComponentEnvironment", + "extension": ".js", + "size": 1585, + "date": "2018-03-12", + "sha1": "a3e4df09b2025dac8d8b740c5339e01a5c3debc7", + "md5": "7265d1417b7f5c07bbb15927691fe2a9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactCompositeComponent.js", + "type": "file", + "name": "ReactCompositeComponent.js", + "base_name": "ReactCompositeComponent", + "extension": ".js", + "size": 35262, + "date": "2018-03-12", + "sha1": "d4378989697f0d3ecad361bee23ccbff05eca8a4", + "md5": "dd3c364e0a915187f62f686aadaf91d9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactDefaultBatchingStrategy.js", + "type": "file", + "name": "ReactDefaultBatchingStrategy.js", + "base_name": "ReactDefaultBatchingStrategy", + "extension": ".js", + "size": 1882, + "date": "2018-03-12", + "sha1": "6743af2515a8b26921c555688a913bba54523820", + "md5": "4358b2ec9dcd7102405c47f880eed24a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactEmptyComponent.js", + "type": "file", + "name": "ReactEmptyComponent.js", + "base_name": "ReactEmptyComponent", + "extension": ".js", + "size": 744, + "date": "2018-03-12", + "sha1": "f19d8e516364ee87b713914ee1448659ab5dfc5e", + "md5": "85f22d2b9ef1d9ab996e72f25c2f517e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactEventEmitterMixin.js", + "type": "file", + "name": "ReactEventEmitterMixin.js", + "base_name": "ReactEventEmitterMixin", + "extension": ".js", + "size": 1051, + "date": "2018-03-12", + "sha1": "e69be8ac78de34202aba85f2c9c13ccaf1384c85", + "md5": "746c6876c686a733f33d26d4320af14c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactHostComponent.js", + "type": "file", + "name": "ReactHostComponent.js", + "base_name": "ReactHostComponent", + "extension": ".js", + "size": 1873, + "date": "2018-03-12", + "sha1": "9c46774992f37c90421b8c48e6cb1e3705debf0a", + "md5": "cd65905724f9bf3afb5871400a8e9f9a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactInstanceType.js", + "type": "file", + "name": "ReactInstanceType.js", + "base_name": "ReactInstanceType", + "extension": ".js", + "size": 1044, + "date": "2018-03-12", + "sha1": "ed963d0a1170e2fce1ad15e9eafed1abcae114d2", + "md5": "0516a333d0c18c729479b6c3a938989a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactMultiChild.js", + "type": "file", + "name": "ReactMultiChild.js", + "base_name": "ReactMultiChild", + "extension": ".js", + "size": 15028, + "date": "2018-03-12", + "sha1": "83f55d778a5cd2287c825355c756da4914cece70", + "md5": "1bc6c42b8c4564a0aaaa6315bc081931", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactMultiChildUpdateTypes.js", + "type": "file", + "name": "ReactMultiChildUpdateTypes.js", + "base_name": "ReactMultiChildUpdateTypes", + "extension": ".js", + "size": 734, + "date": "2018-03-12", + "sha1": "ee6673407c0e477e9dae17d897ab21004591b10f", + "md5": "8dc003abd31c38a65b94d9325b81dd8e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactNodeTypes.js", + "type": "file", + "name": "ReactNodeTypes.js", + "base_name": "ReactNodeTypes", + "extension": ".js", + "size": 962, + "date": "2018-03-12", + "sha1": "b13ec90d26bef0e330736696ce979d64d23d0a00", + "md5": "ea152c06fb9e45dd2cf46d07f53d1b35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactOwner.js", + "type": "file", + "name": "ReactOwner.js", + "base_name": "ReactOwner", + "extension": ".js", + "size": 3673, + "date": "2018-03-12", + "sha1": "359eecdc16f432cf409621f028e45b63c097fcef", + "md5": "45d0009d88edf0ccc011fa5cf232dc65", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactReconciler.js", + "type": "file", + "name": "ReactReconciler.js", + "base_name": "ReactReconciler", + "extension": ".js", + "size": 6353, + "date": "2018-03-12", + "sha1": "d384a2995858ac386dcac7b68028bb919890ea63", + "md5": "34e1c0bb93dc599d5860564c368da014", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactRef.js", + "type": "file", + "name": "ReactRef.js", + "base_name": "ReactRef", + "extension": ".js", + "size": 2969, + "date": "2018-03-12", + "sha1": "1ab7a1db3e628f5484ee7ffc93165195e01000b7", + "md5": "9a569781196febae9bb4bbae0a0a3ecc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactSimpleEmptyComponent.js", + "type": "file", + "name": "ReactSimpleEmptyComponent.js", + "base_name": "ReactSimpleEmptyComponent", + "extension": ".js", + "size": 1302, + "date": "2018-03-12", + "sha1": "6c386f0333b69731bf2122f360ea021be192a7b5", + "md5": "2458df2f6f442d20100ed101db36c6de", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactUpdateQueue.js", + "type": "file", + "name": "ReactUpdateQueue.js", + "base_name": "ReactUpdateQueue", + "extension": ".js", + "size": 9209, + "date": "2018-03-12", + "sha1": "b8fb6f8ea7a7bcfea2f3f9cdd83c7c6f753a1286", + "md5": "d97b7afbf5295f4e0fa26112b762ca0d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/ReactUpdates.js", + "type": "file", + "name": "ReactUpdates.js", + "base_name": "ReactUpdates", + "extension": ".js", + "size": 9103, + "date": "2018-03-12", + "sha1": "d62fb326eb9f093981be3c7701f974e59d172731", + "md5": "67e0a94b3bda7471f694bd00120772c2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 0, + "size_count": 186032, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactChildReconciler-test.js", + "type": "file", + "name": "ReactChildReconciler-test.js", + "base_name": "ReactChildReconciler-test", + "extension": ".js", + "size": 2360, + "date": "2018-03-12", + "sha1": "61050d26d4e090c2518579948600111712604d2d", + "md5": "d748d43c0ad88b1921c9f5c505b761ee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactComponent-test.js", + "type": "file", + "name": "ReactComponent-test.js", + "base_name": "ReactComponent-test", + "extension": ".js", + "size": 10195, + "date": "2018-03-12", + "sha1": "7a3d7acecaf73d562da7acc92619ae0219cda47a", + "md5": "9f4880ee996d503d8fc46b280a24e7d6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactComponentLifeCycle-test.js", + "type": "file", + "name": "ReactComponentLifeCycle-test.js", + "base_name": "ReactComponentLifeCycle-test", + "extension": ".js", + "size": 17512, + "date": "2018-03-12", + "sha1": "25838979b84df244da0dc171c4639d8f658a884a", + "md5": "2d92c962bb3905d96a13bf7f067500a2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactCompositeComponent-test.js", + "type": "file", + "name": "ReactCompositeComponent-test.js", + "base_name": "ReactCompositeComponent-test", + "extension": ".js", + "size": 33810, + "date": "2018-03-12", + "sha1": "f6308459fac291f97f27419f37742c98f2478c83", + "md5": "fb52569620ceb617e52544c01121d29e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactCompositeComponentDOMMinimalism-test.js", + "type": "file", + "name": "ReactCompositeComponentDOMMinimalism-test.js", + "base_name": "ReactCompositeComponentDOMMinimalism-test", + "extension": ".js", + "size": 2863, + "date": "2018-03-12", + "sha1": "ed138bdde88743448b8ec13a320500cc51a0db03", + "md5": "98a3bb5329496010a3db7b28619ad0c8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactCompositeComponentNestedState-test.js", + "type": "file", + "name": "ReactCompositeComponentNestedState-test.js", + "base_name": "ReactCompositeComponentNestedState-test", + "extension": ".js", + "size": 3616, + "date": "2018-03-12", + "sha1": "9c1088b2b399b6ce65a94efc8b485cc9aa40fe27", + "md5": "8ff8845d3b56f7ad2c24f8b8f0e45cba", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactCompositeComponentState-test.js", + "type": "file", + "name": "ReactCompositeComponentState-test.js", + "base_name": "ReactCompositeComponentState-test", + "extension": ".js", + "size": 8494, + "date": "2018-03-12", + "sha1": "c13533292bbba26ae6392680461a5f6ea663d87e", + "md5": "c8c1af250a49608826dd3968f6d8a023", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactEmptyComponent-test.js", + "type": "file", + "name": "ReactEmptyComponent-test.js", + "base_name": "ReactEmptyComponent-test", + "extension": ".js", + "size": 8388, + "date": "2018-03-12", + "sha1": "ee024ca15e7a5298a501a0f6ae42b19a5b74738c", + "md5": "098734a7bf012731ef63624624c64e3e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactErrorBoundaries-test.js", + "type": "file", + "name": "ReactErrorBoundaries-test.js", + "base_name": "ReactErrorBoundaries-test", + "extension": ".js", + "size": 7612, + "date": "2018-03-12", + "sha1": "9e694785de89149f9ed295b0851d92997d34ca2a", + "md5": "23373a86a2a9f924059beb9790fb1370", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactIdentity-test.js", + "type": "file", + "name": "ReactIdentity-test.js", + "base_name": "ReactIdentity-test", + "extension": ".js", + "size": 6974, + "date": "2018-03-12", + "sha1": "7d5f1fe621418dd3f0c89f1bdec19cc2ccc6897f", + "md5": "2855c7a0b2a32d95fb73ad1b210f04f5", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactMockedComponent-test.js", + "type": "file", + "name": "ReactMockedComponent-test.js", + "base_name": "ReactMockedComponent-test", + "extension": ".js", + "size": 2763, + "date": "2018-03-12", + "sha1": "0c6379089bcc63c94239838c7c98955330e5089c", + "md5": "6a0b8b6737ce4c401286c540fc785cef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactMultiChild-test.js", + "type": "file", + "name": "ReactMultiChild-test.js", + "base_name": "ReactMultiChild-test", + "extension": ".js", + "size": 5755, + "date": "2018-03-12", + "sha1": "97b79355cd4e1973d77243f67936a4d7c0af73eb", + "md5": "cea5ab16d4d834ade3a2b5d34aa2e7c1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactMultiChildReconcile-test.js", + "type": "file", + "name": "ReactMultiChildReconcile-test.js", + "base_name": "ReactMultiChildReconcile-test", + "extension": ".js", + "size": 20784, + "date": "2018-03-12", + "sha1": "ab672630db98a992e5aa278ccddb3d10637ffd40", + "md5": "abcbe5fb3d4d31c3b30df4ceba2d4584", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactMultiChildText-test.js", + "type": "file", + "name": "ReactMultiChildText-test.js", + "base_name": "ReactMultiChildText-test", + "extension": ".js", + "size": 8205, + "date": "2018-03-12", + "sha1": "0e5cf5b2692578a10bc035de6ad90c52cfd94f9e", + "md5": "8b79e54409b62510ff13439b2e4eda62", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactStatelessComponent-test.js", + "type": "file", + "name": "ReactStatelessComponent-test.js", + "base_name": "ReactStatelessComponent-test", + "extension": ".js", + "size": 7676, + "date": "2018-03-12", + "sha1": "91ee7dbf8d17ea1fd888cf0716947b100f503c17", + "md5": "ef4213d34bf6cd692086db45fcb7c0cc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/ReactUpdates-test.js", + "type": "file", + "name": "ReactUpdates-test.js", + "base_name": "ReactUpdates-test", + "extension": ".js", + "size": 28021, + "date": "2018-03-12", + "sha1": "8fd3304bc88b94832d99dba7d6f2e33355c2d492", + "md5": "7b0646a23ff85eb2a6b18295f772a2df", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/refs-destruction-test.js", + "type": "file", + "name": "refs-destruction-test.js", + "base_name": "refs-destruction-test", + "extension": ".js", + "size": 3145, + "date": "2018-03-12", + "sha1": "54f76f242993bb2ff9e1add64be8a06a8978e72a", + "md5": "be18cbcd6f0f4111fbd780ea5d613792", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/stack/reconciler/__tests__/refs-test.js", + "type": "file", + "name": "refs-test.js", + "base_name": "refs-test", + "extension": ".js", + "size": 7859, + "date": "2018-03-12", + "sha1": "7d641d1627691d4e7d726b97b3ddc0ffd3f1e996", + "md5": "a1c7ecb59c8c12591efbf705fb0a402a", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils", + "type": "directory", + "name": "utils", + "base_name": "utils", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 1, + "size_count": 33476, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/accumulate.js", + "type": "file", + "name": "accumulate.js", + "base_name": "accumulate", + "extension": ".js", + "size": 1186, + "date": "2018-03-12", + "sha1": "b8b8de88bc63f7bb98f088b1ae6f1d6f33e91efe", + "md5": "22742112f04918b2790ac3ab1a739cef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/accumulateInto.js", + "type": "file", + "name": "accumulateInto.js", + "base_name": "accumulateInto", + "extension": ".js", + "size": 1655, + "date": "2018-03-12", + "sha1": "ec152718e72e922ae252a3f49099b187cca8c5d2", + "md5": "81188dce6093136220378a9929aa0430", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/adler32.js", + "type": "file", + "name": "adler32.js", + "base_name": "adler32", + "extension": ".js", + "size": 1274, + "date": "2018-03-12", + "sha1": "1549c979dc08036d8c085359d717de242111b4c1", + "md5": "f2e32771d0445380e00e1d92c0cb7281", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/CallbackQueue.js", + "type": "file", + "name": "CallbackQueue.js", + "base_name": "CallbackQueue", + "extension": ".js", + "size": 2649, + "date": "2018-03-12", + "sha1": "6eddb2de0a74603184321b2cc1889283bdffffd6", + "md5": "5825a8f7862d262b827f7277c1b75206", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/forEachAccumulated.js", + "type": "file", + "name": "forEachAccumulated.js", + "base_name": "forEachAccumulated", + "extension": ".js", + "size": 952, + "date": "2018-03-12", + "sha1": "fd55a201aa73056ac8c6245ecc5411d92da6bdc6", + "md5": "3f4727cc9e8fd1c0b3b4fe03a7946fbf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/isTextInputElement.js", + "type": "file", + "name": "isTextInputElement.js", + "base_name": "isTextInputElement", + "extension": ".js", + "size": 1141, + "date": "2018-03-12", + "sha1": "19f0e3572fa6297aadeaf2fb17475c943c9b0509", + "md5": "3cc52ffaa6c7a35901ab31217b56af2e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/ReactErrorUtils.js", + "type": "file", + "name": "ReactErrorUtils.js", + "base_name": "ReactErrorUtils", + "extension": ".js", + "size": 2324, + "date": "2018-03-12", + "sha1": "d89dcde2a48a488ed4d1cf9f4951d304117b5630", + "md5": "34d71a6f42415a680a48c4b654ed3e0c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/ReactFeatureFlags.js", + "type": "file", + "name": "ReactFeatureFlags.js", + "base_name": "ReactFeatureFlags", + "extension": ".js", + "size": 672, + "date": "2018-03-12", + "sha1": "b2a5a933bb7af761bae04f1eee8fa7c825d53f5b", + "md5": "264ebde1538f9fa45ebc2011ec48b586", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/Transaction.js", + "type": "file", + "name": "Transaction.js", + "base_name": "Transaction", + "extension": ".js", + "size": 9658, + "date": "2018-03-12", + "sha1": "f86b0394fc7b3317ed3bd1b559536ef5a653dbf0", + "md5": "4dcdbb04154e4714e844ee1c3deda6df", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 11965, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/__tests__/accumulateInto-test.js", + "type": "file", + "name": "accumulateInto-test.js", + "base_name": "accumulateInto-test", + "extension": ".js", + "size": 1338, + "date": "2018-03-12", + "sha1": "5f2df1a817c9470f9d6f7f67836768d458dc1dee", + "md5": "ba3543f62968538958593457679c758e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/__tests__/adler32-test.js", + "type": "file", + "name": "adler32-test.js", + "base_name": "adler32-test", + "extension": ".js", + "size": 1092, + "date": "2018-03-12", + "sha1": "fdd93da9b48ea1b3e99374bf8f63d4ec2e284324", + "md5": "3cd41cec72b128ed0c2dabc122cd2ceb", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/shared/utils/__tests__/Transaction-test.js", + "type": "file", + "name": "Transaction-test.js", + "base_name": "Transaction-test", + "extension": ".js", + "size": 9535, + "date": "2018-03-12", + "sha1": "06ad0711b6b561ee058b60b85b855f528708a7dd", + "md5": "655aa21cd9d85c00b4b0fcbaa7f3abb1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing", + "type": "directory", + "name": "testing", + "base_name": "testing", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 1, + "size_count": 29803, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing/ReactShallowRenderer.js", + "type": "file", + "name": "ReactShallowRenderer.js", + "base_name": "ReactShallowRenderer", + "extension": ".js", + "size": 4623, + "date": "2018-03-12", + "sha1": "a995049e9cf8f43f8af5ffe77c8c4114dfa5e4e4", + "md5": "dc507ac0eb1221038526b107a9050b03", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing/ReactTestEmptyComponent.js", + "type": "file", + "name": "ReactTestEmptyComponent.js", + "base_name": "ReactTestEmptyComponent", + "extension": ".js", + "size": 667, + "date": "2018-03-12", + "sha1": "74284b3988d6b8e2416c849e56c96c981922cf23", + "md5": "4dc02e593c0679a1bd0a587ad0f87903", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing/ReactTestMount.js", + "type": "file", + "name": "ReactTestMount.js", + "base_name": "ReactTestMount", + "extension": ".js", + "size": 4912, + "date": "2018-03-12", + "sha1": "6eca7fc0b2ba5dc02280d603dc75c22b0d1d35fd", + "md5": "d0c64f9dc6abee7d2934be2bd0800eb4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing/ReactTestReconcileTransaction.js", + "type": "file", + "name": "ReactTestReconcileTransaction.js", + "base_name": "ReactTestReconcileTransaction", + "extension": ".js", + "size": 3569, + "date": "2018-03-12", + "sha1": "78c793dc1e258242bc78e9a722d8ca030eb69716", + "md5": "1a0bc67415f2ac375911fc6e7f697cdb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing/ReactTestRenderer.js", + "type": "file", + "name": "ReactTestRenderer.js", + "base_name": "ReactTestRenderer", + "extension": ".js", + "size": 5034, + "date": "2018-03-12", + "sha1": "6236d85ca44223278bceec33f7f158697dbd97cc", + "md5": "b8f60f49fa70c40c3129359d634f470a", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing/ReactTestTextComponent.js", + "type": "file", + "name": "ReactTestTextComponent.js", + "base_name": "ReactTestTextComponent", + "extension": ".js", + "size": 837, + "date": "2018-03-12", + "sha1": "f7faee68f4efc9bb0271131ca88c4cb3fc7a8ed8", + "md5": "d64c4cd25750aefdfa92576299ac4a2d", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 10161, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/renderers/testing/__tests__/ReactTestRenderer-test.js", + "type": "file", + "name": "ReactTestRenderer-test.js", + "base_name": "ReactTestRenderer-test", + "extension": ".js", + "size": 10161, + "date": "2018-03-12", + "sha1": "d4bc9d681580f68bf52811565ec5aba22d5f0bd1", + "md5": "52ec4310a5ac9fb05c82a8d97de803e0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 19, + "dirs_count": 5, + "size_count": 282917, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/types", + "type": "directory", + "name": "types", + "base_name": "types", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 6010, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/types/checkReactTypeSpec.js", + "type": "file", + "name": "checkReactTypeSpec.js", + "base_name": "checkReactTypeSpec", + "extension": ".js", + "size": 4337, + "date": "2018-03-12", + "sha1": "0b25f7c600d5b860916cdec45b7e37e75a07ddeb", + "md5": "877fb2703a1eba3f2a9f02c966a815cc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/types/ReactPropTypeLocationNames.js", + "type": "file", + "name": "ReactPropTypeLocationNames.js", + "base_name": "ReactPropTypeLocationNames", + "extension": ".js", + "size": 734, + "date": "2018-03-12", + "sha1": "ac9c1e2ffd7e8dd1efe5ab11386365783b29c5bd", + "md5": "a72f3d2735aab851e0111796951e8a83", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/types/ReactPropTypeLocations.js", + "type": "file", + "name": "ReactPropTypeLocations.js", + "base_name": "ReactPropTypeLocations", + "extension": ".js", + "size": 449, + "date": "2018-03-12", + "sha1": "c16a76a48a49ec1aa0b7da99fc4230f2a43719e3", + "md5": "a423fa41451fa46afa08b1fc9945687d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/types/ReactPropTypesSecret.js", + "type": "file", + "name": "ReactPropTypesSecret.js", + "base_name": "ReactPropTypesSecret", + "extension": ".js", + "size": 490, + "date": "2018-03-12", + "sha1": "d7e2876515995b76cd45a8d6284fa3dedeb7903a", + "md5": "8c33a5ea230966cc6b6decbb04d7bf90", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils", + "type": "directory", + "name": "utils", + "base_name": "utils", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 14, + "dirs_count": 1, + "size_count": 44565, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/canDefineProperty.js", + "type": "file", + "name": "canDefineProperty.js", + "base_name": "canDefineProperty", + "extension": ".js", + "size": 671, + "date": "2018-03-12", + "sha1": "655115f51179e85bc65299fa4e3a735c01e8175a", + "md5": "065a09a2beac812df103269d5eb2f6d2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/deprecated.js", + "type": "file", + "name": "deprecated.js", + "base_name": "deprecated", + "extension": ".js", + "size": 2147, + "date": "2018-03-12", + "sha1": "6a5851551f0244792c114e9056d031f75e384907", + "md5": "4d5c3540ead685ce31db99a0af0b5454", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/flattenChildren.js", + "type": "file", + "name": "flattenChildren.js", + "base_name": "flattenChildren", + "extension": ".js", + "size": 2948, + "date": "2018-03-12", + "sha1": "28db2bd203f4a9cc9a99287c0f042ea20906190a", + "md5": "7ea5de137b7af837c986de1c4ab18b71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/getIteratorFn.js", + "type": "file", + "name": "getIteratorFn.js", + "base_name": "getIteratorFn", + "extension": ".js", + "size": 1212, + "date": "2018-03-12", + "sha1": "573b7c4ce72120367038388a5c4cf0779736e1e7", + "md5": "8546316b5b027ac048512a70560d1f85", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/KeyEscapeUtils.js", + "type": "file", + "name": "KeyEscapeUtils.js", + "base_name": "KeyEscapeUtils", + "extension": ".js", + "size": 1374, + "date": "2018-03-12", + "sha1": "84a4d35b698ab82ed2d404cfde587df600554198", + "md5": "d1179361df52600398025bc16a671d0d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/lowPriorityWarning.js", + "type": "file", + "name": "lowPriorityWarning.js", + "base_name": "lowPriorityWarning", + "extension": ".js", + "size": 1835, + "date": "2018-03-12", + "sha1": "b2ffb95f29a394ccf842aaa6cacbf244f13189a4", + "md5": "c084898c214a6651a6f38d43e9817ce8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-2015, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/PooledClass.js", + "type": "file", + "name": "PooledClass.js", + "base_name": "PooledClass", + "extension": ".js", + "size": 3437, + "date": "2018-03-12", + "sha1": "96f96dc41a86ca2011ad2d436132c3fc1245090c", + "md5": "4bcfeac7eb147dd05223ccbf1e14d90a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/ReactElementSymbol.js", + "type": "file", + "name": "ReactElementSymbol.js", + "base_name": "ReactElementSymbol", + "extension": ".js", + "size": 665, + "date": "2018-03-12", + "sha1": "e6d60707cd89706048e7f7dcf0247d67fcb00759", + "md5": "615e473e2e460086774c4ca18164e94d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/reactProdInvariant.js", + "type": "file", + "name": "reactProdInvariant.js", + "base_name": "reactProdInvariant", + "extension": ".js", + "size": 1353, + "date": "2018-03-12", + "sha1": "81a6fab7ad9cf3f5fe18cc2092eb6fe3022deb99", + "md5": "b0b7f139b0170c74b5aec7a2334349d0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/traverseAllChildren.js", + "type": "file", + "name": "traverseAllChildren.js", + "base_name": "traverseAllChildren", + "extension": ".js", + "size": 7199, + "date": "2018-03-12", + "sha1": "b57e344c999a024ca3cedf8dfb1326295e6e4c0d", + "md5": "606fa9cdbbc65c1049c95e2846430068", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 21724, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/__tests__/KeyEscapeUtils-test.js", + "type": "file", + "name": "KeyEscapeUtils-test.js", + "base_name": "KeyEscapeUtils-test", + "extension": ".js", + "size": 1099, + "date": "2018-03-12", + "sha1": "1c6a1b8ef6d48fc8301c8e6e78239ce52023b88a", + "md5": "7e802d5601814a0982e1c20383134d8c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/__tests__/PooledClass-test.js", + "type": "file", + "name": "PooledClass-test.js", + "base_name": "PooledClass-test", + "extension": ".js", + "size": 4003, + "date": "2018-03-12", + "sha1": "205da4c488df91857087558f973ae59056273451", + "md5": "58138c8d8eef5e06a5cc1573957144e8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/__tests__/reactProdInvariant-test.js", + "type": "file", + "name": "reactProdInvariant-test.js", + "base_name": "reactProdInvariant-test", + "extension": ".js", + "size": 1724, + "date": "2018-03-12", + "sha1": "2cbbf55281da186a8c8348a4aae59c87799ccd5d", + "md5": "ff26ef690c78a3eb565eac20418c7b85", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/utils/__tests__/traverseAllChildren-test.js", + "type": "file", + "name": "traverseAllChildren-test.js", + "base_name": "traverseAllChildren-test", + "extension": ".js", + "size": 14898, + "date": "2018-03-12", + "sha1": "c8df55a88eaa877e90b72dc292601bf6dc2f14dd", + "md5": "f9a1b1b3d6159c831bd14341efdbbb5b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/vendor", + "type": "directory", + "name": "vendor", + "base_name": "vendor", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 232342, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/vendor/third_party", + "type": "directory", + "name": "third_party", + "base_name": "third_party", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 232342, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/shared/vendor/third_party/webcomponents.js", + "type": "file", + "name": "webcomponents.js", + "base_name": "webcomponents", + "extension": ".js", + "size": 232342, + "date": "2018-03-12", + "sha1": "9b1a92864422049e2c99432624948a341a8a8695", + "md5": "cfcc5d24ca194c8cd60dd89eae4c167d", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 15.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 4, + "matched_rule": { + "identifier": "bsd-new_168.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014 The Polymer Project" + ], + "holders": [ + "The Polymer Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/test", + "type": "directory", + "name": "test", + "base_name": "test", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 45170, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/test/getTestDocument.js", + "type": "file", + "name": "getTestDocument.js", + "base_name": "getTestDocument", + "extension": ".js", + "size": 600, + "date": "2018-03-12", + "sha1": "5f1a9bf4f45b53becb72559faeee2049697634ee", + "md5": "137133a9cf95052039c0102ef1b3781e", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/test/reactComponentExpect.js", + "type": "file", + "name": "reactComponentExpect.js", + "base_name": "reactComponentExpect", + "extension": ".js", + "size": 6927, + "date": "2018-03-12", + "sha1": "6ce91f11142213e484618c56cb1cd98084a4451b", + "md5": "d808c500d0b992ec2b1321bcec6f0015", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/test/ReactComponentTreeTestUtils.js", + "type": "file", + "name": "ReactComponentTreeTestUtils.js", + "base_name": "ReactComponentTreeTestUtils", + "extension": ".js", + "size": 3136, + "date": "2018-03-12", + "sha1": "153f355f7d9852940dc4640cc4b032a872946080", + "md5": "2661da175fef69aeb2c97c991721319c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/test/ReactTestUtils.js", + "type": "file", + "name": "ReactTestUtils.js", + "base_name": "ReactTestUtils", + "extension": ".js", + "size": 16586, + "date": "2018-03-12", + "sha1": "c80b6382a7b1169b970c7289f11877a3501b98b9", + "md5": "581b531cd76fd792fd7ca17579f110eb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/test/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 17921, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/test/__tests__/reactComponentExpect-test.js", + "type": "file", + "name": "reactComponentExpect-test.js", + "base_name": "reactComponentExpect-test", + "extension": ".js", + "size": 1099, + "date": "2018-03-12", + "sha1": "e6f5c3e40e999877c4c6ae1bbd084e018656538c", + "md5": "19423de6f8ced95b85a4ca13c968afb9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/test/__tests__/ReactTestUtils-test.js", + "type": "file", + "name": "ReactTestUtils-test.js", + "base_name": "ReactTestUtils-test", + "extension": ".js", + "size": 16822, + "date": "2018-03-12", + "sha1": "a33264b663747a8759cc36a34fe48d8c4e8ae9a0", + "md5": "06612a7e613938a99e238e3c057313cd", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd", + "type": "directory", + "name": "umd", + "base_name": "umd", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 1, + "size_count": 6679, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/ReactDOMServerUMDEntry.js", + "type": "file", + "name": "ReactDOMServerUMDEntry.js", + "base_name": "ReactDOMServerUMDEntry", + "extension": ".js", + "size": 448, + "date": "2018-03-12", + "sha1": "609735117bccfe34bd10c9633ad15ff3a401e5ca", + "md5": "6270c279f1bc5ae496253ed4efe89e23", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/ReactDOMUMDEntry.js", + "type": "file", + "name": "ReactDOMUMDEntry.js", + "base_name": "ReactDOMUMDEntry", + "extension": ".js", + "size": 1097, + "date": "2018-03-12", + "sha1": "f5740cfa50274917fe138f749435f613910572ed", + "md5": "f202872cb04dbe43e5ddbd4a7387abc4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/ReactUMDEntry.js", + "type": "file", + "name": "ReactUMDEntry.js", + "base_name": "ReactUMDEntry", + "extension": ".js", + "size": 942, + "date": "2018-03-12", + "sha1": "238bfc51d1ee1b9a11c731707f4402e1ceedc412", + "md5": "77f1500c13175d5576fde6cd7ea91221", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/ReactWithAddonsUMDEntry.js", + "type": "file", + "name": "ReactWithAddonsUMDEntry.js", + "base_name": "ReactWithAddonsUMDEntry", + "extension": ".js", + "size": 1124, + "date": "2018-03-12", + "sha1": "c40f35cdd0b5cf55d6ae720208ed3b2fe2ac5cfb", + "md5": "4bb67a0daf820557208a3a3a120067c4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/shims", + "type": "directory", + "name": "shims", + "base_name": "shims", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 3068, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/shims/getNextDebugIDUMDShim.js", + "type": "file", + "name": "getNextDebugIDUMDShim.js", + "base_name": "getNextDebugIDUMDShim", + "extension": ".js", + "size": 507, + "date": "2018-03-12", + "sha1": "235ff5169f05c29f9d823dfb5438639ac9874dbf", + "md5": "13224f04233942ff3e39c9e4994b638f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/shims/ReactAddonsDOMDependenciesUMDShim.js", + "type": "file", + "name": "ReactAddonsDOMDependenciesUMDShim.js", + "base_name": "ReactAddonsDOMDependenciesUMDShim", + "extension": ".js", + "size": 1110, + "date": "2018-03-12", + "sha1": "a28187585e278fdccbba8d11b99bd607a89598d0", + "md5": "6a82deb0de320b623fbcb7f068e8e90e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/shims/ReactComponentTreeHookUMDShim.js", + "type": "file", + "name": "ReactComponentTreeHookUMDShim.js", + "base_name": "ReactComponentTreeHookUMDShim", + "extension": ".js", + "size": 530, + "date": "2018-03-12", + "sha1": "383ec90bd54b80ff5dc9f24d5f5a981e7fcbecea", + "md5": "e380bc325e71e8b9d5bae420fc1a7ecf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/shims/ReactCurrentOwnerUMDShim.js", + "type": "file", + "name": "ReactCurrentOwnerUMDShim.js", + "base_name": "ReactCurrentOwnerUMDShim", + "extension": ".js", + "size": 520, + "date": "2018-03-12", + "sha1": "dac658a49fdc907c2c592e35c65be54e6a02d659", + "md5": "a3b44215850076fb569266ae3694a4c3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-15.6.1/react-15.6.1/src/umd/shims/ReactUMDShim.js", + "type": "file", + "name": "ReactUMDShim.js", + "base_name": "ReactUMDShim", + "extension": ".js", + "size": 401, + "date": "2018-03-12", + "sha1": "6e22fc55e69b65f9a947f65b76e6404f39e52818", + "md5": "bae5cf489edbc1894f45ad88415becf7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 100.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + }, + { + "key": "facebook-patent-rights-2", + "score": 100.0, + "short_name": "Facebook Patent Rights 2", + "category": "Permissive", + "owner": "Facebook", + "homepage_url": "https://code.facebook.com/", + "text_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:facebook-patent-rights-2", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 5, + "end_line": 7, + "matched_rule": { + "identifier": "bsd-new_and_facebook-patent-rights-2_1.RULE", + "license_choice": false, + "licenses": [ + "bsd-new", + "facebook-patent-rights-2" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/react-16.0.0.json b/tests/data/deltacode/react-16.0.0.json new file mode 100644 index 00000000..4abe4b4a --- /dev/null +++ b/tests/data/deltacode/react-16.0.0.json @@ -0,0 +1,66201 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post20.e447b94db", + "scancode_options": { + "input": "C:\\Users\\JMH\\Downloads\\facebook\\react-16.0.0", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\react-16.0.0.json", + "--license": true, + "--package": true + }, + "files_count": 1206, + "files": [ + { + "path": "react-16.0.0", + "type": "directory", + "name": "react-16.0.0", + "base_name": "react-16.0.0", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1206, + "dirs_count": 210, + "size_count": 60281345, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0", + "type": "directory", + "name": "react-16.0.0", + "base_name": "react-16.0.0", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1206, + "dirs_count": 209, + "size_count": 60281345, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.babelrc", + "type": "file", + "name": ".babelrc", + "base_name": ".babelrc", + "extension": "", + "size": 922, + "date": "2018-03-12", + "sha1": "4e995e42a36148ea85112e00f06404198b6b1006", + "md5": "9837042e3d2b61ad0de212bfa2c0b269", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.editorconfig", + "type": "file", + "name": ".editorconfig", + "base_name": ".editorconfig", + "extension": "", + "size": 293, + "date": "2018-03-12", + "sha1": "fd8706bf84d9fafc61efba1ae990e6a6409b6b11", + "md5": "b2566240972f013baf8b5d17bafeb8e0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.eslintignore", + "type": "file", + "name": ".eslintignore", + "base_name": ".eslintignore", + "extension": "", + "size": 481, + "date": "2018-03-12", + "sha1": "73d2b5500686530fcd07347b54c1125ec71100fb", + "md5": "44773612f3533bd7136f4ffdb8c40415", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.eslintrc.js", + "type": "file", + "name": ".eslintrc.js", + "base_name": ".eslintrc", + "extension": ".js", + "size": 1945, + "date": "2018-03-12", + "sha1": "d35d3642e2e119a172e25a5aa5d1debd170817db", + "md5": "1a83c403132361c2ea9e8137fe80e178", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.flowconfig", + "type": "file", + "name": ".flowconfig", + "base_name": ".flowconfig", + "extension": "", + "size": 1174, + "date": "2018-03-12", + "sha1": "5222330d680b123a66440fdd3f9dd5b36404e16f", + "md5": "43de84111a048d2e28a5d1fd07ef12de", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "INI", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.mailmap", + "type": "file", + "name": ".mailmap", + "base_name": ".mailmap", + "extension": "", + "size": 7637, + "date": "2018-03-12", + "sha1": "d030dd9af762c5d8db071fbc7723bcd589ddff12", + "md5": "8c34ea2e3e7a97c9592259753f8cfa2c", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/AUTHORS", + "type": "file", + "name": "AUTHORS", + "base_name": "AUTHORS", + "extension": "", + "size": 25743, + "date": "2018-03-12", + "sha1": "bb19b45f6289f54b2f8df3a058c2142fcac931bd", + "md5": "bfa4e71bbc9ddfbd0b9a178f426bf1da", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/CHANGELOG.md", + "type": "file", + "name": "CHANGELOG.md", + "base_name": "CHANGELOG", + "extension": ".md", + "size": 100108, + "date": "2018-03-12", + "sha1": "d3348f00bcf7d7264dfc91b1b86fc00b73ba1ba5", + "md5": "7c9790d8dbe5870aa05d2ea9b05b943e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 59, + "end_line": 59, + "matched_rule": { + "identifier": "mit_14.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "bsd-new", + "score": 10.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 838, + "end_line": 838, + "matched_rule": { + "identifier": "bsd-new_169.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "ES2015 (ES6) Symbol (http://www.2ality.com/2014/12/es6-symbols.html)" + ], + "start_line": 624, + "end_line": 627 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/circle.yml", + "type": "file", + "name": "circle.yml", + "base_name": "circle", + "extension": ".yml", + "size": 1195, + "date": "2018-03-12", + "sha1": "8f16c74747efd1bb70b76b56eef91b638a7cecad", + "md5": "48ebeb38218ab735521e05dacfd29a5d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/CONTRIBUTING.md", + "type": "file", + "name": "CONTRIBUTING.md", + "base_name": "CONTRIBUTING", + "extension": ".md", + "size": 229, + "date": "2018-03-12", + "sha1": "29a10e969195e2951bfd629895c28426c3f15c3f", + "md5": "951f5e8cc19b9ad87b663e9f73eee784", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/LICENSE", + "type": "file", + "name": "LICENSE", + "base_name": "LICENSE", + "extension": "", + "size": 1080, + "date": "2018-03-12", + "sha1": "87b0e4891924461043a2c240ea5ff70e761e04a1", + "md5": "94f0d486b3ba1dd568004dc5cccd32bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 1, + "end_line": 1, + "matched_rule": { + "identifier": "mit_14.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 5, + "end_line": 21, + "matched_rule": { + "identifier": "mit.LICENSE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 3, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/LICENSE-docs", + "type": "file", + "name": "LICENSE-docs", + "base_name": "LICENSE-docs", + "extension": "", + "size": 18523, + "date": "2018-03-12", + "sha1": "e0599abcf2d5da6fb2c49494fb8ea75c00febfc3", + "md5": "f08cb95950e0afa533e7106e234d2cb8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "cc-by-4.0", + "score": 100.0, + "short_name": "CC-BY-4.0", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/4.0/", + "text_url": "http://creativecommons.org/licenses/by/4.0/legalcode", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-4.0", + "spdx_license_key": "CC-BY-4.0", + "spdx_url": "https://spdx.org/licenses/CC-BY-4.0", + "start_line": 1, + "end_line": 393, + "matched_rule": { + "identifier": "cc-by-4.0.RULE", + "license_choice": false, + "licenses": [ + "cc-by-4.0" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/LICENSE-examples", + "type": "file", + "name": "LICENSE-examples", + "base_name": "LICENSE-examples", + "extension": "", + "size": 585, + "date": "2018-03-12", + "sha1": "015f75895b07a770c1b4d7f95885f529e3df8602", + "md5": "ad32c5caeaf9e5e53ede9de0f54c1551", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "lumisoft-mail-server", + "score": 55.81, + "short_name": "LumiSoft Mail Server License", + "category": "Proprietary Free", + "owner": "LumiSoft", + "homepage_url": "http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=info", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lumisoft-mail-server", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 1, + "end_line": 9, + "matched_rule": { + "identifier": "lumisoft-mail-server.LICENSE", + "license_choice": false, + "licenses": [ + "lumisoft-mail-server" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 4301, + "date": "2018-03-12", + "sha1": "14c8070ceec09cc9b58ea3050fc0bbebb01c26d8", + "md5": "283b897ee45087dd76502ca940f02071", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-build", + "version": "16.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-build/-/react-build-16.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "art", + "version": null, + "version_constraint": "^0.10.1" + }, + { + "name": "async", + "version": null, + "version_constraint": "^1.5.0" + }, + { + "name": "babel-cli", + "version": null, + "version_constraint": "^6.6.5" + }, + { + "name": "babel-core", + "version": null, + "version_constraint": "^6.0.0" + }, + { + "name": "babel-eslint", + "version": null, + "version_constraint": "^7.1.0" + }, + { + "name": "babel-jest", + "version": null, + "version_constraint": "20.1.0-delta.1" + }, + { + "name": "babel-plugin-check-es2015-constants", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-external-helpers", + "version": null, + "version_constraint": "^6.22.0" + }, + { + "name": "babel-plugin-syntax-trailing-function-commas", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-async-to-generator", + "version": null, + "version_constraint": "^6.22.0" + }, + { + "name": "babel-plugin-transform-class-properties", + "version": null, + "version_constraint": "^6.11.5" + }, + { + "name": "babel-plugin-transform-es2015-arrow-functions", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-block-scoped-functions", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-block-scoping", + "version": null, + "version_constraint": "^6.23.0" + }, + { + "name": "babel-plugin-transform-es2015-classes", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-computed-properties", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-destructuring", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-for-of", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-literals", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-modules-commonjs", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-object-super", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-parameters", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-shorthand-properties", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es2015-spread", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es2015-template-literals", + "version": null, + "version_constraint": "^6.5.2" + }, + { + "name": "babel-plugin-transform-es3-member-expression-literals", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-es3-property-literals", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-plugin-transform-object-rest-spread", + "version": null, + "version_constraint": "^6.6.5" + }, + { + "name": "babel-plugin-transform-react-jsx-source", + "version": null, + "version_constraint": "^6.8.0" + }, + { + "name": "babel-preset-react", + "version": null, + "version_constraint": "^6.5.0" + }, + { + "name": "babel-traverse", + "version": null, + "version_constraint": "^6.9.0" + }, + { + "name": "babylon", + "version": null, + "version_constraint": "6.15.0" + }, + { + "name": "bundle-collapser", + "version": null, + "version_constraint": "^1.1.1" + }, + { + "name": "chalk", + "version": null, + "version_constraint": "^1.1.3" + }, + { + "name": "cli-table", + "version": null, + "version_constraint": "^0.3.1" + }, + { + "name": "coffee-script", + "version": null, + "version_constraint": "^1.8.0" + }, + { + "name": "core-js", + "version": null, + "version_constraint": "^2.2.1" + }, + { + "name": "coveralls", + "version": null, + "version_constraint": "^2.11.6" + }, + { + "name": "create-react-class", + "version": null, + "version_constraint": "^15.6.2" + }, + { + "name": "del", + "version": null, + "version_constraint": "^2.0.2" + }, + { + "name": "derequire", + "version": null, + "version_constraint": "^2.0.3" + }, + { + "name": "escape-string-regexp", + "version": null, + "version_constraint": "^1.0.5" + }, + { + "name": "eslint", + "version": null, + "version_constraint": "^3.10.2" + }, + { + "name": "eslint-config-fbjs", + "version": null, + "version_constraint": "^1.1.1" + }, + { + "name": "eslint-plugin-babel", + "version": null, + "version_constraint": "^3.3.0" + }, + { + "name": "eslint-plugin-flowtype", + "version": null, + "version_constraint": "^2.25.0" + }, + { + "name": "eslint-plugin-react", + "version": null, + "version_constraint": "^6.7.1" + }, + { + "name": "eslint-plugin-react-internal", + "version": null, + "version_constraint": "file:./eslint-rules" + }, + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.16" + }, + { + "name": "fbjs-scripts", + "version": null, + "version_constraint": "^0.6.0" + }, + { + "name": "filesize", + "version": null, + "version_constraint": "^3.5.6" + }, + { + "name": "flow-bin", + "version": null, + "version_constraint": "^0.53.1" + }, + { + "name": "git-branch", + "version": null, + "version_constraint": "^0.3.0" + }, + { + "name": "glob", + "version": null, + "version_constraint": "^6.0.4" + }, + { + "name": "glob-stream", + "version": null, + "version_constraint": "^6.1.0" + }, + { + "name": "gzip-js", + "version": null, + "version_constraint": "~0.3.2" + }, + { + "name": "gzip-size", + "version": null, + "version_constraint": "^3.0.0" + }, + { + "name": "jest", + "version": null, + "version_constraint": "20.1.0-delta.1" + }, + { + "name": "jest-config", + "version": null, + "version_constraint": "20.1.0-delta.1" + }, + { + "name": "jest-jasmine2", + "version": null, + "version_constraint": "20.1.0-delta.1" + }, + { + "name": "jest-matchers", + "version": null, + "version_constraint": "20.1.0-delta.1" + }, + { + "name": "jest-runtime", + "version": null, + "version_constraint": "20.1.0-delta.1" + }, + { + "name": "merge-stream", + "version": null, + "version_constraint": "^1.0.0" + }, + { + "name": "minimist", + "version": null, + "version_constraint": "^1.2.0" + }, + { + "name": "ncp", + "version": null, + "version_constraint": "^2.0.0" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.1" + }, + { + "name": "platform", + "version": null, + "version_constraint": "^1.1.0" + }, + { + "name": "prettier", + "version": null, + "version_constraint": "1.2.2" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.6.0" + }, + { + "name": "rimraf", + "version": null, + "version_constraint": "^2.6.1" + }, + { + "name": "rollup", + "version": null, + "version_constraint": "^0.41.6" + }, + { + "name": "rollup-plugin-alias", + "version": null, + "version_constraint": "^1.2.1" + }, + { + "name": "rollup-plugin-babel", + "version": null, + "version_constraint": "^2.7.1" + }, + { + "name": "rollup-plugin-closure-compiler-js", + "version": null, + "version_constraint": "^1.0.4" + }, + { + "name": "rollup-plugin-commonjs", + "version": null, + "version_constraint": "^8.0.2" + }, + { + "name": "rollup-plugin-inject", + "version": null, + "version_constraint": "^2.0.0" + }, + { + "name": "rollup-plugin-node-resolve", + "version": null, + "version_constraint": "^2.0.0" + }, + { + "name": "rollup-plugin-replace", + "version": null, + "version_constraint": "^1.1.1" + }, + { + "name": "rollup-plugin-uglify", + "version": null, + "version_constraint": "^1.0.1" + }, + { + "name": "run-sequence", + "version": null, + "version_constraint": "^1.1.4" + }, + { + "name": "through2", + "version": null, + "version_constraint": "^2.0.0" + }, + { + "name": "tmp", + "version": null, + "version_constraint": "~0.0.28" + }, + { + "name": "typescript", + "version": null, + "version_constraint": "~1.8.10" + }, + { + "name": "uglify-js", + "version": null, + "version_constraint": "^2.5.0" + }, + { + "name": "yargs", + "version": null, + "version_constraint": "^6.3.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 4719, + "date": "2018-03-12", + "sha1": "cc59d76cafa0663d266402fc498ecd5f1bb4a3fd", + "md5": "ab4e26fec78aea1dd802946502407f5e", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 62, + "end_line": 62, + "matched_rule": { + "identifier": "mit_126.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "contributing guide (https://facebook.github.io/react/contributing/how-to-contribute.html)" + ], + "start_line": 54, + "end_line": 54 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 166186, + "date": "2018-03-12", + "sha1": "c3b17bfb66afa66093d9e6f0bb02c67a75cee999", + "md5": "f3e6e68949450932df305f8d2ec92714", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.github", + "type": "directory", + "name": ".github", + "base_name": ".github", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1050, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.github/ISSUE_TEMPLATE.md", + "type": "file", + "name": "ISSUE_TEMPLATE.md", + "base_name": "ISSUE_TEMPLATE", + "extension": ".md", + "size": 458, + "date": "2018-03-12", + "sha1": "c6f237b48a19ba6ad298e7710cbd2e751d5989fc", + "md5": "000a993b62c8e46447eb08d75ffa92e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/.github/PULL_REQUEST_TEMPLATE.md", + "type": "file", + "name": "PULL_REQUEST_TEMPLATE.md", + "base_name": "PULL_REQUEST_TEMPLATE", + "extension": ".md", + "size": 592, + "date": "2018-03-12", + "sha1": "8605f6568a23263dd0b6e3fdfdb79ed8ba555576", + "md5": "d02df8ec514a4934dc7be38c42239c86", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs", + "type": "directory", + "name": "docs", + "base_name": "docs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 485, + "dirs_count": 29, + "size_count": 54112896, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/404.md", + "type": "file", + "name": "404.md", + "base_name": "404", + "extension": ".md", + "size": 224, + "date": "2018-03-12", + "sha1": "a277d8f7079f7bac64ac2928a286b01221cf70b5", + "md5": "a2ae51a2c8d938e54ad7f2ba4d56d481", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_config.yml", + "type": "file", + "name": "_config.yml", + "base_name": "_config", + "extension": ".yml", + "size": 1706, + "date": "2018-03-12", + "sha1": "c44e9abe086c41d1c7f7e0d3d0cce141ea15c2fd", + "md5": "f3650ad257ecb38d5fb0e3821e1967cd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/acknowledgements.md", + "type": "file", + "name": "acknowledgements.md", + "base_name": "acknowledgements", + "extension": ".md", + "size": 935, + "date": "2018-03-12", + "sha1": "747808ec6ffc8ff0d14aef32aa24c56c7bb9da4a", + "md5": "2ffb46925913ada0ee6434457a036bac", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/circle.yml", + "type": "file", + "name": "circle.yml", + "base_name": "circle", + "extension": ".yml", + "size": 54, + "date": "2018-03-12", + "sha1": "f14cfffbc6ca82e3126bdd129e38e824a4b39656", + "md5": "160ca0b2d86a8f413701e38fb96ec86b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/crowdin.yaml", + "type": "file", + "name": "crowdin.yaml", + "base_name": "crowdin", + "extension": ".yaml", + "size": 2706, + "date": "2018-03-12", + "sha1": "ca3832d20dd08be788345fcd004f246ff5e0e66f", + "md5": "60419c0a625886ba1bfc05ffc5d2f1db", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/favicon.ico", + "type": "file", + "name": "favicon.ico", + "base_name": "favicon", + "extension": ".ico", + "size": 24838, + "date": "2018-03-12", + "sha1": "55bbacc4b53578835604e4954cf6bd414accb593", + "md5": "fd73a6eb26a08ee46e7fd3cc34e7f6bf", + "mime_type": "image/x-icon", + "file_type": "MS Windows icon resource - 4 icons, 16x16", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/feed.xml", + "type": "file", + "name": "feed.xml", + "base_name": "feed", + "extension": ".xml", + "size": 768, + "date": "2018-03-12", + "sha1": "91df02cb198e4c41a3dc7e2e4a9723faafe98cf8", + "md5": "2cde3ea80bc7310a79134ce03fe35bfb", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/Gemfile", + "type": "file", + "name": "Gemfile", + "base_name": "Gemfile", + "extension": "", + "size": 465, + "date": "2018-03-12", + "sha1": "6cd76e4fc2d2db76d1231d3ff55bca9990e3d0bc", + "md5": "5a40223eceb1fa14ee122d038ea539bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "RubyGem", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/Gemfile.lock", + "type": "file", + "name": "Gemfile.lock", + "base_name": "Gemfile", + "extension": ".lock", + "size": 1441, + "date": "2018-03-12", + "sha1": "b1fcd41544e586e005eab75788ed5aa2a140239e", + "md5": "8a7d4a5bf4593584e18b88bd074a5be3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "RubyGem", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/html-jsx.html", + "type": "file", + "name": "html-jsx.html", + "base_name": "html-jsx", + "extension": ".html", + "size": 99, + "date": "2018-03-12", + "sha1": "c2d7fed1b0ac06c8b0f2c316a99db627533be34d", + "md5": "86bda11f429eeae81539b5450d566e36", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/index.md", + "type": "file", + "name": "index.md", + "base_name": "index", + "extension": ".md", + "size": 3791, + "date": "2018-03-12", + "sha1": "d7cf0111a1f3955b152d93f9e2a20f65103d0fce", + "md5": "b0d22c491c57a286f589ef43468ba733", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/jsx-compiler.md", + "type": "file", + "name": "jsx-compiler.md", + "base_name": "jsx-compiler", + "extension": ".md", + "size": 255, + "date": "2018-03-12", + "sha1": "2fea1e41644d681b9cd2c8aeda55df50295532db", + "md5": "d3f9e8ae53eaf38074bab35eaa5fb678", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/Rakefile", + "type": "file", + "name": "Rakefile", + "base_name": "Rakefile", + "extension": "", + "size": 2269, + "date": "2018-03-12", + "sha1": "a5194735ae8517c8e05254bad4e80ce91c5dd3fc", + "md5": "fab580a25baeda60da4c4bb615b50205", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Ruby", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 3415, + "date": "2018-03-12", + "sha1": "cbf3a44a61973f5c21a3f637aceb70cfee17b154", + "md5": "7afd86e05cb1632c7cd1ba327753fb63", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css", + "type": "directory", + "name": "_css", + "base_name": "_css", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 72, + "dirs_count": 6, + "size_count": 82541, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/_solarized.scss", + "type": "file", + "name": "_solarized.scss", + "base_name": "_solarized", + "extension": ".scss", + "size": 4075, + "date": "2018-03-12", + "sha1": "5465518cf0463e83370ce5e16b312d974ec8bb32", + "md5": "99d0c3aa370948632d0ae63d8b83f61f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/_typography.scss", + "type": "file", + "name": "_typography.scss", + "base_name": "_typography", + "extension": ".scss", + "size": 1443, + "date": "2018-03-12", + "sha1": "63bf8a92888f1d6ab88f0394b5c540e67ea620ad", + "md5": "9b7c70015b18664dcaf47db4ede90b53", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/_variables.scss", + "type": "file", + "name": "_variables.scss", + "base_name": "_variables", + "extension": ".scss", + "size": 472, + "date": "2018-03-12", + "sha1": "cefee7d72fcd8b92e3952ecbdaa1b8ea5b56dc26", + "md5": "cc94567b5d43854f74cb868646129d7b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon", + "type": "directory", + "name": "bourbon", + "base_name": "bourbon", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 69, + "dirs_count": 5, + "size_count": 76551, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/_bourbon-deprecated-upcoming.scss", + "type": "file", + "name": "_bourbon-deprecated-upcoming.scss", + "base_name": "_bourbon-deprecated-upcoming", + "extension": ".scss", + "size": 400, + "date": "2018-03-12", + "sha1": "721d81d1575f35fb09b0d67ab26e241f3c6a9bab", + "md5": "1232ed1bd5ea801bc7bc3c0b60c73aec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/_bourbon.scss", + "type": "file", + "name": "_bourbon.scss", + "base_name": "_bourbon", + "extension": ".scss", + "size": 2273, + "date": "2018-03-12", + "sha1": "1980d98195bf3fb8842c9d05a8fc4b131c5df0db", + "md5": "a49479d4a3ba2da94c68c32dcc3a8e58", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons", + "type": "directory", + "name": "addons", + "base_name": "addons", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 14, + "dirs_count": 0, + "size_count": 27800, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_button.scss", + "type": "file", + "name": "_button.scss", + "base_name": "_button", + "extension": ".scss", + "size": 13144, + "date": "2018-03-12", + "sha1": "61a30b3f1991b0791ea472ebff1ef749dbb8b1a5", + "md5": "081902245bacc759f1562e7bf3ec18dd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_clearfix.scss", + "type": "file", + "name": "_clearfix.scss", + "base_name": "_clearfix", + "extension": ".scss", + "size": 515, + "date": "2018-03-12", + "sha1": "9cc4f70ecaf2ebb8cdea2c4d385314a9693e20b3", + "md5": "0da01a56462807d2628530556e0e7c76", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_directional-values.scss", + "type": "file", + "name": "_directional-values.scss", + "base_name": "_directional-values", + "extension": ".scss", + "size": 2863, + "date": "2018-03-12", + "sha1": "c76282b105c36c8aecfec09294689cee80b8c647", + "md5": "2f5ad412c7d3ee343790a9a67178385a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_ellipsis.scss", + "type": "file", + "name": "_ellipsis.scss", + "base_name": "_ellipsis", + "extension": ".scss", + "size": 150, + "date": "2018-03-12", + "sha1": "44520b8a794efdc5e35b3ae1bc2468fd41fc1116", + "md5": "9ad2c8f7ca715ad36dcf825b864e4dda", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_font-family.scss", + "type": "file", + "name": "_font-family.scss", + "base_name": "_font-family", + "extension": ".scss", + "size": 307, + "date": "2018-03-12", + "sha1": "3d8ba824de0b9fa67d115f0827fd214ddbdbffc5", + "md5": "07ff627848a6862b4a95e19e2c783283", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_hide-text.scss", + "type": "file", + "name": "_hide-text.scss", + "base_name": "_hide-text", + "extension": ".scss", + "size": 128, + "date": "2018-03-12", + "sha1": "33a85f8df3cedb9e483dbae39e7046624d567f7e", + "md5": "29bcfb7d95e49d76a08c0a87c6d8cae5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_html5-input-types.scss", + "type": "file", + "name": "_html5-input-types.scss", + "base_name": "_html5-input-types", + "extension": ".scss", + "size": 3101, + "date": "2018-03-12", + "sha1": "f8b2f37e095e390aa32dea906c9395ccdbc4bff7", + "md5": "048744a9ea771df7c781f89c94b123a6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_position.scss", + "type": "file", + "name": "_position.scss", + "base_name": "_position", + "extension": ".scss", + "size": 715, + "date": "2018-03-12", + "sha1": "62ecdfcdd414b36c680b7db4fa4ad7ae018999d0", + "md5": "af45a0272e2f78f6b5f152026e88c2e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_prefixer.scss", + "type": "file", + "name": "_prefixer.scss", + "base_name": "_prefixer", + "extension": ".scss", + "size": 1205, + "date": "2018-03-12", + "sha1": "0682ded884f10d4572a1293c0bb5ebdc4cbf333b", + "md5": "a413205d04665888a1e7586e821f3c1b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_retina-image.scss", + "type": "file", + "name": "_retina-image.scss", + "base_name": "_retina-image", + "extension": ".scss", + "size": 855, + "date": "2018-03-12", + "sha1": "2cf827821f40cb799c26e42c3199989102d7091e", + "md5": "6582394779684e22e5c7fea8342136ec", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_size.scss", + "type": "file", + "name": "_size.scss", + "base_name": "_size", + "extension": ".scss", + "size": 338, + "date": "2018-03-12", + "sha1": "a0519198a85e4c229793cd34b046abca6a779181", + "md5": "95888df85645bab27db66b4be611c79d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_timing-functions.scss", + "type": "file", + "name": "_timing-functions.scss", + "base_name": "_timing-functions", + "extension": ".scss", + "size": 1764, + "date": "2018-03-12", + "sha1": "0e34494c72abf0aa065e78458b9fff68e85e52db", + "md5": "cce5583ad9adfa72d147681a45f0a0f3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_triangle.scss", + "type": "file", + "name": "_triangle.scss", + "base_name": "_triangle", + "extension": ".scss", + "size": 2564, + "date": "2018-03-12", + "sha1": "a40269ccdf3e26c6f98e69fabd2f536402531b66", + "md5": "3593e83843a8460c6dfef58d6ce98a17", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/addons/_word-wrap.scss", + "type": "file", + "name": "_word-wrap.scss", + "base_name": "_word-wrap", + "extension": ".scss", + "size": 151, + "date": "2018-03-12", + "sha1": "daa61c6c38b7ecfb7558a8f91e4c1c98a91e26a8", + "md5": "c79b8b2344b0e8f23431c3ed52e70a2d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3", + "type": "directory", + "name": "css3", + "base_name": "css3", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 0, + "size_count": 26963, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_animation.scss", + "type": "file", + "name": "_animation.scss", + "base_name": "_animation", + "extension": ".scss", + "size": 1583, + "date": "2018-03-12", + "sha1": "a43ad539166974529586857a4cfe8b9364a8fafa", + "md5": "4d3d5364521d737d0998d92ce5178df8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_appearance.scss", + "type": "file", + "name": "_appearance.scss", + "base_name": "_appearance", + "extension": ".scss", + "size": 94, + "date": "2018-03-12", + "sha1": "bb214da69cbaca2730b496ea3ba5c204499954bb", + "md5": "6c436dc81b892aecec061649ad74d71e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_backface-visibility.scss", + "type": "file", + "name": "_backface-visibility.scss", + "base_name": "_backface-visibility", + "extension": ".scss", + "size": 295, + "date": "2018-03-12", + "sha1": "5cfc259457c15a3698d7c62cdf6f6fc6eb99ba8b", + "md5": "7759cec69b20500438e6afbbb8c81a02", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_background-image.scss", + "type": "file", + "name": "_background-image.scss", + "base_name": "_background-image", + "extension": ".scss", + "size": 1332, + "date": "2018-03-12", + "sha1": "13cf4003b99a852a05941d9227d9c51e3248c78c", + "md5": "fc0c968102173bf343eda7140d65b2ff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_background.scss", + "type": "file", + "name": "_background.scss", + "base_name": "_background", + "extension": ".scss", + "size": 1758, + "date": "2018-03-12", + "sha1": "5348321086a1160bf247f7bafd726fee595e44de", + "md5": "c445a464bf5c90f360e036227868a995", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_border-image.scss", + "type": "file", + "name": "_border-image.scss", + "base_name": "_border-image", + "extension": ".scss", + "size": 1827, + "date": "2018-03-12", + "sha1": "4cb2238cfcdade888b0b24e72205388db7d89356", + "md5": "938056a2097ae322ea00e7f893e0ae04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_border-radius.scss", + "type": "file", + "name": "_border-radius.scss", + "base_name": "_border-radius", + "extension": ".scss", + "size": 833, + "date": "2018-03-12", + "sha1": "a1dd3a06584d42974ffd09094fce8cbda66bb1fc", + "md5": "373a4d781651d8f70d3a881c2a73e847", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_box-sizing.scss", + "type": "file", + "name": "_box-sizing.scss", + "base_name": "_box-sizing", + "extension": ".scss", + "size": 124, + "date": "2018-03-12", + "sha1": "c5370108803c21cdaa4d572d2b0a3002f3c6e1aa", + "md5": "1d693a6a2827e8f5cd149031832e5599", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_calc.scss", + "type": "file", + "name": "_calc.scss", + "base_name": "_calc", + "extension": ".scss", + "size": 117, + "date": "2018-03-12", + "sha1": "30d5b9d1baedc2df31ae977c7ba86ed1e1431414", + "md5": "fb95ce1dcd297370874dbabadbae5028", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_columns.scss", + "type": "file", + "name": "_columns.scss", + "base_name": "_columns", + "extension": ".scss", + "size": 1241, + "date": "2018-03-12", + "sha1": "5bb5503fefc4c12de2b7153443bd78d227f281c5", + "md5": "e2940a3267c9d75552907a477ce090e8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_filter.scss", + "type": "file", + "name": "_filter.scss", + "base_name": "_filter", + "extension": ".scss", + "size": 139, + "date": "2018-03-12", + "sha1": "cccd7b697e9902ad04e62a8f91e6555629249afd", + "md5": "16e358ff42e362d07da723c62ee31484", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_flex-box.scss", + "type": "file", + "name": "_flex-box.scss", + "base_name": "_flex-box", + "extension": ".scss", + "size": 8008, + "date": "2018-03-12", + "sha1": "2b2629b5c2628d9e6bf87ae50b4121cf9e94ea3f", + "md5": "a5dd5b10dffa7f1ddda378b9e742fbae", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_font-face.scss", + "type": "file", + "name": "_font-face.scss", + "base_name": "_font-face", + "extension": ".scss", + "size": 1045, + "date": "2018-03-12", + "sha1": "4148558e6e8d85c092fbc18eba9725717e163410", + "md5": "995b120c7fbdc698149b8a0c4b93b7fa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_font-feature-settings.scss", + "type": "file", + "name": "_font-feature-settings.scss", + "base_name": "_font-feature-settings", + "extension": ".scss", + "size": 463, + "date": "2018-03-12", + "sha1": "2df30aedbbdbc70a384e1849cfb21221a8eae726", + "md5": "91e2bced8d742cf1a61442103ce348ed", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_hidpi-media-query.scss", + "type": "file", + "name": "_hidpi-media-query.scss", + "base_name": "_hidpi-media-query", + "extension": ".scss", + "size": 463, + "date": "2018-03-12", + "sha1": "cd2e8b85eb3397ff4a9752ee244bd55b39e84b9b", + "md5": "5fbe0b8110e24dbf2b7d4720e5ad01aa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_hyphens.scss", + "type": "file", + "name": "_hyphens.scss", + "base_name": "_hyphens", + "extension": ".scss", + "size": 126, + "date": "2018-03-12", + "sha1": "7fd4bb1bbca508533d4cd98d572a352cf5b88148", + "md5": "a16eee1b9701f0bbb69600960f34d00f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_image-rendering.scss", + "type": "file", + "name": "_image-rendering.scss", + "base_name": "_image-rendering", + "extension": ".scss", + "size": 343, + "date": "2018-03-12", + "sha1": "67bf012fe3e58fc12714ef252544f4d8fdf8b8e1", + "md5": "863218e471076c6ce38a1509d1fb900d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_keyframes.scss", + "type": "file", + "name": "_keyframes.scss", + "base_name": "_keyframes", + "extension": ".scss", + "size": 1158, + "date": "2018-03-12", + "sha1": "28d9e9b34323174318570a72050957f998754ad6", + "md5": "dc3ecbf496646e5b271fc63f11b389a8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_linear-gradient.scss", + "type": "file", + "name": "_linear-gradient.scss", + "base_name": "_linear-gradient", + "extension": ".scss", + "size": 1310, + "date": "2018-03-12", + "sha1": "8e934038aa5cd5dd4739a2c912c0392e19d8cb86", + "md5": "3ed75658f56b71bd13018d86faa7eb1d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_perspective.scss", + "type": "file", + "name": "_perspective.scss", + "base_name": "_perspective", + "extension": ".scss", + "size": 231, + "date": "2018-03-12", + "sha1": "f53b7eac7c6befd491c619be847fa92b4c2231e7", + "md5": "793baf79388c99d5a1ba92ba6e1d026f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_placeholder.scss", + "type": "file", + "name": "_placeholder.scss", + "base_name": "_placeholder", + "extension": ".scss", + "size": 187, + "date": "2018-03-12", + "sha1": "981d9aab731cf07ea2d4732a0fcbe92bd0d41103", + "md5": "961f5d7df43b4323fdf47635634a5c83", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_radial-gradient.scss", + "type": "file", + "name": "_radial-gradient.scss", + "base_name": "_radial-gradient", + "extension": ".scss", + "size": 1414, + "date": "2018-03-12", + "sha1": "b10c33b1f753a984b822a57fdf90d4a4dbcdea1b", + "md5": "7bd48370bfbfd57b543251c912f2f3e0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_transform.scss", + "type": "file", + "name": "_transform.scss", + "base_name": "_transform", + "extension": ".scss", + "size": 495, + "date": "2018-03-12", + "sha1": "c750c70800c813f71fadd51ad2eafb3281ecc4e8", + "md5": "70afecfd28f823fa6bc13fb43eb35a4b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_transition.scss", + "type": "file", + "name": "_transition.scss", + "base_name": "_transition", + "extension": ".scss", + "size": 2282, + "date": "2018-03-12", + "sha1": "099247da3dd0fbdfa02d8fbb9793fe640a8f6dd5", + "md5": "660c835cf41f095408f11a9f5c3f151f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/css3/_user-select.scss", + "type": "file", + "name": "_user-select.scss", + "base_name": "_user-select", + "extension": ".scss", + "size": 95, + "date": "2018-03-12", + "sha1": "803ee137e7db2aad4fbe56b965f27358276b5f25", + "md5": "fcf794c47fa8279503bf60b68715bb47", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions", + "type": "directory", + "name": "functions", + "base_name": "functions", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 6547, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_assign.scss", + "type": "file", + "name": "_assign.scss", + "base_name": "_assign", + "extension": ".scss", + "size": 243, + "date": "2018-03-12", + "sha1": "0f77cbd7a8c3e98b35d1d5c6794d69c890325049", + "md5": "9de805eb0dfc1ca8972c733c6403d0ce", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_color-lightness.scss", + "type": "file", + "name": "_color-lightness.scss", + "base_name": "_color-lightness", + "extension": ".scss", + "size": 469, + "date": "2018-03-12", + "sha1": "55b55edf9576507cbc0bc947271daf74a9b84502", + "md5": "11da9622d359b34a7250cf9cc2f65478", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_flex-grid.scss", + "type": "file", + "name": "_flex-grid.scss", + "base_name": "_flex-grid", + "extension": ".scss", + "size": 1592, + "date": "2018-03-12", + "sha1": "b847f200463d9d45d1863415d567ed73e9018d3f", + "md5": "2803056bf58562ee5fded423dcb9f527", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_golden-ratio.scss", + "type": "file", + "name": "_golden-ratio.scss", + "base_name": "_golden-ratio", + "extension": ".scss", + "size": 100, + "date": "2018-03-12", + "sha1": "807ea5c7de586073f7b87c8112c54caa8e3f11ad", + "md5": "fcf9ed49bbbe1c3d2ecdd9a688e09fe2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_grid-width.scss", + "type": "file", + "name": "_grid-width.scss", + "base_name": "_grid-width", + "extension": ".scss", + "size": 418, + "date": "2018-03-12", + "sha1": "44959d7309e947aea8ced9786aad386f9d5ea944", + "md5": "f22bf5eee2d939854da12ece0ac5bbaf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_modular-scale.scss", + "type": "file", + "name": "_modular-scale.scss", + "base_name": "_modular-scale", + "extension": ".scss", + "size": 1469, + "date": "2018-03-12", + "sha1": "aeaf70f59bf2933b0700638f19096bfa8e465102", + "md5": "eb8376cb932de12d6f768700439b3b10", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_px-to-em.scss", + "type": "file", + "name": "_px-to-em.scss", + "base_name": "_px-to-em", + "extension": ".scss", + "size": 370, + "date": "2018-03-12", + "sha1": "4c2ba250a68a15d7fc372e649c346ffce52b0dd6", + "md5": "00dd169ade4de45df164a73ff88b45ad", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_px-to-rem.scss", + "type": "file", + "name": "_px-to-rem.scss", + "base_name": "_px-to-rem", + "extension": ".scss", + "size": 340, + "date": "2018-03-12", + "sha1": "62491f7f1ff941fceea9e51dd185a2aea5c22c12", + "md5": "faaf612eee4688c70074e70d04f24f46", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_strip-units.scss", + "type": "file", + "name": "_strip-units.scss", + "base_name": "_strip-units", + "extension": ".scss", + "size": 118, + "date": "2018-03-12", + "sha1": "619ad2f45e59b01c5dd5d6990ce327d08113a4b9", + "md5": "230b3c2cdceeccd2b358eebae3ef064e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_tint-shade.scss", + "type": "file", + "name": "_tint-shade.scss", + "base_name": "_tint-shade", + "extension": ".scss", + "size": 230, + "date": "2018-03-12", + "sha1": "9e2357b9dc3e95a4bdcbd5f7b9b83dd96880236f", + "md5": "b5c422224be3d36942b3a92d8c2ec89e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_transition-property-name.scss", + "type": "file", + "name": "_transition-property-name.scss", + "base_name": "_transition-property-name", + "extension": ".scss", + "size": 697, + "date": "2018-03-12", + "sha1": "7ba6d718bdddb7988dd564e24d5bf3934a7e20f6", + "md5": "8a88f39d99dc5747e4ae991d3f4e69e4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/functions/_unpack.scss", + "type": "file", + "name": "_unpack.scss", + "base_name": "_unpack", + "extension": ".scss", + "size": 501, + "date": "2018-03-12", + "sha1": "53ee6619529224b3c04a66451bcaf11e00a54217", + "md5": "309ad420d2b039eee2ec10260c16f742", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers", + "type": "directory", + "name": "helpers", + "base_name": "helpers", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 0, + "size_count": 12242, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_convert-units.scss", + "type": "file", + "name": "_convert-units.scss", + "base_name": "_convert-units", + "extension": ".scss", + "size": 696, + "date": "2018-03-12", + "sha1": "2caa48f0bbd82ac1fb985bb694a8ed5ce2cab242", + "md5": "86729c86214a69441448b26517670982", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_gradient-positions-parser.scss", + "type": "file", + "name": "_gradient-positions-parser.scss", + "base_name": "_gradient-positions-parser", + "extension": ".scss", + "size": 480, + "date": "2018-03-12", + "sha1": "e9c38cd6e39ec6f0701612aacb981087cff772f0", + "md5": "fd4157198cf4848a2ec892dd0a4b6343", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_is-num.scss", + "type": "file", + "name": "_is-num.scss", + "base_name": "_is-num", + "extension": ".scss", + "size": 360, + "date": "2018-03-12", + "sha1": "c93b78f1f94398e3d7e07479ca8e23f65e571c40", + "md5": "1fa346e230af3977103d7d787fe7eebe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_linear-angle-parser.scss", + "type": "file", + "name": "_linear-angle-parser.scss", + "base_name": "_linear-angle-parser", + "extension": ".scss", + "size": 757, + "date": "2018-03-12", + "sha1": "bae1bc0787fb466fcb569590b80a2bbf8d06d983", + "md5": "520ed0742bb2eb9cf21515ecadca7fda", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_linear-gradient-parser.scss", + "type": "file", + "name": "_linear-gradient-parser.scss", + "base_name": "_linear-gradient-parser", + "extension": ".scss", + "size": 1087, + "date": "2018-03-12", + "sha1": "eede69beeec5b78eb785609076596cf4da4dba5b", + "md5": "8f3709be826b6f6e1a8c7093507cf4f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_linear-positions-parser.scss", + "type": "file", + "name": "_linear-positions-parser.scss", + "base_name": "_linear-positions-parser", + "extension": ".scss", + "size": 1992, + "date": "2018-03-12", + "sha1": "0b00187c819bf611ba05d7527fede7ec5165d564", + "md5": "b7afb48505682f29178fbc9346484813", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_linear-side-corner-parser.scss", + "type": "file", + "name": "_linear-side-corner-parser.scss", + "base_name": "_linear-side-corner-parser", + "extension": ".scss", + "size": 916, + "date": "2018-03-12", + "sha1": "ea3b65fb4e9ec6143e5e68c86f8e2a63bd5bf2e8", + "md5": "e3af6af431b255e3f8dd0f337bf576b9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_radial-arg-parser.scss", + "type": "file", + "name": "_radial-arg-parser.scss", + "base_name": "_radial-arg-parser", + "extension": ".scss", + "size": 1828, + "date": "2018-03-12", + "sha1": "9b6e8fcc5898561fd2ffd78f890fec312b2107bf", + "md5": "a5497a6a006c4f2cd2b3bd61eacb964f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_radial-gradient-parser.scss", + "type": "file", + "name": "_radial-gradient-parser.scss", + "base_name": "_radial-gradient-parser", + "extension": ".scss", + "size": 1278, + "date": "2018-03-12", + "sha1": "0ec2fec5860e4ad1ab777ad6e5ff0bbe0eddb053", + "md5": "6fd34f4b02a1181d3fef21cbeacc6d8f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_radial-positions-parser.scss", + "type": "file", + "name": "_radial-positions-parser.scss", + "base_name": "_radial-positions-parser", + "extension": ".scss", + "size": 484, + "date": "2018-03-12", + "sha1": "255ff1c8501a24210ef2cfceae73bdc20c824141", + "md5": "8fe35e46c19a0e3f05851e77635aa385", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_render-gradients.scss", + "type": "file", + "name": "_render-gradients.scss", + "base_name": "_render-gradients", + "extension": ".scss", + "size": 845, + "date": "2018-03-12", + "sha1": "2cf125287b28e46c3ecaa3bcab7a959536ea7a23", + "md5": "d2982aa29f132f4e4ee76153c6011479", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_shape-size-stripper.scss", + "type": "file", + "name": "_shape-size-stripper.scss", + "base_name": "_shape-size-stripper", + "extension": ".scss", + "size": 274, + "date": "2018-03-12", + "sha1": "d236801e46a03c7f93d27e90c5bd760e760d5847", + "md5": "a0e10c7137e2127c985293a3802fafb6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/helpers/_str-to-num.scss", + "type": "file", + "name": "_str-to-num.scss", + "base_name": "_str-to-num", + "extension": ".scss", + "size": 1245, + "date": "2018-03-12", + "sha1": "c95167e72c910a7955362b023cfa12241c7e6559", + "md5": "7b72e74372c171df1ea45e63623451bb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/settings", + "type": "directory", + "name": "settings", + "base_name": "settings", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 326, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/settings/_asset-pipeline.scss", + "type": "file", + "name": "_asset-pipeline.scss", + "base_name": "_asset-pipeline", + "extension": ".scss", + "size": 33, + "date": "2018-03-12", + "sha1": "bff5ef8a859a7e5f467323262aeb71047fda6814", + "md5": "986eab922e7a47c91ead3a37d1f74fc0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/settings/_prefixer.scss", + "type": "file", + "name": "_prefixer.scss", + "base_name": "_prefixer", + "extension": ".scss", + "size": 268, + "date": "2018-03-12", + "sha1": "0b0f9f8f114b9b16fe65281e685fb685f46b37c7", + "md5": "520c130917995eb37187c6a81f32ce1b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_css/bourbon/settings/_px-to-em.scss", + "type": "file", + "name": "_px-to-em.scss", + "base_name": "_px-to-em", + "extension": ".scss", + "size": 25, + "date": "2018-03-12", + "sha1": "14880c373629b1e71abf17d6dc147ca56126856a", + "md5": "af526a5742a9ecc661aac5779748523c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_data", + "type": "directory", + "name": "_data", + "base_name": "_data", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 20203, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_data/acknowledgements.yml", + "type": "file", + "name": "acknowledgements.yml", + "base_name": "acknowledgements", + "extension": ".yml", + "size": 12189, + "date": "2018-03-12", + "sha1": "bfbf5a5e80d9262b65c8782c16534af1bbb0bd23", + "md5": "6f3665de9bb9448145f894a4be2c68cf", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_data/authors.yml", + "type": "file", + "name": "authors.yml", + "base_name": "authors", + "extension": ".yml", + "size": 1884, + "date": "2018-03-12", + "sha1": "7b0203e23acb971234b7bea1831fb8df0ffb469b", + "md5": "eb921e7171b2d307ef8dfc06984b17a7", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_data/nav_community.yml", + "type": "file", + "name": "nav_community.yml", + "base_name": "nav_community", + "extension": ".yml", + "size": 409, + "date": "2018-03-12", + "sha1": "09b900f09cf0eaa1309b3803dc085473a00ea218", + "md5": "c44b1836234cda40a5cea73e90279442", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_data/nav_contributing.yml", + "type": "file", + "name": "nav_contributing.yml", + "base_name": "nav_contributing", + "extension": ".yml", + "size": 257, + "date": "2018-03-12", + "sha1": "ce70824cf5cc92384460f098acba998a2147ce8c", + "md5": "48c119fb6e2c3fa762040781c52f73d1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_data/nav_docs.yml", + "type": "file", + "name": "nav_docs.yml", + "base_name": "nav_docs", + "extension": ".yml", + "size": 2164, + "date": "2018-03-12", + "sha1": "1da8e5182dab9d148c9b60411d62b9c56766ffba", + "md5": "436e2a7f36decb78e3bc48f68061b605", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_data/nav_tutorial.yml", + "type": "file", + "name": "nav_tutorial.yml", + "base_name": "nav_tutorial", + "extension": ".yml", + "size": 3300, + "date": "2018-03-12", + "sha1": "a0dcab0dc0341582360f5e90d514bf81f0011293", + "md5": "192030fa499081ec763db291544db520", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "YAML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes", + "type": "directory", + "name": "_includes", + "base_name": "_includes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 6983, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes/blog_post.html", + "type": "file", + "name": "blog_post.html", + "base_name": "blog_post", + "extension": ".html", + "size": 656, + "date": "2018-03-12", + "sha1": "331123ad8e8f7d8fd467137f0ab079d4eff45b4a", + "md5": "6f7d1a671fd5441dac0ccd3e893f903b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes/footer.html", + "type": "file", + "name": "footer.html", + "base_name": "footer", + "extension": ".html", + "size": 1983, + "date": "2018-03-12", + "sha1": "06bb3ddb507c8a7c0485cdd0642b29d79b72d08e", + "md5": "ea060966f3d72964bbc91ae0c7abc76d", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright (c) site.time date Y Facebook Inc." + ], + "holders": [ + "site.time", + "date", + "Y Facebook Inc." + ], + "authors": [], + "start_line": 38, + "end_line": 39 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes/hero.html", + "type": "file", + "name": "hero.html", + "base_name": "hero", + "extension": ".html", + "size": 403, + "date": "2018-03-12", + "sha1": "4c4d8fd53cbe1d615f71d670d45556b65df3629f", + "md5": "b149d125f23fb7920e37f7144358caf5", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes/nav_blog.html", + "type": "file", + "name": "nav_blog.html", + "base_name": "nav_blog", + "extension": ".html", + "size": 381, + "date": "2018-03-12", + "sha1": "e94d57aa26bdfb9b652d11a54baf4b32a44cde0d", + "md5": "641747495cc86676d90f87cabb43da4f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes/nav_community.html", + "type": "file", + "name": "nav_community.html", + "base_name": "nav_community", + "extension": ".html", + "size": 645, + "date": "2018-03-12", + "sha1": "a098021206f92c71c88758834701e9e71afd39dd", + "md5": "1cbef63d4c867c29574423fadd1859d7", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes/nav_docs.html", + "type": "file", + "name": "nav_docs.html", + "base_name": "nav_docs", + "extension": ".html", + "size": 1050, + "date": "2018-03-12", + "sha1": "d0a22217dcf4f4f745c5d80efe6d81c69133020e", + "md5": "72ee7a68a0b75392ff37363f868e30da", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes/nav_tutorial.html", + "type": "file", + "name": "nav_tutorial.html", + "base_name": "nav_tutorial", + "extension": ".html", + "size": 641, + "date": "2018-03-12", + "sha1": "e92c43017e93b2f4fa476244f8953e396b67a102", + "md5": "e2eefd54d6f8e055e58aa3a3e3355930", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_includes/navigation.html", + "type": "file", + "name": "navigation.html", + "base_name": "navigation", + "extension": ".html", + "size": 1224, + "date": "2018-03-12", + "sha1": "79d6869e135b56b5ffeacd35512e19b3ca6198e2", + "md5": "4c57763a5a1d08902e8685f0810023fa", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js", + "type": "directory", + "name": "_js", + "base_name": "_js", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 1, + "size_count": 13813, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/anchor-links.js", + "type": "file", + "name": "anchor-links.js", + "base_name": "anchor-links", + "extension": ".js", + "size": 1220, + "date": "2018-03-12", + "sha1": "418e3b10325e923228244f6c8ab060b7aef1da95", + "md5": "a779bb1c231071dc77b8c5d8b873afb8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/ErrorDecoderComponent.js", + "type": "file", + "name": "ErrorDecoderComponent.js", + "base_name": "ErrorDecoderComponent", + "extension": ".js", + "size": 2391, + "date": "2018-03-12", + "sha1": "815f420052d3d710aa1f3c78b31685694305621d", + "md5": "7b29bc3c92dedd6bd1b242edc325eeec", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/html-jsx-lib.js", + "type": "file", + "name": "html-jsx-lib.js", + "base_name": "html-jsx-lib", + "extension": ".js", + "size": 332, + "date": "2018-03-12", + "sha1": "294378864c5953bd01e1f8adc21358eb6f3ba999", + "md5": "e2936f50f027b0317fb9df777e2f1934", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/jsfiddle-integration.js", + "type": "file", + "name": "jsfiddle-integration.js", + "base_name": "jsfiddle-integration", + "extension": ".js", + "size": 403, + "date": "2018-03-12", + "sha1": "a8efdf5b2c5d67a2bd5caf3b716aefd13b334a81", + "md5": "ae8d7746c539e1a555f6743dbc0ab099", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/live_editor.js", + "type": "file", + "name": "live_editor.js", + "base_name": "live_editor", + "extension": ".js", + "size": 6112, + "date": "2018-03-12", + "sha1": "0219afde53e148d9ea8d31e1ccdd21461ff624a7", + "md5": "a5b175609a3463d043ff72fb038dbd5d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/examples", + "type": "directory", + "name": "examples", + "base_name": "examples", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 3355, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/examples/.eslintrc", + "type": "file", + "name": ".eslintrc", + "base_name": ".eslintrc", + "extension": "", + "size": 113, + "date": "2018-03-12", + "sha1": "6d576a7089bf958d231eaed198039ffe427a4cb9", + "md5": "dfef1194990ac5e33cfe8eff89720f94", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/examples/hello.js", + "type": "file", + "name": "hello.js", + "base_name": "hello", + "extension": ".js", + "size": 370, + "date": "2018-03-12", + "sha1": "b07cdce85e802d18689c70d655621940b394bafc", + "md5": "fc39c89d74e5c0e1192d3b4a2adb65f3", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/examples/markdown.js", + "type": "file", + "name": "markdown.js", + "base_name": "markdown", + "extension": ".js", + "size": 942, + "date": "2018-03-12", + "sha1": "42b8f19f75ccdfeb6131d768b545c9ac4a76ec7d", + "md5": "c855358b47ccd4d2a851e46d5f9b7d06", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/examples/timer.js", + "type": "file", + "name": "timer.js", + "base_name": "timer", + "extension": ".js", + "size": 675, + "date": "2018-03-12", + "sha1": "28be4bef3ca64125537e3e12203b416425ed8842", + "md5": "8fcf96787fc34be87424659eb10b9449", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_js/examples/todo.js", + "type": "file", + "name": "todo.js", + "base_name": "todo", + "extension": ".js", + "size": 1255, + "date": "2018-03-12", + "sha1": "1d70e105b4a2156dcd1f074084a2186725c9fd44", + "md5": "fafdf4f18d4628f3f403de1a8c931da6", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts", + "type": "directory", + "name": "_layouts", + "base_name": "_layouts", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 8318, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/community.html", + "type": "file", + "name": "community.html", + "base_name": "community", + "extension": ".html", + "size": 744, + "date": "2018-03-12", + "sha1": "494320f9e675a00d97c77883c8ead7773a3ec149", + "md5": "6004d1edfd9f188af0a36e12be5dfc5b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/contributing.html", + "type": "file", + "name": "contributing.html", + "base_name": "contributing", + "extension": ".html", + "size": 592, + "date": "2018-03-12", + "sha1": "3eb704a3e2f36429773d8cad24720ffce1781060", + "md5": "77dab4ebbf4e4724fa0546d31cdbb6b3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/default.html", + "type": "file", + "name": "default.html", + "base_name": "default", + "extension": ".html", + "size": 4114, + "date": "2018-03-12", + "sha1": "2df64130bdc3011e021fdd4d8c2c45f57ba0d293", + "md5": "c5d4ff1ababe8fdabca9e0842e657da3", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/docs.html", + "type": "file", + "name": "docs.html", + "base_name": "docs", + "extension": ".html", + "size": 720, + "date": "2018-03-12", + "sha1": "b171628113faa0d4cecc76180811611f0497c2c7", + "md5": "cc7dc39c27e80ae28b88f2b6b327ec8e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/hero.html", + "type": "file", + "name": "hero.html", + "base_name": "hero", + "extension": ".html", + "size": 149, + "date": "2018-03-12", + "sha1": "fb96f1b9697f32775f123c7647ce09a7b8c4e5aa", + "md5": "ea03f5a5f6fe0ad7ca95f2fc7834ee61", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/page.html", + "type": "file", + "name": "page.html", + "base_name": "page", + "extension": ".html", + "size": 83, + "date": "2018-03-12", + "sha1": "19c7578354d8171dfb7f26250cd85e7e8a6b6d38", + "md5": "75de6d4e9e452189025eacfb370cf887", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/post.html", + "type": "file", + "name": "post.html", + "base_name": "post", + "extension": ".html", + "size": 243, + "date": "2018-03-12", + "sha1": "4f41f17c44e491e9a6f5229919488f2e203f6c8b", + "md5": "50ec63b2d16ff9774b0a7ce63a35b6e3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/redirect.html", + "type": "file", + "name": "redirect.html", + "base_name": "redirect", + "extension": ".html", + "size": 324, + "date": "2018-03-12", + "sha1": "c30e0ba614cdd21122cff22f24b8f588276adb87", + "md5": "cbe992cfb07df0778310eb9c420d0982", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/single.html", + "type": "file", + "name": "single.html", + "base_name": "single", + "extension": ".html", + "size": 605, + "date": "2018-03-12", + "sha1": "d0ce8c85c409f8f2e2775e657ba5f9e7476269a3", + "md5": "36e9c35b90f53a152d22883cdf2ed630", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_layouts/tutorial.html", + "type": "file", + "name": "tutorial.html", + "base_name": "tutorial", + "extension": ".html", + "size": 744, + "date": "2018-03-12", + "sha1": "1b1dfd41252a65c32a103fd1b003dbc021609d3c", + "md5": "8f409caa4615e4a634852d32eb2b08c9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_plugins", + "type": "directory", + "name": "_plugins", + "base_name": "_plugins", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 3275, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_plugins/authors.rb", + "type": "file", + "name": "authors.rb", + "base_name": "authors", + "extension": ".rb", + "size": 818, + "date": "2018-03-12", + "sha1": "d581f3c722f2d9cb9a1bfd96b850098718299a42", + "md5": "b30f96d631c057eed228b58c459e7e22", + "mime_type": "text/x-ruby", + "file_type": "Ruby module source, ASCII text", + "programming_language": "Ruby", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_plugins/highlight_lines.rb", + "type": "file", + "name": "highlight_lines.rb", + "base_name": "highlight_lines", + "extension": ".rb", + "size": 1439, + "date": "2018-03-12", + "sha1": "842c14f52b66341756c0ddbd82b3352f63b7eefa", + "md5": "7d8cf1b4d18961305b8b686555f64c83", + "mime_type": "text/x-ruby", + "file_type": "Ruby module source, ASCII text", + "programming_language": "Ruby", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_plugins/sidebar_item.rb", + "type": "file", + "name": "sidebar_item.rb", + "base_name": "sidebar_item", + "extension": ".rb", + "size": 1018, + "date": "2018-03-12", + "sha1": "76a55f7cf0fae39693a9ea7d38c078b117cd3993", + "md5": "3732ce048ce937731427d9854526bb7b", + "mime_type": "text/x-ruby", + "file_type": "Ruby module source, ASCII text", + "programming_language": "Ruby", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts", + "type": "directory", + "name": "_posts", + "base_name": "_posts", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 115, + "dirs_count": 0, + "size_count": 669699, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-06-02-jsfiddle-integration.md", + "type": "file", + "name": "2013-06-02-jsfiddle-integration.md", + "base_name": "2013-06-02-jsfiddle-integration", + "extension": ".md", + "size": 802, + "date": "2018-03-12", + "sha1": "38e85c15e28ba956a92342f93d3e1f91e98f996f", + "md5": "d2f672fa6d064873576925f6afe07928", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-06-05-why-react.md", + "type": "file", + "name": "2013-06-05-why-react.md", + "base_name": "2013-06-05-why-react", + "extension": ".md", + "size": 3985, + "date": "2018-03-12", + "sha1": "89ae663ca035b31ee3673d49eb11f38e5d41d4d2", + "md5": "b02f5ac905fae0c2819b07e452667b7d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-06-12-community-roundup.md", + "type": "file", + "name": "2013-06-12-community-roundup.md", + "base_name": "2013-06-12-community-roundup", + "extension": ".md", + "size": 3718, + "date": "2018-03-12", + "sha1": "c76d0a3a59ac6e07be3e1f787488b81bf36823ee", + "md5": "9bbafe883cee14178832091284bfb4a6", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-06-19-community-roundup-2.md", + "type": "file", + "name": "2013-06-19-community-roundup-2.md", + "base_name": "2013-06-19-community-roundup-2", + "extension": ".md", + "size": 5362, + "date": "2018-03-12", + "sha1": "c32bced386bd2a4c411bc7e8588691a030a2a1f3", + "md5": "60de289e540affbd33c052dee2065864", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-06-21-react-v0-3-3.md", + "type": "file", + "name": "2013-06-21-react-v0-3-3.md", + "base_name": "2013-06-21-react-v0-3-3", + "extension": ".md", + "size": 984, + "date": "2018-03-12", + "sha1": "de794d3812781ed877bfb8b6cdf1629910ceb5b9", + "md5": "6828a52043b2bfd478e8e18f1bd29033", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-06-27-community-roundup-3.md", + "type": "file", + "name": "2013-06-27-community-roundup-3.md", + "base_name": "2013-06-27-community-roundup-3", + "extension": ".md", + "size": 5682, + "date": "2018-03-12", + "sha1": "288b36577918018c8e2b8c5cb1d38377ae003d24", + "md5": "308865954a880ba8c1497606efe1f3ac", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-07-02-react-v0-4-autobind-by-default.md", + "type": "file", + "name": "2013-07-02-react-v0-4-autobind-by-default.md", + "base_name": "2013-07-02-react-v0-4-autobind-by-default", + "extension": ".md", + "size": 2360, + "date": "2018-03-12", + "sha1": "be624a42429087f76b076244a5daf8469f81cd16", + "md5": "c19afd9122462dc0e79a83aaa1a6f89e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-07-03-community-roundup-4.md", + "type": "file", + "name": "2013-07-03-community-roundup-4.md", + "base_name": "2013-07-03-community-roundup-4", + "extension": ".md", + "size": 4358, + "date": "2018-03-12", + "sha1": "8a9da77fefb8eedddd21e01a77e78464466b140b", + "md5": "5c0ea9904cfba48bc01fa7cb97247d45", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-07-11-react-v0-4-prop-validation-and-default-values.md", + "type": "file", + "name": "2013-07-11-react-v0-4-prop-validation-and-default-values.md", + "base_name": "2013-07-11-react-v0-4-prop-validation-and-default-values", + "extension": ".md", + "size": 2131, + "date": "2018-03-12", + "sha1": "9018059d8a7d87e952533fb60f195ca23aa52675", + "md5": "59bb384bd6f95b97a1490e87845d60df", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-07-17-react-v0-4-0.md", + "type": "file", + "name": "2013-07-17-react-v0-4-0.md", + "base_name": "2013-07-17-react-v0-4-0", + "extension": ".md", + "size": 3467, + "date": "2018-03-12", + "sha1": "9f8c3dcf5aa0af3eaf82773d691533bbab0ec309", + "md5": "a3c3cfe83c8cf64b615994bec18fc75d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-07-23-community-roundup-5.md", + "type": "file", + "name": "2013-07-23-community-roundup-5.md", + "base_name": "2013-07-23-community-roundup-5", + "extension": ".md", + "size": 6630, + "date": "2018-03-12", + "sha1": "9fbb3f8eab6e0e3ce700da27b7e983fa4750e2dd", + "md5": "d5b71f01c19b2306a491818066178782", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-07-26-react-v0-4-1.md", + "type": "file", + "name": "2013-07-26-react-v0-4-1.md", + "base_name": "2013-07-26-react-v0-4-1", + "extension": ".md", + "size": 826, + "date": "2018-03-12", + "sha1": "f20174f363d232c9d5ac74f194481935c9d6c08e", + "md5": "59c56227023cd4f63d26ec9bc8c1b0d8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-07-30-use-react-and-jsx-in-ruby-on-rails.md", + "type": "file", + "name": "2013-07-30-use-react-and-jsx-in-ruby-on-rails.md", + "base_name": "2013-07-30-use-react-and-jsx-in-ruby-on-rails", + "extension": ".md", + "size": 1921, + "date": "2018-03-12", + "sha1": "ca985b774c708f50803c4f3c27f0fa880fa9fb7a", + "md5": "d273ad902c002f4fc0851d3dbf66eff1", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-08-05-community-roundup-6.md", + "type": "file", + "name": "2013-08-05-community-roundup-6.md", + "base_name": "2013-08-05-community-roundup-6", + "extension": ".md", + "size": 3743, + "date": "2018-03-12", + "sha1": "a760a659fc485524b1c71bb7296cf1c9ca314a74", + "md5": "6324e13a51314579225e7294414aec49", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Land of Lisp (http://landoflisp.com/)" + ], + "start_line": 74, + "end_line": 74 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-08-19-use-react-and-jsx-in-python-applications.md", + "type": "file", + "name": "2013-08-19-use-react-and-jsx-in-python-applications.md", + "base_name": "2013-08-19-use-react-and-jsx-in-python-applications", + "extension": ".md", + "size": 2034, + "date": "2018-03-12", + "sha1": "681a7861d65a6616e68a3c710793fe1bf5c5e9a2", + "md5": "724f00ac14de09fa6dc3777236d796c2", + "mime_type": "text/x-python", + "file_type": "Python script, ASCII text executable, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-08-26-community-roundup-7.md", + "type": "file", + "name": "2013-08-26-community-roundup-7.md", + "base_name": "2013-08-26-community-roundup-7", + "extension": ".md", + "size": 4067, + "date": "2018-03-12", + "sha1": "3a8efb9238f2d382504afb376cd97f046e4cfe89", + "md5": "60511b67a706796fb4b833976b3667ef", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-09-24-community-roundup-8.md", + "type": "file", + "name": "2013-09-24-community-roundup-8.md", + "base_name": "2013-09-24-community-roundup-8", + "extension": ".md", + "size": 7337, + "date": "2018-03-12", + "sha1": "4eb6f11581d09b1f864a304270c815d9f191f2e0", + "md5": "aaae00f4def2cd7f0f11187f0e133fb0", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-10-16-react-v0.5.0.md", + "type": "file", + "name": "2013-10-16-react-v0.5.0.md", + "base_name": "2013-10-16-react-v0.5.0", + "extension": ".md", + "size": 4204, + "date": "2018-03-12", + "sha1": "73bfbe669c79a31ff9a1d50ebd7fc4b1a89b5535", + "md5": "e927cd9f72d9edb5db3a42ab463e032d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-10-29-react-v0-5-1.md", + "type": "file", + "name": "2013-10-29-react-v0-5-1.md", + "base_name": "2013-10-29-react-v0-5-1", + "extension": ".md", + "size": 802, + "date": "2018-03-12", + "sha1": "f96d6678b40bb274345fedb727d4b2a3149af1cc", + "md5": "3cf66ffff6d3527e021885a8a7f8402a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-10-3-community-roundup-9.md", + "type": "file", + "name": "2013-10-3-community-roundup-9.md", + "base_name": "2013-10-3-community-roundup-9", + "extension": ".md", + "size": 4448, + "date": "2018-03-12", + "sha1": "4e711e856842046e79bbe7de50270be4034b221f", + "md5": "e4d1467b23a3de82a0b80845f3c8c51a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-11-06-community-roundup-10.md", + "type": "file", + "name": "2013-11-06-community-roundup-10.md", + "base_name": "2013-11-06-community-roundup-10", + "extension": ".md", + "size": 8386, + "date": "2018-03-12", + "sha1": "e5dd4edc4847627239f0f755549e7c4d03d247c5", + "md5": "44fbacb6344a21840098fcb3b325bfe3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-11-18-community-roundup-11.md", + "type": "file", + "name": "2013-11-18-community-roundup-11.md", + "base_name": "2013-11-18-community-roundup-11", + "extension": ".md", + "size": 6362, + "date": "2018-03-12", + "sha1": "95b09ac7e846123452b5dc28553b164408874775", + "md5": "ae74a9cd8153605b7d70058f1bd8d169", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-12-18-react-v0.5.2-v0.4.2.md", + "type": "file", + "name": "2013-12-18-react-v0.5.2-v0.4.2.md", + "base_name": "2013-12-18-react-v0.5.2-v0.4.2", + "extension": ".md", + "size": 1781, + "date": "2018-03-12", + "sha1": "860e5f0f09d064e1814c9129e71cb1c7ea0667a7", + "md5": "b7f6b3bf1b2e9202f36a6a38430e217a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-12-19-react-v0.8.0.md", + "type": "file", + "name": "2013-12-19-react-v0.8.0.md", + "base_name": "2013-12-19-react-v0.8.0", + "extension": ".md", + "size": 2433, + "date": "2018-03-12", + "sha1": "84f73c35750960003164805c798088e592bca525", + "md5": "b96d863e8825e5aaad39de44fc88689a", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-12-23-community-roundup-12.md", + "type": "file", + "name": "2013-12-23-community-roundup-12.md", + "base_name": "2013-12-23-community-roundup-12", + "extension": ".md", + "size": 6121, + "date": "2018-03-12", + "sha1": "60371a4a4acb8378c154bf3fd4aea6a184ad5617", + "md5": "a5714b1d99757ac7a1545ec62d6034ff", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2013-12-30-community-roundup-13.md", + "type": "file", + "name": "2013-12-30-community-roundup-13.md", + "base_name": "2013-12-30-community-roundup-13", + "extension": ".md", + "size": 5124, + "date": "2018-03-12", + "sha1": "a2498e55d6d475c29af700e54cc9573322eafee8", + "md5": "925b8d025c925a3be796c948880b9bc2", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Facebook alongside React." + ], + "start_line": 106, + "end_line": 106 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-01-02-react-chrome-developer-tools.md", + "type": "file", + "name": "2014-01-02-react-chrome-developer-tools.md", + "base_name": "2014-01-02-react-chrome-developer-tools", + "extension": ".md", + "size": 1901, + "date": "2018-03-12", + "sha1": "772035314c98d6c6b5b190845d563b6f2802128f", + "md5": "0f2f64be7da41478a2a16979a2f0699e", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-01-06-community-roundup-14.md", + "type": "file", + "name": "2014-01-06-community-roundup-14.md", + "base_name": "2014-01-06-community-roundup-14", + "extension": ".md", + "size": 4419, + "date": "2018-03-12", + "sha1": "c820a2f64f813faceb3e37ebb6bdef40f6a6c57f", + "md5": "1506c427aa444ad68503af3be42f0b26", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-02-05-community-roundup-15.md", + "type": "file", + "name": "2014-02-05-community-roundup-15.md", + "base_name": "2014-02-05-community-roundup-15", + "extension": ".md", + "size": 7318, + "date": "2018-03-12", + "sha1": "eb9eb94bbbbd97e3eb45e8a8e7353551d8cb1a85", + "md5": "e2f74440280486d89243cd5c7eb69f97", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-02-15-community-roundup-16.md", + "type": "file", + "name": "2014-02-15-community-roundup-16.md", + "base_name": "2014-02-15-community-roundup-16", + "extension": ".md", + "size": 6998, + "date": "2018-03-12", + "sha1": "c731e817428b3bfba835c0d4eb09939abdde37e4", + "md5": "4d75ece445ca8f038232a39e08c665eb", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-02-16-react-v0.9-rc1.md", + "type": "file", + "name": "2014-02-16-react-v0.9-rc1.md", + "base_name": "2014-02-16-react-v0.9-rc1", + "extension": ".md", + "size": 7726, + "date": "2018-03-12", + "sha1": "a205b26a354979ec43b32bf5c008b94059e05ce7", + "md5": "cc443afca11a4f44735e0f3302570099", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-02-20-react-v0.9.md", + "type": "file", + "name": "2014-02-20-react-v0.9.md", + "base_name": "2014-02-20-react-v0.9", + "extension": ".md", + "size": 8840, + "date": "2018-03-12", + "sha1": "5816a2acd41d411f46b9acfb43c9d2cedd79027e", + "md5": "04b0981e1b7650562705f053afd10176", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-02-24-community-roundup-17.md", + "type": "file", + "name": "2014-02-24-community-roundup-17.md", + "base_name": "2014-02-24-community-roundup-17", + "extension": ".md", + "size": 5891, + "date": "2018-03-12", + "sha1": "0321f7e32ae2aff54435bae77d59bcf3c314ac97", + "md5": "f7f799d490fc000e2fd97a541bc33975", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-03-14-community-roundup-18.md", + "type": "file", + "name": "2014-03-14-community-roundup-18.md", + "base_name": "2014-03-14-community-roundup-18", + "extension": ".md", + "size": 7896, + "date": "2018-03-12", + "sha1": "2ea106f6ee5cdb0516168fef38ff92ebf470f610", + "md5": "783e44b4d3765ee5d3dfcfc58f0b19c2", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-03-19-react-v0.10-rc1.md", + "type": "file", + "name": "2014-03-19-react-v0.10-rc1.md", + "base_name": "2014-03-19-react-v0.10-rc1", + "extension": ".md", + "size": 4229, + "date": "2018-03-12", + "sha1": "2d8c5de6e5ddf9829a0242226640b16795e669c5", + "md5": "65ef4b2a767f321f6527a79c53e2b92d", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-03-21-react-v0.10.md", + "type": "file", + "name": "2014-03-21-react-v0.10.md", + "base_name": "2014-03-21-react-v0.10", + "extension": ".md", + "size": 4295, + "date": "2018-03-12", + "sha1": "c4a07b8cf2270c8ec585549b2829075a3601f76f", + "md5": "b8440dc383add5de46a14a7c4a7f8806", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-03-28-the-road-to-1.0.md", + "type": "file", + "name": "2014-03-28-the-road-to-1.0.md", + "base_name": "2014-03-28-the-road-to-1.0", + "extension": ".md", + "size": 4558, + "date": "2018-03-12", + "sha1": "6d6e2bd848237b2be9efb3f87cd75e463d4ed198", + "md5": "b71f16b590081dbb468f4ea91e4a2cf6", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-04-04-reactnet.md", + "type": "file", + "name": "2014-04-04-reactnet.md", + "base_name": "2014-04-04-reactnet", + "extension": ".md", + "size": 1594, + "date": "2018-03-12", + "sha1": "3494e18b2a0eaf94b41e375a61e0431980636cc7", + "md5": "a94ba51627b94de88a13dbd1c593791d", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-05-06-flux.md", + "type": "file", + "name": "2014-05-06-flux.md", + "base_name": "2014-05-06-flux", + "extension": ".md", + "size": 2023, + "date": "2018-03-12", + "sha1": "160129b5cf59e6f7cc50874c454d340f09d96f7f", + "md5": "fb0c679609b0473afb6cf5d5b1d377c4", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-05-29-one-year-of-open-source-react.md", + "type": "file", + "name": "2014-05-29-one-year-of-open-source-react.md", + "base_name": "2014-05-29-one-year-of-open-source-react", + "extension": ".md", + "size": 2279, + "date": "2018-03-12", + "sha1": "d44acbcc233f2101e1efa01517abf5137a1ec5b5", + "md5": "6e2a5676cf07beda5d71b9f6d64c66b5", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-06-27-community-roundup-19.md", + "type": "file", + "name": "2014-06-27-community-roundup-19.md", + "base_name": "2014-06-27-community-roundup-19", + "extension": ".md", + "size": 5554, + "date": "2018-03-12", + "sha1": "8a03a5825a93b6a6ab766a5426433da7f421b5a9", + "md5": "e16c065bfaa0df12a8b93b3438c731fa", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-07-13-react-v0.11-rc1.md", + "type": "file", + "name": "2014-07-13-react-v0.11-rc1.md", + "base_name": "2014-07-13-react-v0.11-rc1", + "extension": ".md", + "size": 6247, + "date": "2018-03-12", + "sha1": "e3fb2af7986ca34b1632f3ff13af356eee1a8cae", + "md5": "d8b0f065465ee0e2f8fbae840b60ea20", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-07-17-react-v0.11.md", + "type": "file", + "name": "2014-07-17-react-v0.11.md", + "base_name": "2014-07-17-react-v0.11", + "extension": ".md", + "size": 9322, + "date": "2018-03-12", + "sha1": "857ae59d36b181caabc83a2447e08984bc901c8e", + "md5": "28908ec2e52d12dee944a4092477c17b", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-07-25-react-v0.11.1.md", + "type": "file", + "name": "2014-07-25-react-v0.11.1.md", + "base_name": "2014-07-25-react-v0.11.1", + "extension": ".md", + "size": 2646, + "date": "2018-03-12", + "sha1": "fd39a92b443d49d877dcdaf8a57476aee3d1091c", + "md5": "c21dcf235ae360c440e0c6dd33ac93ff", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-07-28-community-roundup-20.md", + "type": "file", + "name": "2014-07-28-community-roundup-20.md", + "base_name": "2014-07-28-community-roundup-20", + "extension": ".md", + "size": 6021, + "date": "2018-03-12", + "sha1": "d7cbcffb84a2e0b542c4f0258072b8e87817edbe", + "md5": "4820df5f04a79742e959c460f1653a1e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-07-30-flux-actions-and-the-dispatcher.md", + "type": "file", + "name": "2014-07-30-flux-actions-and-the-dispatcher.md", + "base_name": "2014-07-30-flux-actions-and-the-dispatcher", + "extension": ".md", + "size": 5887, + "date": "2018-03-12", + "sha1": "470c7c2fe37a0441537d5f8b1acffa831bf9a368", + "md5": "1b5a79ed9b2bfe184628a21130a94874", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-08-03-community-roundup-21.md", + "type": "file", + "name": "2014-08-03-community-roundup-21.md", + "base_name": "2014-08-03-community-roundup-21", + "extension": ".md", + "size": 5760, + "date": "2018-03-12", + "sha1": "88e46cd611b3746e50d290be506ce033bfe74dc3", + "md5": "8d9bce0e54835355567d96f4a6bac634", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "JavaScript Framework Guide (http://www.funnyant.com/javascript-framework-guide/)" + ], + "start_line": 36, + "end_line": 36 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-09-03-introducing-the-jsx-specification.md", + "type": "file", + "name": "2014-09-03-introducing-the-jsx-specification.md", + "base_name": "2014-09-03-introducing-the-jsx-specification", + "extension": ".md", + "size": 1112, + "date": "2018-03-12", + "sha1": "8f91544731e75cb5302b04ed321aceec593769c8", + "md5": "79e311f7b02067318d660ec1194a7b70", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-09-12-community-round-up-22.md", + "type": "file", + "name": "2014-09-12-community-round-up-22.md", + "base_name": "2014-09-12-community-round-up-22", + "extension": ".md", + "size": 6565, + "date": "2018-03-12", + "sha1": "eee043f064ea4b43df73baf31b532765960dc974", + "md5": "c31f89aeae0d21f8e109689217372b68", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-09-16-react-v0.11.2.md", + "type": "file", + "name": "2014-09-16-react-v0.11.2.md", + "base_name": "2014-09-16-react-v0.11.2", + "extension": ".md", + "size": 2615, + "date": "2018-03-12", + "sha1": "79ec88ecfbd4e1475cb6896ca58a89ffa04dfe09", + "md5": "ee487003bcee4f58412f02993d5cded6", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-09-24-testing-flux-applications.md", + "type": "file", + "name": "2014-09-24-testing-flux-applications.md", + "base_name": "2014-09-24-testing-flux-applications", + "extension": ".md", + "size": 12134, + "date": "2018-03-12", + "sha1": "105ee3ad3981eff521588ece4ca5fca5c5fec965", + "md5": "25c58bf887b3429ebbb6fa2a9388c65e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-10-14-introducing-react-elements.md", + "type": "file", + "name": "2014-10-14-introducing-react-elements.md", + "base_name": "2014-10-14-introducing-react-elements", + "extension": ".md", + "size": 8582, + "date": "2018-03-12", + "sha1": "d4141f5a3135ef6c237cee2ac52bb33bea893f17", + "md5": "8a3eec4f5f52540d7adbfe9a9ff88a19", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-10-16-react-v0.12-rc1.md", + "type": "file", + "name": "2014-10-16-react-v0.12-rc1.md", + "base_name": "2014-10-16-react-v0.12-rc1", + "extension": ".md", + "size": 7504, + "date": "2018-03-12", + "sha1": "7200b9620459941211d79d1c567e093ac1981322", + "md5": "867fe34be60462d940493dd48cce6372", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-10-17-community-roundup-23.md", + "type": "file", + "name": "2014-10-17-community-roundup-23.md", + "base_name": "2014-10-17-community-roundup-23", + "extension": ".md", + "size": 9210, + "date": "2018-03-12", + "sha1": "6374c45688ffb11d487047c7583d2f4952c867bf", + "md5": "bbeefa5fddc5d92d74f1e52f65e60d71", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Fatih Kadir Akin (https://github.com/f)." + ], + "start_line": 131, + "end_line": 131 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-10-27-react-js-conf.md", + "type": "file", + "name": "2014-10-27-react-js-conf.md", + "base_name": "2014-10-27-react-js-conf", + "extension": ".md", + "size": 1144, + "date": "2018-03-12", + "sha1": "5fcbca091f7868d839ca035fc042fdcd13428472", + "md5": "f04eb9f8b165ed6d2703c711b4e53ec2", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-10-28-react-v0.12.md", + "type": "file", + "name": "2014-10-28-react-v0.12.md", + "base_name": "2014-10-28-react-v0.12", + "extension": ".md", + "size": 7429, + "date": "2018-03-12", + "sha1": "a4709aae8a30bb54ec4f0880374c0c864f446ff0", + "md5": "0ac18fd1558f616b7ad035da028c0952", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 15.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 49, + "end_line": 49, + "matched_rule": { + "identifier": "bsd-new_10.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + }, + { + "key": "bsd-new", + "score": 10.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 62, + "end_line": 62, + "matched_rule": { + "identifier": "bsd-new_169.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-11-24-react-js-conf-updates.md", + "type": "file", + "name": "2014-11-24-react-js-conf-updates.md", + "base_name": "2014-11-24-react-js-conf-updates", + "extension": ".md", + "size": 2019, + "date": "2018-03-12", + "sha1": "93076f8c286c53a22dbcae365a5eb1741c51f3b4", + "md5": "8c1a68b868fb648e014db433f3772531", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-11-25-community-roundup-24.md", + "type": "file", + "name": "2014-11-25-community-roundup-24.md", + "base_name": "2014-11-25-community-roundup-24", + "extension": ".md", + "size": 9716, + "date": "2018-03-12", + "sha1": "77cd9fdf5644d2df3400b1b443b7565d293b1d88", + "md5": "b8ad49e67fb7d5b7cc0760a2bccf2357", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "William Boyd. Dive" + ], + "start_line": 45, + "end_line": 45 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-12-18-react-v0.12.2.md", + "type": "file", + "name": "2014-12-18-react-v0.12.2.md", + "base_name": "2014-12-18-react-v0.12.2", + "extension": ".md", + "size": 1861, + "date": "2018-03-12", + "sha1": "8c1102dc34c423412764706f3ae9ae5217f683d1", + "md5": "b746f2b0f9bd36deec0715ed0b20d9ef", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2014-12-19-react-js-conf-diversity-scholarship.md", + "type": "file", + "name": "2014-12-19-react-js-conf-diversity-scholarship.md", + "base_name": "2014-12-19-react-js-conf-diversity-scholarship", + "extension": ".md", + "size": 3107, + "date": "2018-03-12", + "sha1": "1ce9be71ac9a89b451ed4ddd01e952a9baf1a81c", + "md5": "69d80b32f23176ca5a893e81139c484f", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-01-27-react-v0.13.0-beta-1.md", + "type": "file", + "name": "2015-01-27-react-v0.13.0-beta-1.md", + "base_name": "2015-01-27-react-v0.13.0-beta-1", + "extension": ".md", + "size": 5821, + "date": "2018-03-12", + "sha1": "7301366f8db1dae5a22609b250eae86175fe00f7", + "md5": "94a485b652c84996bc99912d81c8d18c", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-02-18-react-conf-roundup-2015.md", + "type": "file", + "name": "2015-02-18-react-conf-roundup-2015.md", + "base_name": "2015-02-18-react-conf-roundup-2015", + "extension": ".md", + "size": 16977, + "date": "2018-03-12", + "sha1": "0a24984e590992f35e594735207fcbdb0196f0a8", + "md5": "018242be61327ecc032c66d7958b8db0", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-02-20-introducing-relay-and-graphql.md", + "type": "file", + "name": "2015-02-20-introducing-relay-and-graphql.md", + "base_name": "2015-02-20-introducing-relay-and-graphql", + "extension": ".md", + "size": 8046, + "date": "2018-03-12", + "sha1": "4b9a69dbd09a5abee81c5a4d938697b6edba3045", + "md5": "ace77a5d9130647e57e4520efc1f55f5", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-02-24-react-v0.13-rc1.md", + "type": "file", + "name": "2015-02-24-react-v0.13-rc1.md", + "base_name": "2015-02-24-react-v0.13-rc1", + "extension": ".md", + "size": 4972, + "date": "2018-03-12", + "sha1": "b5b493ee06cef99237ec38e65fe4e39069895393", + "md5": "52b34c87c95e949a948d8742a39e0e6d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-02-24-streamlining-react-elements.md", + "type": "file", + "name": "2015-02-24-streamlining-react-elements.md", + "base_name": "2015-02-24-streamlining-react-elements", + "extension": ".md", + "size": 11521, + "date": "2018-03-12", + "sha1": "706e345200d342d29f8d603890dc91aea2f5ad37", + "md5": "53cf27d893904e805eca7901ea2a51e3", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-03-03-react-v0.13-rc2.md", + "type": "file", + "name": "2015-03-03-react-v0.13-rc2.md", + "base_name": "2015-03-03-react-v0.13-rc2", + "extension": ".md", + "size": 3569, + "date": "2018-03-12", + "sha1": "c663c55d89ad0319c30d988332a111f003346973", + "md5": "2bc45c509c28747e05205f5aa31fe446", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-03-04-community-roundup-25.md", + "type": "file", + "name": "2015-03-04-community-roundup-25.md", + "base_name": "2015-03-04-community-roundup-25", + "extension": ".md", + "size": 6345, + "date": "2018-03-12", + "sha1": "c8defa2dbd1b20b868d5bc440e840d406b404ea2", + "md5": "951f73ca2a18e9e6b0d22c526d255dda", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-03-10-react-v0.13.md", + "type": "file", + "name": "2015-03-10-react-v0.13.md", + "base_name": "2015-03-10-react-v0.13", + "extension": ".md", + "size": 6658, + "date": "2018-03-12", + "sha1": "3e30e3ecb9684a7990aa60ee2e3c43eccbf17359", + "md5": "1deb58d6d4b830f1ab40d12672909816", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-03-16-react-v0.13.1.md", + "type": "file", + "name": "2015-03-16-react-v0.13.1.md", + "base_name": "2015-03-16-react-v0.13.1", + "extension": ".md", + "size": 1576, + "date": "2018-03-12", + "sha1": "d476eb3dda87a6b47aa13465ad13d5115a7ac180", + "md5": "fdb21fbe1c81307ac5c1fb2c0a0da85e", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-03-19-building-the-facebook-news-feed-with-relay.md", + "type": "file", + "name": "2015-03-19-building-the-facebook-news-feed-with-relay.md", + "base_name": "2015-03-19-building-the-facebook-news-feed-with-relay", + "extension": ".md", + "size": 8996, + "date": "2018-03-12", + "sha1": "e2691deb6425f6907857ccedeb719bea4d1c92b0", + "md5": "ff8daab3f6415bcb48e9c48675c58ca5", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-03-26-introducing-react-native.md", + "type": "file", + "name": "2015-03-26-introducing-react-native.md", + "base_name": "2015-03-26-introducing-react-native", + "extension": ".md", + "size": 1561, + "date": "2018-03-12", + "sha1": "cd3659fc32e93a67659ee16ab98c13c8154ac82e", + "md5": "c3809eadb8d821239b93ad41dcce6adb", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-03-30-community-roundup-26.md", + "type": "file", + "name": "2015-03-30-community-roundup-26.md", + "base_name": "2015-03-30-community-roundup-26", + "extension": ".md", + "size": 5733, + "date": "2018-03-12", + "sha1": "b6f39f7c1e02371d523fda4bc9ec93505ec4e034", + "md5": "4c85633cf000827b3f8f34d864c6f1d2", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-04-17-react-native-v0.4.md", + "type": "file", + "name": "2015-04-17-react-native-v0.4.md", + "base_name": "2015-04-17-react-native-v0.4", + "extension": ".md", + "size": 3181, + "date": "2018-03-12", + "sha1": "d71abc1d874347d320e2b2193a3d502b75d23361", + "md5": "4218b2110cab30f053dc0d8edb10883f", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-04-18-react-v0.13.2.md", + "type": "file", + "name": "2015-04-18-react-v0.13.2.md", + "base_name": "2015-04-18-react-v0.13.2", + "extension": ".md", + "size": 1746, + "date": "2018-03-12", + "sha1": "594ed58d267a2e19e45fd7cfe174266377802a59", + "md5": "031c16f0e7153d99f118a1d366b46918", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-05-01-graphql-introduction.md", + "type": "file", + "name": "2015-05-01-graphql-introduction.md", + "base_name": "2015-05-01-graphql-introduction", + "extension": ".md", + "size": 13271, + "date": "2018-03-12", + "sha1": "f1d5699c2f4921bcb8975293b33b9c2c25dec230", + "md5": "0ee038e602a2f7e309403ac2a7bbb8ea", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-05-08-react-v0.13.3.md", + "type": "file", + "name": "2015-05-08-react-v0.13.3.md", + "base_name": "2015-05-08-react-v0.13.3", + "extension": ".md", + "size": 1463, + "date": "2018-03-12", + "sha1": "f35276e39ced7f6b829db8520c95725c11b3f0ec", + "md5": "d7d51b721d8fb08ae1ff3e8e396946bd", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-05-22-react-native-release-process.md", + "type": "file", + "name": "2015-05-22-react-native-release-process.md", + "base_name": "2015-05-22-react-native-release-process", + "extension": ".md", + "size": 1978, + "date": "2018-03-12", + "sha1": "6cd88f852e95092d21368e601510455c46d559e3", + "md5": "4141e0b8765423191006ba9fd2993aa7", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-06-12-deprecating-jstransform-and-react-tools.md", + "type": "file", + "name": "2015-06-12-deprecating-jstransform-and-react-tools.md", + "base_name": "2015-06-12-deprecating-jstransform-and-react-tools", + "extension": ".md", + "size": 2909, + "date": "2018-03-12", + "sha1": "41fd763a99b0e21f7a7a121f95c4bdf2c04c5db8", + "md5": "4071ebc67e99baf12759c43faa76d162", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-07-03-react-v0.14-beta-1.md", + "type": "file", + "name": "2015-07-03-react-v0.14-beta-1.md", + "base_name": "2015-07-03-react-v0.14-beta-1", + "extension": ".md", + "size": 6676, + "date": "2018-03-12", + "sha1": "fc1d81954fcfe73d88b8d30ecf79f28b32f5ed4b", + "md5": "8d8b893b1e23eb5051f4e8bc7db1585c", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-08-03-new-react-devtools-beta.md", + "type": "file", + "name": "2015-08-03-new-react-devtools-beta.md", + "base_name": "2015-08-03-new-react-devtools-beta", + "extension": ".md", + "size": 2888, + "date": "2018-03-12", + "sha1": "0f7e983f7125f5c5ba6aa9678e0c9fd3a377beeb", + "md5": "1ab3dca2ceef3a9642619ae17aae3e09", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-08-11-relay-technical-preview.md", + "type": "file", + "name": "2015-08-11-relay-technical-preview.md", + "base_name": "2015-08-11-relay-technical-preview", + "extension": ".md", + "size": 3437, + "date": "2018-03-12", + "sha1": "d2550a8fd1eb8ab8511959e90313a5689ed1df87", + "md5": "39b095c7b8f31b68eabd5790cb3a13e7", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-08-13-reacteurope-roundup.md", + "type": "file", + "name": "2015-08-13-reacteurope-roundup.md", + "base_name": "2015-08-13-reacteurope-roundup", + "extension": ".md", + "size": 8004, + "date": "2018-03-12", + "sha1": "c00326cb1d106fd3b25282246df042cd39512347", + "md5": "e9e16210d558317f6e6c9c76ad22c2a1", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-09-02-new-react-developer-tools.md", + "type": "file", + "name": "2015-09-02-new-react-developer-tools.md", + "base_name": "2015-09-02-new-react-developer-tools", + "extension": ".md", + "size": 1767, + "date": "2018-03-12", + "sha1": "bd048a0906286aecdddee274819c6d7a78842f64", + "md5": "100843e2d49e348ba1cf04a08c914ae3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-09-10-react-v0.14-rc1.md", + "type": "file", + "name": "2015-09-10-react-v0.14-rc1.md", + "base_name": "2015-09-10-react-v0.14-rc1", + "extension": ".md", + "size": 15546, + "date": "2018-03-12", + "sha1": "b40e7f1da92b00cc0ab3fa67e51dbd9f03327ae7", + "md5": "c4f5b4e4f68532451db2dfb9c302d92a", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "ES2015 (ES6) Symbol (http://www.2ality.com/2014/12/es6-symbols.html)" + ], + "start_line": 151, + "end_line": 154 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-09-14-community-roundup-27.md", + "type": "file", + "name": "2015-09-14-community-roundup-27.md", + "base_name": "2015-09-14-community-roundup-27", + "extension": ".md", + "size": 8847, + "date": "2018-03-12", + "sha1": "fdc8f05ea7454e6f91c396896ce465701592a7ec", + "md5": "a4a67eb6326b71b853db6fd89d238a12", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-10-01-react-render-and-top-level-api.md", + "type": "file", + "name": "2015-10-01-react-render-and-top-level-api.md", + "base_name": "2015-10-01-react-render-and-top-level-api", + "extension": ".md", + "size": 5329, + "date": "2018-03-12", + "sha1": "19917810261455a732df575dd616d17e7ada0436", + "md5": "983506b8b075f42c9db5cb3be0076f60", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-10-07-react-v0.14.md", + "type": "file", + "name": "2015-10-07-react-v0.14.md", + "base_name": "2015-10-07-react-v0.14", + "extension": ".md", + "size": 17203, + "date": "2018-03-12", + "sha1": "5a56e8b82b5e3524e03d1ec9287dcc971dd7a91f", + "md5": "5b140ad4ba772fe13869dcb1a322abdb", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "ES2015 (ES6) Symbol (http://www.2ality.com/2014/12/es6-symbols.html)" + ], + "start_line": 175, + "end_line": 178 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-10-19-reactiflux-is-moving-to-discord.md", + "type": "file", + "name": "2015-10-19-reactiflux-is-moving-to-discord.md", + "base_name": "2015-10-19-reactiflux-is-moving-to-discord", + "extension": ".md", + "size": 5980, + "date": "2018-03-12", + "sha1": "93527c8d44cb2ddfb2a02b5fcd5b5fe8266a8bc1", + "md5": "3c51d7168f308d6aa50262967a8e44fd", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-10-28-react-v0.14.1.md", + "type": "file", + "name": "2015-10-28-react-v0.14.1.md", + "base_name": "2015-10-28-react-v0.14.1", + "extension": ".md", + "size": 1624, + "date": "2018-03-12", + "sha1": "fe076a29573badd9425af79ab922eac4dc5e47ad", + "md5": "91e03e2f37ea7f563728ab79dd78082d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-11-02-react-v0.14.2.md", + "type": "file", + "name": "2015-11-02-react-v0.14.2.md", + "base_name": "2015-11-02-react-v0.14.2", + "extension": ".md", + "size": 1945, + "date": "2018-03-12", + "sha1": "c5cb791d3dfbcb994b5b47e4cef951c193782b16", + "md5": "45ea1fbfc21370b56e9a205730a87249", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-11-18-react-v0.14.3.md", + "type": "file", + "name": "2015-11-18-react-v0.14.3.md", + "base_name": "2015-11-18-react-v0.14.3", + "extension": ".md", + "size": 2238, + "date": "2018-03-12", + "sha1": "876687fd88d43b9c78d4082df201cb331257b6b8", + "md5": "e37b9dfcfa1c2dfb055ce8c6ea4a3f8f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-12-04-react-js-conf-2016-diversity-scholarship.md", + "type": "file", + "name": "2015-12-04-react-js-conf-2016-diversity-scholarship.md", + "base_name": "2015-12-04-react-js-conf-2016-diversity-scholarship", + "extension": ".md", + "size": 4020, + "date": "2018-03-12", + "sha1": "19b09ec393eca135a2b5ec229f287a4b69fae7c8", + "md5": "063ca0ddfda317dfd414bcdc535a52ac", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "11:59 PST Applications" + ], + "start_line": 36, + "end_line": 38 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-12-16-ismounted-antipattern.md", + "type": "file", + "name": "2015-12-16-ismounted-antipattern.md", + "base_name": "2015-12-16-ismounted-antipattern", + "extension": ".md", + "size": 3490, + "date": "2018-03-12", + "sha1": "af40acbb0749f496f21b62d7a782379026c03657", + "md5": "9faa5a92c9ffdc1282e26f52de3d71e6", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-12-18-react-components-elements-and-instances.md", + "type": "file", + "name": "2015-12-18-react-components-elements-and-instances.md", + "base_name": "2015-12-18-react-components-elements-and-instances", + "extension": ".md", + "size": 14475, + "date": "2018-03-12", + "sha1": "5c40ed091324455afe39cfc05a7df2abe33b2fe3", + "md5": "f9e62c460af5a924ede0ca5242d6d7f0", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2015-12-29-react-v0.14.4.md", + "type": "file", + "name": "2015-12-29-react-v0.14.4.md", + "base_name": "2015-12-29-react-v0.14.4", + "extension": ".md", + "size": 1525, + "date": "2018-03-12", + "sha1": "b9123bc6cdb0d975a1d071f93638725d7a14c563", + "md5": "251e41711a1cfbbd6c6bf821b5daa627", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-01-08-A-implies-B-does-not-imply-B-implies-A.md", + "type": "file", + "name": "2016-01-08-A-implies-B-does-not-imply-B-implies-A.md", + "base_name": "2016-01-08-A-implies-B-does-not-imply-B-implies-A", + "extension": ".md", + "size": 4186, + "date": "2018-03-12", + "sha1": "4edbbb9d8f8fa9f121c02ac8f39b3e7cc1e46b80", + "md5": "b18f0a46948c6d6497b5409649e8ea60", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-01-12-discontinuing-ie8-support.md", + "type": "file", + "name": "2016-01-12-discontinuing-ie8-support.md", + "base_name": "2016-01-12-discontinuing-ie8-support", + "extension": ".md", + "size": 1036, + "date": "2018-03-12", + "sha1": "e27fcadfe64ccf2a99c6bf26f10ecf4c8345688f", + "md5": "1afef7e17716da386e30620f58ffca35", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-02-19-new-versioning-scheme.md", + "type": "file", + "name": "2016-02-19-new-versioning-scheme.md", + "base_name": "2016-02-19-new-versioning-scheme", + "extension": ".md", + "size": 4255, + "date": "2018-03-12", + "sha1": "e2a2f5e80e874a45643cd178c47b422743d105f6", + "md5": "9ca14b825eac202f7ba213d596e4bbcd", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-03-07-react-v15-rc1.md", + "type": "file", + "name": "2016-03-07-react-v15-rc1.md", + "base_name": "2016-03-07-react-v15-rc1", + "extension": ".md", + "size": 10056, + "date": "2018-03-12", + "sha1": "902a8ccdcd810d55721ea018db8d17f1c68aca5f", + "md5": "ae54c71376190a9029c3274073aebc55", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-03-16-react-v15-rc2.md", + "type": "file", + "name": "2016-03-16-react-v15-rc2.md", + "base_name": "2016-03-16-react-v15-rc2", + "extension": ".md", + "size": 3182, + "date": "2018-03-12", + "sha1": "3ca5933711e7ca0e76769f6e95a305753e5a6a57", + "md5": "2d35e2b36db970f1482c77d159e1fc4a", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-03-29-react-v0.14.8.md", + "type": "file", + "name": "2016-03-29-react-v0.14.8.md", + "base_name": "2016-03-29-react-v0.14.8", + "extension": ".md", + "size": 1531, + "date": "2018-03-12", + "sha1": "dc9bb19754a875d44414b77914e6e182d2206635", + "md5": "40cd7177d0a35f6c94da9b14da69cd4b", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-04-07-react-v15.md", + "type": "file", + "name": "2016-04-07-react-v15.md", + "base_name": "2016-04-07-react-v15", + "extension": ".md", + "size": 25173, + "date": "2018-03-12", + "sha1": "16c35313cacac141854c606a71b3013e07b059ed", + "md5": "c9d9a93f9c13e4e1871c4deedf1d56d5", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-04-08-react-v15.0.1.md", + "type": "file", + "name": "2016-04-08-react-v15.0.1.md", + "base_name": "2016-04-08-react-v15.0.1", + "extension": ".md", + "size": 3003, + "date": "2018-03-12", + "sha1": "eb652931c74a1ec03919063452e3fb792c5cdafd", + "md5": "efe680aa32bb024890f8793ced849622", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-07-11-introducing-reacts-error-code-system.md", + "type": "file", + "name": "2016-07-11-introducing-reacts-error-code-system.md", + "base_name": "2016-07-11-introducing-reacts-error-code-system", + "extension": ".md", + "size": 2442, + "date": "2018-03-12", + "sha1": "349d4181960caaf70097e18b9b2bf2718fef2d5c", + "md5": "2b641d4fe1cd9c6d67c710d851bbb265", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-07-13-mixins-considered-harmful.md", + "type": "file", + "name": "2016-07-13-mixins-considered-harmful.md", + "base_name": "2016-07-13-mixins-considered-harmful", + "extension": ".md", + "size": 27509, + "date": "2018-03-12", + "sha1": "9a869af22a32a2a226373d3ddc3eb4bf6f989b69", + "md5": "9e1d12e8ad71164472f82ded23f7a489", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-07-22-create-apps-with-no-configuration.md", + "type": "file", + "name": "2016-07-22-create-apps-with-no-configuration.md", + "base_name": "2016-07-22-create-apps-with-no-configuration", + "extension": ".md", + "size": 9849, + "date": "2018-03-12", + "sha1": "5d0eeb6748fe092f8bfab782b14ad6c4b3dd2a67", + "md5": "6a68cf010c646eb9439e7a177c7999fc", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-08-05-relay-state-of-the-state.md", + "type": "file", + "name": "2016-08-05-relay-state-of-the-state.md", + "base_name": "2016-08-05-relay-state-of-the-state", + "extension": ".md", + "size": 10024, + "date": "2018-03-12", + "sha1": "23edfc87e1d494e320dd8edc9f86f44e9387bf37", + "md5": "0462cb90fab23695c405f1f3fa329e7e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-09-28-our-first-50000-stars.md", + "type": "file", + "name": "2016-09-28-our-first-50000-stars.md", + "base_name": "2016-09-28-our-first-50000-stars", + "extension": ".md", + "size": 13228, + "date": "2018-03-12", + "sha1": "1ca36d1a57f6d4d92d8271b671ab8455ec9fa865", + "md5": "ff479e4829c3b81c9437fb77d8855f0f", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2016-11-16-react-v15.4.0.md", + "type": "file", + "name": "2016-11-16-react-v15.4.0.md", + "base_name": "2016-11-16-react-v15.4.0", + "extension": ".md", + "size": 10435, + "date": "2018-03-12", + "sha1": "41f9edfaab063983daa07fe75c42105b38f3918e", + "md5": "0805de0efd77863a80b1e0c68d974fa0", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2017-04-07-react-v15.5.0.md", + "type": "file", + "name": "2017-04-07-react-v15.5.0.md", + "base_name": "2017-04-07-react-v15.5.0", + "extension": ".md", + "size": 12563, + "date": "2018-03-12", + "sha1": "e8540ee12d19d00beb63564149f84541572c9f80", + "md5": "90c489e8dbd016ed3b5d84f6fddd7824", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2017-05-18-whats-new-in-create-react-app.md", + "type": "file", + "name": "2017-05-18-whats-new-in-create-react-app.md", + "base_name": "2017-05-18-whats-new-in-create-react-app", + "extension": ".md", + "size": 10480, + "date": "2018-03-12", + "sha1": "16069ff8b4c37a4a3fabf88a1cfaee7eb8532087", + "md5": "77b5675cc6c275297cfcaf610e00b4d9", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2017-06-13-react-v15.6.0.md", + "type": "file", + "name": "2017-06-13-react-v15.6.0.md", + "base_name": "2017-06-13-react-v15.6.0", + "extension": ".md", + "size": 7093, + "date": "2018-03-12", + "sha1": "2b45f60e2b440d97f90874612e6742f4a3d87bae", + "md5": "515a0d01c58528a7d7e0a5e20eb2e9fa", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2017-07-26-error-handling-in-react-16.md", + "type": "file", + "name": "2017-07-26-error-handling-in-react-16.md", + "base_name": "2017-07-26-error-handling-in-react-16", + "extension": ".md", + "size": 6658, + "date": "2018-03-12", + "sha1": "4dd08c1c7a7b461a6d737cb74f4a0e92c7c68408", + "md5": "7a0b61800da6427dc8f99e29426855f5", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2017-09-08-dom-attributes-in-react-16.md", + "type": "file", + "name": "2017-09-08-dom-attributes-in-react-16.md", + "base_name": "2017-09-08-dom-attributes-in-react-16", + "extension": ".md", + "size": 7897, + "date": "2018-03-12", + "sha1": "644ddb3a14601555f3c6640a5b29be4657f7d2c9", + "md5": "ec949c0b073fa907b09156d47b22ff27", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/_posts/2017-09-25-react-v15.6.2.md", + "type": "file", + "name": "2017-09-25-react-v15.6.2.md", + "base_name": "2017-09-25-react-v15.6.2", + "extension": ".md", + "size": 4312, + "date": "2018-03-12", + "sha1": "b7e08ba23af6a740ef1a9a3ba5d10a83b680f870", + "md5": "27e0a6a34c0cfdbd604beb318dd3205c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 54, + "end_line": 54, + "matched_rule": { + "identifier": "mit_14.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/blog", + "type": "directory", + "name": "blog", + "base_name": "blog", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1259, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/blog/all.html", + "type": "file", + "name": "all.html", + "base_name": "all", + "extension": ".html", + "size": 530, + "date": "2018-03-12", + "sha1": "4d0fbe4dedff03645f9626c88bf6c7e1958fc6f7", + "md5": "9b8ee9eff0ae1753570563b9236900ba", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/blog/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 729, + "date": "2018-03-12", + "sha1": "345ef12981c8b00296ad5e0b491bd7ef16413d61", + "md5": "d1419b3b5fc9cef522e66b6e5beec425", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community", + "type": "directory", + "name": "community", + "base_name": "community", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 17, + "dirs_count": 0, + "size_count": 42468, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/complementary-tools.it-IT.md", + "type": "file", + "name": "complementary-tools.it-IT.md", + "base_name": "complementary-tools.it-IT", + "extension": ".md", + "size": 141, + "date": "2018-03-12", + "sha1": "5b2e542e05939212cb430a31d0902766f8c00a9a", + "md5": "820453d7af3f02b575fa221438be8da6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/complementary-tools.ko-KR.md", + "type": "file", + "name": "complementary-tools.ko-KR.md", + "base_name": "complementary-tools.ko-KR", + "extension": ".md", + "size": 141, + "date": "2018-03-12", + "sha1": "d167c24f10591d4aa37c4d26a58388ee34903780", + "md5": "9ee81197e02150551f1366ef4c7701b4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/complementary-tools.md", + "type": "file", + "name": "complementary-tools.md", + "base_name": "complementary-tools", + "extension": ".md", + "size": 135, + "date": "2018-03-12", + "sha1": "43eb8e549fca8fe8c66c35f0183c5fde1f9bd9de", + "md5": "04ef107b3f8240badbcb1165880e2fa8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/complementary-tools.zh-CN.md", + "type": "file", + "name": "complementary-tools.zh-CN.md", + "base_name": "complementary-tools.zh-CN", + "extension": ".md", + "size": 141, + "date": "2018-03-12", + "sha1": "353a2d461c12b794d7d036fd3cb5ff16c892eb72", + "md5": "ad1e871d8187f1b9e1d482e9f26b9742", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/conferences.it-IT.md", + "type": "file", + "name": "conferences.it-IT.md", + "base_name": "conferences.it-IT", + "extension": ".md", + "size": 662, + "date": "2018-03-12", + "sha1": "52443ba6a0746d82062ffca437cdca1ffdafa8fd", + "md5": "a8242a1e9990dc83518a2a606ca6abd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/conferences.ko-KR.md", + "type": "file", + "name": "conferences.ko-KR.md", + "base_name": "conferences.ko-KR", + "extension": ".md", + "size": 695, + "date": "2018-03-12", + "sha1": "9a636c0cce9b07d32471d8216ff7d79de5233c89", + "md5": "3c26f032d41763968ec6b0bffb26e72b", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/conferences.md", + "type": "file", + "name": "conferences.md", + "base_name": "conferences", + "extension": ".md", + "size": 5142, + "date": "2018-03-12", + "sha1": "b5237ee3c3f2fa7b190dcbc5cd92d4bea770be9c", + "md5": "9b978180eb1ec411f3fd7f31ad00544d", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/conferences.zh-CN.md", + "type": "file", + "name": "conferences.zh-CN.md", + "base_name": "conferences.zh-CN", + "extension": ".md", + "size": 930, + "date": "2018-03-12", + "sha1": "6660ac7890dd0356697b4a69dcb9799843bdba7a", + "md5": "a4bdd8bec0ddcedebc89dc74e033d3ef", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/examples.it-IT.md", + "type": "file", + "name": "examples.it-IT.md", + "base_name": "examples.it-IT", + "extension": ".md", + "size": 119, + "date": "2018-03-12", + "sha1": "7e4536716a090ed3cb938b632b0d86eab72c27c0", + "md5": "322055b54824b304bc41c0bf32c9623b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/examples.ko-KR.md", + "type": "file", + "name": "examples.ko-KR.md", + "base_name": "examples.ko-KR", + "extension": ".md", + "size": 119, + "date": "2018-03-12", + "sha1": "815502081c65f0417552b0e085f980000fbfe2e4", + "md5": "8dff825b86b9714f6fa1b96e4eda1ed1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/examples.md", + "type": "file", + "name": "examples.md", + "base_name": "examples", + "extension": ".md", + "size": 113, + "date": "2018-03-12", + "sha1": "3397af467d24dcdd2077dc37897dd57fc79f8555", + "md5": "6c22a87dc2b5007ab00616316b38f99a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/examples.zh-CN.md", + "type": "file", + "name": "examples.zh-CN.md", + "base_name": "examples.zh-CN", + "extension": ".md", + "size": 119, + "date": "2018-03-12", + "sha1": "42ea132e48ecc3e4c43613f5ffcd1913286e466b", + "md5": "0957ab83e1121f125da5984979fb4bf0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/support.md", + "type": "file", + "name": "support.md", + "base_name": "support", + "extension": ".md", + "size": 1945, + "date": "2018-03-12", + "sha1": "8b1f18f252f36d66439657280fee7cbe142a9f7f", + "md5": "f6db98f07f6af3eb29123f4ee5217ab6", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/videos.it-IT.md", + "type": "file", + "name": "videos.it-IT.md", + "base_name": "videos.it-IT", + "extension": ".md", + "size": 8360, + "date": "2018-03-12", + "sha1": "d8aada73cd5fb9398259f7ea8be1483c55674fb5", + "md5": "e97ab09a477c3b90674405e1555d0bfe", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/videos.ko-KR.md", + "type": "file", + "name": "videos.ko-KR.md", + "base_name": "videos.ko-KR", + "extension": ".md", + "size": 8677, + "date": "2018-03-12", + "sha1": "af693cd440a22b1c3356be435c04492aa2b92091", + "md5": "a297fe6c89282a6d3cfc15b735d319e4", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/videos.md", + "type": "file", + "name": "videos.md", + "base_name": "videos", + "extension": ".md", + "size": 7323, + "date": "2018-03-12", + "sha1": "422db5c6fc2abff1fe88191bb9c0b9485908033f", + "md5": "5e39b80041ae33ec3b8bf495d472958d", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/community/videos.zh-CN.md", + "type": "file", + "name": "videos.zh-CN.md", + "base_name": "videos.zh-CN", + "extension": ".md", + "size": 7706, + "date": "2018-03-12", + "sha1": "4c29901b9de901e1d44bcc15647bdd3641cdb6a3", + "md5": "68574a8720ba68d5fd2db2f08ae6bac0", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/contributing", + "type": "directory", + "name": "contributing", + "base_name": "contributing", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 93125, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/contributing/codebase-overview.md", + "type": "file", + "name": "codebase-overview.md", + "base_name": "codebase-overview", + "extension": ".md", + "size": 26743, + "date": "2018-03-12", + "sha1": "cd318e88ff68ccfcfc346b474af0d6354c0b5f7b", + "md5": "ca6a613dc0df6431ebf5aed303e940c4", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/contributing/design-principles.md", + "type": "file", + "name": "design-principles.md", + "base_name": "design-principles", + "extension": ".md", + "size": 19445, + "date": "2018-03-12", + "sha1": "8d7fa66b34b896395be4e45d8eb2ddc39e21b655", + "md5": "081adbf495d20f2d925f0e50a938bd44", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/contributing/how-to-contribute.md", + "type": "file", + "name": "how-to-contribute.md", + "base_name": "how-to-contribute", + "extension": ".md", + "size": 10693, + "date": "2018-03-12", + "sha1": "b91bfd1eded38a07bb6d67c0851ed0a81f65e29a", + "md5": "e7f33bca9b780cf7d64eb9dc4fb02fe3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 159, + "end_line": 159, + "matched_rule": { + "identifier": "mit_14.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/contributing/implementation-notes.md", + "type": "file", + "name": "implementation-notes.md", + "base_name": "implementation-notes", + "extension": ".md", + "size": 36244, + "date": "2018-03-12", + "sha1": "d58453ba8b0b7c2746da559e4679cd32560758dc", + "md5": "166f6df50e1bf6dc8c1a51180e8130b0", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/css", + "type": "directory", + "name": "css", + "base_name": "css", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 34637, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/css/codemirror.css", + "type": "file", + "name": "codemirror.css", + "base_name": "codemirror", + "extension": ".css", + "size": 8194, + "date": "2018-03-12", + "sha1": "bebc8d1d4a5dd62c0e824761ab09395e0a5f8885", + "md5": "4eb3d519da1bcbc99e3103e65789f3a5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/css/main.css", + "type": "file", + "name": "main.css", + "base_name": "main", + "extension": ".css", + "size": 2618, + "date": "2018-03-12", + "sha1": "404a549d1f28c020eab35ed7097d4dfba41475f9", + "md5": "e3bbb9b5dbaa9b7707448451c86c4c35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/css/react.scss", + "type": "file", + "name": "react.scss", + "base_name": "react", + "extension": ".scss", + "size": 19651, + "date": "2018-03-12", + "sha1": "82d819d2b10cefe320d374967da2abd3462ddda7", + "md5": "99d48e9f1019c8a5b26697ab5039b9b4", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "SCSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/css/syntax.css", + "type": "file", + "name": "syntax.css", + "base_name": "syntax", + "extension": ".css", + "size": 4174, + "date": "2018-03-12", + "sha1": "3d2bcb097180b9792b6cbe377687b008353343b7", + "md5": "9992f30b01f374965b95af3c64cca5a7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs", + "type": "directory", + "name": "docs", + "base_name": "docs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 47, + "dirs_count": 0, + "size_count": 334421, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/accessibility.md", + "type": "file", + "name": "accessibility.md", + "base_name": "accessibility", + "extension": ".md", + "size": 13693, + "date": "2018-03-12", + "sha1": "f6d9f5449cb22e3367b26dcc949e077fc393137c", + "md5": "ab0ac675fbae5170eff6f4b5fa9aaddb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-animation.md", + "type": "file", + "name": "addons-animation.md", + "base_name": "addons-animation", + "extension": ".md", + "size": 13371, + "date": "2018-03-12", + "sha1": "98ea2ef89b01eb7b2d5804694dfd3d46ed68231d", + "md5": "f06ae381a5975772cfdae0bcfde0788a", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "the community." + ], + "start_line": 15, + "end_line": 15 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-create-fragment.md", + "type": "file", + "name": "addons-create-fragment.md", + "base_name": "addons-create-fragment", + "extension": ".md", + "size": 2361, + "date": "2018-03-12", + "sha1": "5a2de21d74f4f4781e6e22e4662afb2ffffb28a7", + "md5": "113c9c9ca582adaf7c11a820da362de6", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-perf.md", + "type": "file", + "name": "addons-perf.md", + "base_name": "addons-perf", + "extension": ".md", + "size": 4508, + "date": "2018-03-12", + "sha1": "6a00e18cde1bf96057cf6053b1911b285180c5fa", + "md5": "bd3bb39759d48f4a3692077931b35137", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-pure-render-mixin.md", + "type": "file", + "name": "addons-pure-render-mixin.md", + "base_name": "addons-pure-render-mixin", + "extension": ".md", + "size": 1630, + "date": "2018-03-12", + "sha1": "3bd6312ffcfe6044d89564058010189f16072fdc", + "md5": "4c898a66c5c9974e177d847c39060e5b", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-shallow-compare.md", + "type": "file", + "name": "addons-shallow-compare.md", + "base_name": "addons-shallow-compare", + "extension": ".md", + "size": 1739, + "date": "2018-03-12", + "sha1": "cbe2589401d6c21444c5994962985ed9ff7fd48f", + "md5": "1c7b82c623aaf86801ca5388692f0740", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-shallow-renderer.md", + "type": "file", + "name": "addons-shallow-renderer.md", + "base_name": "addons-shallow-renderer", + "extension": ".md", + "size": 2166, + "date": "2018-03-12", + "sha1": "3b3957a6a46b943db938917e934c73f9b3433fd8", + "md5": "f2f9911657391dead1c423008e62d4d0", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-test-utils.md", + "type": "file", + "name": "addons-test-utils.md", + "base_name": "addons-test-utils", + "extension": ".md", + "size": 6905, + "date": "2018-03-12", + "sha1": "c253e240676aae6382902e4bc882ebd2bcd5e976", + "md5": "cd356cbde436a5ab8d70c528696e7798", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-two-way-binding-helpers.md", + "type": "file", + "name": "addons-two-way-binding-helpers.md", + "base_name": "addons-two-way-binding-helpers", + "extension": ".md", + "size": 5567, + "date": "2018-03-12", + "sha1": "2ee3c46b2c7fed18f7c584aff607dc9febe4976d", + "md5": "489862d40d2da16a9d9494d35dd12174", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons-update.md", + "type": "file", + "name": "addons-update.md", + "base_name": "addons-update", + "extension": ".md", + "size": 4561, + "date": "2018-03-12", + "sha1": "c2e47993824c76f18a5c3bee0b86c90b10b4480a", + "md5": "9a230bf87d700a354d2710f6adae4db4", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/addons.md", + "type": "file", + "name": "addons.md", + "base_name": "addons", + "extension": ".md", + "size": 2309, + "date": "2018-03-12", + "sha1": "e284eb99fb881bbd9d43a347fdaba8043acb0e2e", + "md5": "58d9ee6d3b6e301d2076c18968bc27a2", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/components-and-props.md", + "type": "file", + "name": "components-and-props.md", + "base_name": "components-and-props", + "extension": ".md", + "size": 8184, + "date": "2018-03-12", + "sha1": "bcfff433c53ef9a149a8914e6319d9da9af59188", + "md5": "6512511d0617b11bb6b92e26d0faa3f4", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/composition-vs-inheritance.md", + "type": "file", + "name": "composition-vs-inheritance.md", + "base_name": "composition-vs-inheritance", + "extension": ".md", + "size": 4940, + "date": "2018-03-12", + "sha1": "1641027a91686705801218283c66e6f13a4d26ae", + "md5": "d8a5030c46648c8461f7f475403ee4a6", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/conditional-rendering.md", + "type": "file", + "name": "conditional-rendering.md", + "base_name": "conditional-rendering", + "extension": ".md", + "size": 7245, + "date": "2018-03-12", + "sha1": "0f10d0c97bdf034f131dc2d40fd349ec97929676", + "md5": "18dc1e5c766366807dcfe4b0b50751d7", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/context.md", + "type": "file", + "name": "context.md", + "base_name": "context", + "extension": ".md", + "size": 7681, + "date": "2018-03-12", + "sha1": "cf26484cad07387fe0f766d913e2dc3746042a1a", + "md5": "1a15e64ccce3a92569aceaac400961b9", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/cross-origin-errors.md", + "type": "file", + "name": "cross-origin-errors.md", + "base_name": "cross-origin-errors", + "extension": ".md", + "size": 1857, + "date": "2018-03-12", + "sha1": "adf2b7943ab8bec921ee5715c924430299268df0", + "md5": "2323b69c3265175e9e1176744d67ddfd", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/error-decoder.md", + "type": "file", + "name": "error-decoder.md", + "base_name": "error-decoder", + "extension": ".md", + "size": 691, + "date": "2018-03-12", + "sha1": "12961ed2f97aafa6b30cbd6f4f16d0f7a62a6c0d", + "md5": "329c21fa7c35bfe7a43bd209d5ae570e", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/forms.md", + "type": "file", + "name": "forms.md", + "base_name": "forms", + "extension": ".md", + "size": 8833, + "date": "2018-03-12", + "sha1": "8097c2819ac96e7e09b7654fece5f18451a7de4b", + "md5": "3fd4b299b70f6cc46f1bb5b28b033cf4", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/handling-events.md", + "type": "file", + "name": "handling-events.md", + "base_name": "handling-events", + "extension": ".md", + "size": 4995, + "date": "2018-03-12", + "sha1": "dd1380d615fb25d20856d81e35b71565372be3b1", + "md5": "41e273811bf0bdcfd395b15fd165202f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/hello-world.md", + "type": "file", + "name": "hello-world.md", + "base_name": "hello-world", + "extension": ".md", + "size": 2460, + "date": "2018-03-12", + "sha1": "6d2f44f769a6db638aed61bad733cedb280e95bd", + "md5": "5315ba7fb339ae597e5c312ec5700ace", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/higher-order-components.md", + "type": "file", + "name": "higher-order-components.md", + "base_name": "higher-order-components", + "extension": ".md", + "size": 18178, + "date": "2018-03-12", + "sha1": "3d60d861404d89c5f9bd14381e033c2ba797d08e", + "md5": "15a30bf16cfc61851858f11f5b0e7b0d", + "mime_type": "text/x-c++", + "file_type": "C++ source, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/installation.md", + "type": "file", + "name": "installation.md", + "base_name": "installation", + "extension": ".md", + "size": 14260, + "date": "2018-03-12", + "sha1": "b98120c4467d02f4bbfd7d800da44a9fed33ec6e", + "md5": "d5cbb1f69a5b6235dc027ae44bab9653", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/integrating-with-other-libraries.md", + "type": "file", + "name": "integrating-with-other-libraries.md", + "base_name": "integrating-with-other-libraries", + "extension": ".md", + "size": 17319, + "date": "2018-03-12", + "sha1": "d26593156e23d452f4840a8c4d5a42107c74639a", + "md5": "99761220c337c72db6552e87d6317e0b", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/introducing-jsx.md", + "type": "file", + "name": "introducing-jsx.md", + "base_name": "introducing-jsx", + "extension": ".md", + "size": 4936, + "date": "2018-03-12", + "sha1": "4ba62c2abc174b445affaeaf81082c834bdf8d24", + "md5": "99a8dd9568d1ae66118934eff86c4106", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/jsx-in-depth.md", + "type": "file", + "name": "jsx-in-depth.md", + "base_name": "jsx-in-depth", + "extension": ".md", + "size": 13077, + "date": "2018-03-12", + "sha1": "98d9c5ef52b1d272e16593eb78df9aa689710801", + "md5": "9450ca355501eacbce4fc2c128c26022", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/lifting-state-up.md", + "type": "file", + "name": "lifting-state-up.md", + "base_name": "lifting-state-up", + "extension": ".md", + "size": 14241, + "date": "2018-03-12", + "sha1": "d74af50a2e0a4c989ec657b3981240dbd49d9736", + "md5": "7686bc8536fdc2afdd3357f73360f69f", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/lists-and-keys.md", + "type": "file", + "name": "lists-and-keys.md", + "base_name": "lists-and-keys", + "extension": ".md", + "size": 8454, + "date": "2018-03-12", + "sha1": "6db7477557e7e613c920e962ce11f77845678698", + "md5": "32b19912a5debb2b296390d2a381a9f1", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/optimizing-performance.md", + "type": "file", + "name": "optimizing-performance.md", + "base_name": "optimizing-performance", + "extension": ".md", + "size": 17409, + "date": "2018-03-12", + "sha1": "66cb64ccc98d1bc269a0bdfd55a14479f9ece366", + "md5": "a90cd555112579b5904f87f5bac5d576", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/react-without-es6.md", + "type": "file", + "name": "react-without-es6.md", + "base_name": "react-without-es6", + "extension": ".md", + "size": 6323, + "date": "2018-03-12", + "sha1": "693a31825bdc8db3571aea3a651fe31deb4dd2cd", + "md5": "940dd55d1e93ae94014f0f6bed7c693b", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/react-without-jsx.md", + "type": "file", + "name": "react-without-jsx.md", + "base_name": "react-without-jsx", + "extension": ".md", + "size": 2025, + "date": "2018-03-12", + "sha1": "e0bd10611fd7e7fd1a70d38ae1f58e4f369d86d6", + "md5": "6e1115a8fee1d08b332c298861976588", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reconciliation.md", + "type": "file", + "name": "reconciliation.md", + "base_name": "reconciliation", + "extension": ".md", + "size": 7215, + "date": "2018-03-12", + "sha1": "4dab8d694364c35c78b680b3c411724bd0599171", + "md5": "90974fe58d005bd98894a27cf79230d1", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [], + "holders": [], + "authors": [ + "Math.random()" + ], + "start_line": 153, + "end_line": 153 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-dom-elements.md", + "type": "file", + "name": "reference-dom-elements.md", + "base_name": "reference-dom-elements", + "extension": ".md", + "size": 8946, + "date": "2018-03-12", + "sha1": "671d1e9a3889e060b0d1c4b4a05c2439147a7b94", + "md5": "a8e5c6616ef65ac05458237a14bf6291", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-events.md", + "type": "file", + "name": "reference-events.md", + "base_name": "reference-events", + "extension": ".md", + "size": 6331, + "date": "2018-03-12", + "sha1": "3d33071e9a0fff8678a5f696fb8fbd9325c6b3bf", + "md5": "25f246925d88fdb5f10cac36e2a2ab49", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-pure-render-mixin.md", + "type": "file", + "name": "reference-pure-render-mixin.md", + "base_name": "reference-pure-render-mixin", + "extension": ".md", + "size": 1954, + "date": "2018-03-12", + "sha1": "2600cfab425c7a6338ea29f60515a1afab0ef933", + "md5": "af1aa5cb11b51766532eb925004f86c4", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-react-component.md", + "type": "file", + "name": "reference-react-component.md", + "base_name": "reference-react-component", + "extension": ".md", + "size": 16052, + "date": "2018-03-12", + "sha1": "8f41f19c3b4a7f6ce56d52d2af52f7b1f77d4e10", + "md5": "16fb76c46e90731e42522400d0333995", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-react-dom-node-stream.md", + "type": "file", + "name": "reference-react-dom-node-stream.md", + "base_name": "reference-react-dom-node-stream", + "extension": ".md", + "size": 2809, + "date": "2018-03-12", + "sha1": "7d9a085b0ce8874d6f1b26c9c69fac266f94f840", + "md5": "8b9eee361d577a3dde9ce9812740ad89", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-react-dom-server.md", + "type": "file", + "name": "reference-react-dom-server.md", + "base_name": "reference-react-dom-server", + "extension": ".md", + "size": 1643, + "date": "2018-03-12", + "sha1": "90ebac7a74d458aebe4c67b30cb16facef11ad57", + "md5": "cc5a897daa7d299ad05fc4cdfb0445b7", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-react-dom.md", + "type": "file", + "name": "reference-react-dom.md", + "base_name": "reference-react-dom", + "extension": ".md", + "size": 4020, + "date": "2018-03-12", + "sha1": "f385d22b99b17c07261a42782d3674b81045c097", + "md5": "cd55ef06a2d90a010611349dbae12b88", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-react.md", + "type": "file", + "name": "reference-react.md", + "base_name": "reference-react", + "extension": ".md", + "size": 7669, + "date": "2018-03-12", + "sha1": "2a733801f5781ed03f7ced354e1621e884edf456", + "md5": "e3e879542a2153f5f11dec83d9780653", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/reference-test-renderer.md", + "type": "file", + "name": "reference-test-renderer.md", + "base_name": "reference-test-renderer", + "extension": ".md", + "size": 6238, + "date": "2018-03-12", + "sha1": "ea77e66c1bf01538f994efceb5754503440c637a", + "md5": "c9f5df65e605923a8a7987a6de72ebed", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/refs-and-the-dom.md", + "type": "file", + "name": "refs-and-the-dom.md", + "base_name": "refs-and-the-dom", + "extension": ".md", + "size": 9743, + "date": "2018-03-12", + "sha1": "6719ef16908dcbea84d893d11e93ad29a0ab3070", + "md5": "ece56f11cb9add1bf134838feb638ee3", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/rendering-elements.md", + "type": "file", + "name": "rendering-elements.md", + "base_name": "rendering-elements", + "extension": ".md", + "size": 3461, + "date": "2018-03-12", + "sha1": "3c786c6ffc1accb1cc6783e3c9c4f00234fda7b3", + "md5": "8f1897571882fb1f29fee17c9bef2b74", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/state-and-lifecycle.md", + "type": "file", + "name": "state-and-lifecycle.md", + "base_name": "state-and-lifecycle", + "extension": ".md", + "size": 13098, + "date": "2018-03-12", + "sha1": "4f06d6d8e8b1c0480d32a01182b582cb55ab96b7", + "md5": "129e7a78c18c6220b81182a29613aefa", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/thinking-in-react.md", + "type": "file", + "name": "thinking-in-react.md", + "base_name": "thinking-in-react", + "extension": ".md", + "size": 12917, + "date": "2018-03-12", + "sha1": "0f1d7744a187aa423e6f6907c7dfc9476349ce40", + "md5": "266cee695d8c7f9e4d204e5e4d051f3d", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/typechecking-with-proptypes.md", + "type": "file", + "name": "typechecking-with-proptypes.md", + "base_name": "typechecking-with-proptypes", + "extension": ".md", + "size": 5550, + "date": "2018-03-12", + "sha1": "63c8c0471698477757edb6e263e95bc4f85b174f", + "md5": "38084fa8d2c7e97fa4d668e4d1d6dff1", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/uncontrolled-components.md", + "type": "file", + "name": "uncontrolled-components.md", + "base_name": "uncontrolled-components", + "extension": ".md", + "size": 2576, + "date": "2018-03-12", + "sha1": "540c1246eff08fc6d7d2a6290aa3241497c39ee2", + "md5": "3318b1e0cdc46c61b3cb6408086e1741", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/docs/web-components.md", + "type": "file", + "name": "web-components.md", + "base_name": "web-components", + "extension": ".md", + "size": 2281, + "date": "2018-03-12", + "sha1": "30532531453554953d8136ba0ce30a88cbc72701", + "md5": "88a2ba4af6c699ec61d232eb501bdeb4", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads", + "type": "directory", + "name": "downloads", + "base_name": "downloads", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 51, + "dirs_count": 0, + "size_count": 30691629, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.10.0-rc1.zip", + "type": "file", + "name": "react-0.10.0-rc1.zip", + "base_name": "react-0.10.0-rc1", + "extension": ".zip", + "size": 655886, + "date": "2018-03-12", + "sha1": "805ea93eb28de82e30820860359162a2390c8806", + "md5": "8dd34ec15657003f4123f17538aee59e", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.10.0.zip", + "type": "file", + "name": "react-0.10.0.zip", + "base_name": "react-0.10.0", + "extension": ".zip", + "size": 655595, + "date": "2018-03-12", + "sha1": "7ee8138d5c64fa94e02f72b43a1edeccd25c0232", + "md5": "d98750eb60fbda85b0da611097e55555", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 2087, + "end_line": 2087, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.11.0-rc1.zip", + "type": "file", + "name": "react-0.11.0-rc1.zip", + "base_name": "react-0.11.0-rc1", + "extension": ".zip", + "size": 716707, + "date": "2018-03-12", + "sha1": "555d08fce27204c7651e38ef745fbea7588b7218", + "md5": "bdfbdbe30dd1bb48897ed7865fdf5893", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.11.0.zip", + "type": "file", + "name": "react-0.11.0.zip", + "base_name": "react-0.11.0", + "extension": ".zip", + "size": 716419, + "date": "2018-03-12", + "sha1": "50de2d4bfbbee05ebc2342206be096704bf942f7", + "md5": "3193aa82d64efc48190a7720d92973c4", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.11.1.zip", + "type": "file", + "name": "react-0.11.1.zip", + "base_name": "react-0.11.1", + "extension": ".zip", + "size": 716999, + "date": "2018-03-12", + "sha1": "feb7256c725a04aac061208be721d37ab5025e9e", + "md5": "1b85757bac1e9195585e4f4a14bae930", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.11.2.zip", + "type": "file", + "name": "react-0.11.2.zip", + "base_name": "react-0.11.2", + "extension": ".zip", + "size": 767843, + "date": "2018-03-12", + "sha1": "d367ed3b843b97108b3340f3fb824b46c72efd93", + "md5": "6778014df830300303a15c2f8d0613ef", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.12.0-rc1.zip", + "type": "file", + "name": "react-0.12.0-rc1.zip", + "base_name": "react-0.12.0-rc1", + "extension": ".zip", + "size": 735832, + "date": "2018-03-12", + "sha1": "55f202e3520d46618caab3f155b50b0aa39c8299", + "md5": "3795029fe9bf8c886498f0c44a4ff0c2", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.12.0.zip", + "type": "file", + "name": "react-0.12.0.zip", + "base_name": "react-0.12.0", + "extension": ".zip", + "size": 896241, + "date": "2018-03-12", + "sha1": "d6e7a520dc04d22e93f0fe003258da34fddcc55f", + "md5": "1f72480879123cde81691d647126bdfb", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.12.1.zip", + "type": "file", + "name": "react-0.12.1.zip", + "base_name": "react-0.12.1", + "extension": ".zip", + "size": 743851, + "date": "2018-03-12", + "sha1": "e1d7071d9377c5b45803ef737e8d5d72506ccc55", + "md5": "d6acabfa3f9c92a01cd642f5de4641ee", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.12.2.zip", + "type": "file", + "name": "react-0.12.2.zip", + "base_name": "react-0.12.2", + "extension": ".zip", + "size": 906165, + "date": "2018-03-12", + "sha1": "1b14b76a1ca38f4da853cd1cd2b67c810324f931", + "md5": "6a242238790b21729a88c26145eca6b9", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1302, + "end_line": 1302, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.13.0-rc1.zip", + "type": "file", + "name": "react-0.13.0-rc1.zip", + "base_name": "react-0.13.0-rc1", + "extension": ".zip", + "size": 839177, + "date": "2018-03-12", + "sha1": "c7cd95f3e553cb8720d86ad1210574416192d313", + "md5": "e6c446163359d7c2470553118369c332", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.13.0-rc2.zip", + "type": "file", + "name": "react-0.13.0-rc2.zip", + "base_name": "react-0.13.0-rc2", + "extension": ".zip", + "size": 838082, + "date": "2018-03-12", + "sha1": "264980fd97f53de2c73c2f4d4155ee068a5d2eac", + "md5": "30b28e559c9e82bc16240598b3f71491", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.13.0.zip", + "type": "file", + "name": "react-0.13.0.zip", + "base_name": "react-0.13.0", + "extension": ".zip", + "size": 851466, + "date": "2018-03-12", + "sha1": "3c91179bab535b099d20c620e36a8c1e5fae9485", + "md5": "227faa220771255cba4b5bc2cd83d0c2", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.13.1.zip", + "type": "file", + "name": "react-0.13.1.zip", + "base_name": "react-0.13.1", + "extension": ".zip", + "size": 851551, + "date": "2018-03-12", + "sha1": "a64d7d2c8f041c326026670bef8b6328007b992f", + "md5": "4fcc58689009b65fb9ed08b1f8492879", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.13.2.zip", + "type": "file", + "name": "react-0.13.2.zip", + "base_name": "react-0.13.2", + "extension": ".zip", + "size": 852026, + "date": "2018-03-12", + "sha1": "a5ca152d888d6c2bd6df08dc25756aace05477d6", + "md5": "30b1ad0841b873c5601fdf16698fa43a", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.13.3.zip", + "type": "file", + "name": "react-0.13.3.zip", + "base_name": "react-0.13.3", + "extension": ".zip", + "size": 853139, + "date": "2018-03-12", + "sha1": "5b1b45e45b38481a5bd5ec48505276ce3aa4efb6", + "md5": "8e35085ecebdb035b42b2a6113919587", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.0.zip", + "type": "file", + "name": "react-0.14.0.zip", + "base_name": "react-0.14.0", + "extension": ".zip", + "size": 502626, + "date": "2018-03-12", + "sha1": "e60c87796278f20afcc5941326d0b7d55123bb80", + "md5": "63bf7ddd08c2b7b01e975b20753b9b0c", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1363, + "end_line": 1363, + "matched_rule": { + "identifier": "gpl_30.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 2035, + "end_line": 2035, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.1.zip", + "type": "file", + "name": "react-0.14.1.zip", + "base_name": "react-0.14.1", + "extension": ".zip", + "size": 503256, + "date": "2018-03-12", + "sha1": "b03db05b3f247a686a7fa834e8e6b4b10b22c5f0", + "md5": "3afd0f7e7b862fcfa47045a2a3c0aab3", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": "SWIG", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "(c) aD P co" + ], + "holders": [ + "aD", + "P co" + ], + "authors": [], + "start_line": 20, + "end_line": 28 + }, + { + "statements": [ + "(c) 3ZO AoAW" + ], + "holders": [ + "3ZO AoAW" + ], + "authors": [], + "start_line": 279, + "end_line": 288 + }, + { + "statements": [ + "(c) u\u0006Aa\b/nc,a &\u0007vu\u0013FtIO1!zFOkax2\u0003rya \u0011sq pNy +i\u0011\u0000\u0017,\u000e apr\u007fU3\u0017e34oiOO:euE\u001aiAaeN,Ni'aa\u0006PaL- SA! O7_ OWA" + ], + "holders": [ + "u\u0006Aa\b/nc,a", + "\u0007vu\u0013FtIO1!zFOkax2\u0003rya \u0011sq pNy +i\u0011\u0000\u0017,\u000e apr\u007fU3\u0017e34oiOO:euE\u001aiAaeN,Ni'aa\u0006PaL- SA!", + "O7_ OWA" + ], + "authors": [], + "start_line": 299, + "end_line": 307 + }, + { + "statements": [ + "(c) IJmnOO o OEaURO" + ], + "holders": [ + "IJmnOO o OEaURO" + ], + "authors": [], + "start_line": 321, + "end_line": 342 + }, + { + "statements": [ + "(c) kO34lg\u0004uxfI\u0000A69\u000e\u007f34eh\u0003 \u0015P\u0007'n14 \u0007acnV\u0010^QQiCiB\u0019\u00041 \u0002i\u0014Uvl12 CO" + ], + "holders": [ + "kO34lg\u0004uxfI\u0000A69\u000e\u007f34eh\u0003 \u0015P\u0007'n14 \u0007acnV\u0010^QQiCiB\u0019\u00041 \u0002i\u0014Uvl12 CO" + ], + "authors": [], + "start_line": 595, + "end_line": 601 + }, + { + "statements": [ + "(c) Oa\u0012 v'o" + ], + "holders": [ + "Oa\u0012 v'o" + ], + "authors": [], + "start_line": 704, + "end_line": 720 + }, + { + "statements": [ + "(c) (c) Deq" + ], + "holders": [ + "Deq" + ], + "authors": [], + "start_line": 924, + "end_line": 938 + }, + { + "statements": [ + "(c) A Vff" + ], + "holders": [ + "A Vff" + ], + "authors": [], + "start_line": 1188, + "end_line": 1205 + }, + { + "statements": [ + "(c) EOeO Io" + ], + "holders": [ + "EOeO Io" + ], + "authors": [], + "start_line": 1254, + "end_line": 1267 + }, + { + "statements": [ + "U0\u0012 (c) DUih" + ], + "holders": [ + "U0\u0012", + "DUih" + ], + "authors": [], + "start_line": 1301, + "end_line": 1305 + }, + { + "statements": [ + "(c) Ka a Eun", + "(c) CY34o OoU12l" + ], + "holders": [ + "Ka a Eun", + "CY34o OoU12l" + ], + "authors": [], + "start_line": 1310, + "end_line": 1332 + }, + { + "statements": [ + "(c) nAO U\u0000x\u0017I/ \bA4$\u0010-doIG@7A2enP \u0018oI\u0016\u0002N co" + ], + "holders": [ + "nAO U\u0000x\u0017I/ \bA4$\u0010-doIG@7A2enP \u0018oI\u0016\u0002N co" + ], + "authors": [], + "start_line": 1420, + "end_line": 1462 + }, + { + "statements": [ + "(c) Y3 & 6^ol.L2b (c)" + ], + "holders": [ + "Y3", + "6^ol.L2b" + ], + "authors": [], + "start_line": 1488, + "end_line": 1500 + }, + { + "statements": [ + "IOOAC12u1u (c) ZJiLO1" + ], + "holders": [ + "IOOAC12u1u", + "ZJiLO1" + ], + "authors": [], + "start_line": 1528, + "end_line": 1543 + }, + { + "statements": [ + "(c) UEy sg14\u0019&J IsmG3WA" + ], + "holders": [ + "UEy sg14\u0019&J IsmG3WA" + ], + "authors": [], + "start_line": 1658, + "end_line": 1661 + }, + { + "statements": [ + "(c) Kqw HSuE" + ], + "holders": [ + "Kqw HSuE" + ], + "authors": [], + "start_line": 1715, + "end_line": 1724 + }, + { + "statements": [ + "(c) 2E112Ues 14a bVAO" + ], + "holders": [ + "2E112Ues 14a bVAO" + ], + "authors": [], + "start_line": 1918, + "end_line": 1929 + }, + { + "statements": [ + "UlaO \u000f'u\u0016 (c) E6 OcS aIey5G6M OeNAea I C14" + ], + "holders": [ + "UlaO", + "\u000f'u\u0016", + "E6", + "OcS aIey5G6M", + "OeNAea I C14" + ], + "authors": [], + "start_line": 2022, + "end_line": 2043 + }, + { + "statements": [ + "(c) C2 Io@gA Mo" + ], + "holders": [ + "C2 Io@gA Mo" + ], + "authors": [], + "start_line": 2082, + "end_line": 2085 + }, + { + "statements": [ + "(c) D2e5 YC126" + ], + "holders": [ + "D2e5 YC126" + ], + "authors": [], + "start_line": 2200, + "end_line": 2209 + }, + { + "statements": [ + "(c) OYi 34IYiIKH'OoyEY &34\u0002IW2aHSimoiGiAn@'t Upv", + "(c) D OIeah7" + ], + "holders": [ + "OYi 34IYiIKH'OoyEY &34\u0002IW2aHSimoiGiAn@'t Upv", + "D OIeah7" + ], + "authors": [], + "start_line": 2385, + "end_line": 2416 + }, + { + "statements": [ + "(c) FO TeUUO" + ], + "holders": [ + "FO TeUUO" + ], + "authors": [], + "start_line": 2474, + "end_line": 2477 + }, + { + "statements": [ + "(c) Au ACruw0o" + ], + "holders": [ + "Au ACruw0o" + ], + "authors": [], + "start_line": 2917, + "end_line": 2923 + }, + { + "statements": [ + "(c) Z Yvi ZOIaE" + ], + "holders": [ + "Z Yvi ZOIaE" + ], + "authors": [], + "start_line": 2961, + "end_line": 2984 + }, + { + "statements": [ + "(c) ?e (c) IHoE70h" + ], + "holders": [ + "IHoE70h" + ], + "authors": [], + "start_line": 3093, + "end_line": 3098 + }, + { + "statements": [ + "(c) ADgnUH VoyBUsWaba6z" + ], + "holders": [ + "ADgnUH VoyBUsWaba6z" + ], + "authors": [], + "start_line": 3168, + "end_line": 3180 + }, + { + "statements": [ + "(c) Oi f\u000eaD0g1Up He" + ], + "holders": [ + "Oi f\u000eaD0g1Up He" + ], + "authors": [], + "start_line": 3304, + "end_line": 3318 + }, + { + "statements": [ + "(c) CO" + ], + "holders": [ + "CO" + ], + "authors": [], + "start_line": 3336, + "end_line": 3343 + }, + { + "statements": [ + "Wj34I (c) La\u000f" + ], + "holders": [ + "Wj34I", + "La\u000f" + ], + "authors": [], + "start_line": 3404, + "end_line": 3420 + }, + { + "statements": [ + "(c) AXoE Ek" + ], + "holders": [ + "AXoE Ek" + ], + "authors": [], + "start_line": 3640, + "end_line": 3643 + }, + { + "statements": [ + "(c) 9.nuiYI SA" + ], + "holders": [ + "9.nuiYI SA" + ], + "authors": [], + "start_line": 3644, + "end_line": 3649 + } + ], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.2.zip", + "type": "file", + "name": "react-0.14.2.zip", + "base_name": "react-0.14.2", + "extension": ".zip", + "size": 503436, + "date": "2018-03-12", + "sha1": "78fb58619e0f8887a2d0037ca529d4e7bf618285", + "md5": "c90aea622e63fc36a522c3fbaa78e233", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": "CSS+Lasso", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1875, + "end_line": 1875, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "(c) aD P co" + ], + "holders": [ + "aD", + "P co" + ], + "authors": [], + "start_line": 20, + "end_line": 28 + }, + { + "statements": [ + "(c) Ma yoiO\u007faE+$oiT AnPr\u0012" + ], + "holders": [ + "Ma yoiO\u007faE+$oiT AnPr\u0012" + ], + "authors": [], + "start_line": 311, + "end_line": 326 + }, + { + "statements": [ + "J0\u0015 \u0016i (c) A3Iz" + ], + "holders": [ + "J0\u0015", + "\u0016i", + "A3Iz" + ], + "authors": [], + "start_line": 490, + "end_line": 499 + }, + { + "statements": [ + "(c) i O vSjT6\u0019: O\u0004 n\u0011n Zjoo&Im \u0005 qcpOwu\u0002\u001aawC014\u0015A\u007fNsRQ incu" + ], + "holders": [ + "i", + "O", + "vSjT6\u0019: O\u0004 n\u0011n Zjoo&Im \u0005 qcpOwu\u0002\u001aawC014\u0015A\u007fNsRQ incu" + ], + "authors": [], + "start_line": 806, + "end_line": 816 + }, + { + "statements": [ + "AepN \bIgQu Aik (c) Eo" + ], + "holders": [ + "AepN", + "\bIgQu Aik", + "Eo" + ], + "authors": [], + "start_line": 904, + "end_line": 918 + }, + { + "statements": [ + "(c) Z2QZ EnA" + ], + "holders": [ + "Z2QZ EnA" + ], + "authors": [], + "start_line": 957, + "end_line": 972 + }, + { + "statements": [ + "(c) WYg AuzA" + ], + "holders": [ + "WYg AuzA" + ], + "authors": [], + "start_line": 1137, + "end_line": 1149 + }, + { + "statements": [ + "(c) UbXA-2 evoomOA y34abb lc\u0004y a\u007fe\u0012oX\u0004i Ys'O$Giok cOa", + "Jku (c) L24eu" + ], + "holders": [ + "UbXA-2 evoomOA", + "y34abb lc\u0004y a\u007fe\u0012oX\u0004i Ys'O$Giok cOa", + "Jku", + "L24eu" + ], + "authors": [], + "start_line": 1192, + "end_line": 1225 + }, + { + "statements": [ + "To12 (c) Au" + ], + "holders": [ + "To12", + "Au" + ], + "authors": [], + "start_line": 1231, + "end_line": 1237 + }, + { + "statements": [ + "(c) i'uz OVaUq" + ], + "holders": [ + "i'uz OVaUq" + ], + "authors": [], + "start_line": 1240, + "end_line": 1244 + }, + { + "statements": [ + "(c) fkkEA\u000fE LOgZ\u0007iKS^Yvi\u0001 CO$" + ], + "holders": [ + "fkkEA\u000fE", + "LOgZ\u0007iKS^Yvi\u0001 CO$" + ], + "authors": [], + "start_line": 1296, + "end_line": 1316 + }, + { + "statements": [ + "PEEUpU2h \u0018EA6 (c) G6tcod3" + ], + "holders": [ + "PEEUpU2h", + "\u0018EA6", + "G6tcod3" + ], + "authors": [], + "start_line": 1447, + "end_line": 1466 + }, + { + "statements": [ + "(c) Eeg OEu6uC" + ], + "holders": [ + "Eeg OEu6uC" + ], + "authors": [], + "start_line": 1557, + "end_line": 1564 + }, + { + "statements": [ + "(c) Na\u0018 No-noAmaaA" + ], + "holders": [ + "Na\u0018 No-noAmaaA" + ], + "authors": [], + "start_line": 1723, + "end_line": 1728 + }, + { + "statements": [ + "(c) niG\u0015aO \u0002A'\u0002K aV'0/Ei\u0010\u0002\u0007ua COy" + ], + "holders": [ + "niG\u0015aO", + "\u0002A'\u0002K", + "aV'0/Ei\u0010\u0002\u0007ua COy" + ], + "authors": [], + "start_line": 2139, + "end_line": 2142 + }, + { + "statements": [ + "(c) A4Eo fkei^- ZtO" + ], + "holders": [ + "A4Eo fkei^- ZtO" + ], + "authors": [], + "start_line": 2322, + "end_line": 2331 + }, + { + "statements": [ + "(c) A YifQ3" + ], + "holders": [ + "A YifQ3" + ], + "authors": [], + "start_line": 2431, + "end_line": 2443 + }, + { + "statements": [ + "(c) Cy tHrZ7I\u0004M IU34AeNHaE" + ], + "holders": [ + "Cy tHrZ7I\u0004M IU34AeNHaE" + ], + "authors": [], + "start_line": 2723, + "end_line": 2731 + }, + { + "statements": [ + "(c) A O2iioh" + ], + "holders": [ + "A O2iioh" + ], + "authors": [], + "start_line": 2768, + "end_line": 2778 + }, + { + "statements": [ + "E2 !aN&'De (c) Cihn01" + ], + "holders": [ + "E2", + "!aN&'De", + "Cihn01" + ], + "authors": [], + "start_line": 2861, + "end_line": 2870 + }, + { + "statements": [ + "(c) C HIo" + ], + "holders": [ + "C HIo" + ], + "authors": [], + "start_line": 2907, + "end_line": 2914 + }, + { + "statements": [ + "(c) I34 OJH" + ], + "holders": [ + "I34 OJH" + ], + "authors": [], + "start_line": 3184, + "end_line": 3208 + }, + { + "statements": [ + "(c) XE & \u0016^ol.L2b (c)" + ], + "holders": [ + "XE", + "\u0016^ol.L2b" + ], + "authors": [], + "start_line": 3222, + "end_line": 3236 + }, + { + "statements": [ + "I8e aoOU7 \u0016aC\u0000aadf+\u000eKuqv (c) Ja" + ], + "holders": [ + "I8e", + "aoOU7 \u0016aC\u0000aadf+\u000eKuqv", + "Ja" + ], + "authors": [], + "start_line": 3238, + "end_line": 3245 + }, + { + "statements": [ + "UtAeO (c) UwaK3y2" + ], + "holders": [ + "UtAeO", + "UwaK3y2" + ], + "authors": [], + "start_line": 3277, + "end_line": 3282 + }, + { + "statements": [ + "SOot (c) QIOUuuEE", + "(c) LtheiI Z AeA7if" + ], + "holders": [ + "SOot", + "QIOUuuEE", + "LtheiI Z AeA7if" + ], + "authors": [], + "start_line": 3412, + "end_line": 3426 + }, + { + "statements": [ + "(c) NOd KnQiCCoVose5o9ba" + ], + "holders": [ + "NOd KnQiCCoVose5o9ba" + ], + "authors": [], + "start_line": 3596, + "end_line": 3600 + }, + { + "statements": [ + "(c) AXoE Ek" + ], + "holders": [ + "AXoE Ek" + ], + "authors": [], + "start_line": 3682, + "end_line": 3685 + }, + { + "statements": [ + "(c) 9.nuiYI SA" + ], + "holders": [ + "9.nuiYI SA" + ], + "authors": [], + "start_line": 3686, + "end_line": 3691 + } + ], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.3.zip", + "type": "file", + "name": "react-0.14.3.zip", + "base_name": "react-0.14.3", + "extension": ".zip", + "size": 563065, + "date": "2018-03-12", + "sha1": "56a829a7ddbd46468ed31d30aaa130d1a2cfc7ea", + "md5": "afbde5f0f6237c23efef2edaad57c6ce", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.4.zip", + "type": "file", + "name": "react-0.14.4.zip", + "base_name": "react-0.14.4", + "extension": ".zip", + "size": 562959, + "date": "2018-03-12", + "sha1": "873cf569f6d5b6b831ab37a57917c5d39360ca32", + "md5": "7f0b5d797144531446ce748ea0b19c19", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1968, + "end_line": 1968, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.5.zip", + "type": "file", + "name": "react-0.14.5.zip", + "base_name": "react-0.14.5", + "extension": ".zip", + "size": 562960, + "date": "2018-03-12", + "sha1": "2f57dc1289093c19953f0321118b73bc85725ef1", + "md5": "7e67f167abfcf6ef7a827d98b1c6101d", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.6.zip", + "type": "file", + "name": "react-0.14.6.zip", + "base_name": "react-0.14.6", + "extension": ".zip", + "size": 563071, + "date": "2018-03-12", + "sha1": "ec8ab376d1bd8424bcd1aee5ec9f21e08ede7cc5", + "md5": "89cf63a50e5dd176dc2aa24d543bc627", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": "Velocity", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "(c) KT3 Byapea2d2" + ], + "holders": [ + "KT3 Byapea2d2" + ], + "authors": [], + "start_line": 414, + "end_line": 419 + }, + { + "statements": [ + "(c) G5eV G Ka" + ], + "holders": [ + "G5eV G Ka" + ], + "authors": [], + "start_line": 510, + "end_line": 524 + }, + { + "statements": [ + "(c) YhSzXLB Iq/", + "I3uA i\u001a (c) Hoo9cWBqa" + ], + "holders": [ + "YhSzXLB Iq/", + "I3uA", + "i\u001a", + "Hoo9cWBqa" + ], + "authors": [], + "start_line": 526, + "end_line": 529 + }, + { + "statements": [ + "Ui (c) NaX" + ], + "holders": [ + "Ui", + "NaX" + ], + "authors": [], + "start_line": 760, + "end_line": 785 + }, + { + "statements": [ + "(c) (c) Deq" + ], + "holders": [ + "Deq" + ], + "authors": [], + "start_line": 941, + "end_line": 956 + }, + { + "statements": [ + "(c) U34c A\u0015 \u0010 LIebO3I" + ], + "holders": [ + "U34c A\u0015 \u0010 LIebO3I" + ], + "authors": [], + "start_line": 980, + "end_line": 983 + }, + { + "statements": [ + "OoaAUoa (c) UocA" + ], + "holders": [ + "OoaAUoa", + "UocA" + ], + "authors": [], + "start_line": 1013, + "end_line": 1031 + }, + { + "statements": [ + "(c) O8ym OUEx" + ], + "holders": [ + "O8ym OUEx" + ], + "authors": [], + "start_line": 1063, + "end_line": 1079 + }, + { + "statements": [ + "(c) E E4oaY" + ], + "holders": [ + "E E4oaY" + ], + "authors": [], + "start_line": 1117, + "end_line": 1125 + }, + { + "statements": [ + "(c) 9sU?@\u0015 EAE ? co" + ], + "holders": [ + "9sU?@\u0015 EAE ? co" + ], + "authors": [], + "start_line": 1144, + "end_line": 1147 + }, + { + "statements": [ + "(c) Aeiaou u\u0011\u0013\u0016va\u001bb\u001aoB! X Tu" + ], + "holders": [ + "Aeiaou u\u0011\u0013\u0016va\u001bb\u001aoB! X Tu" + ], + "authors": [], + "start_line": 1203, + "end_line": 1234 + }, + { + "statements": [ + "LZrz (c) EUar" + ], + "holders": [ + "LZrz", + "EUar" + ], + "authors": [], + "start_line": 1251, + "end_line": 1268 + }, + { + "statements": [ + "TAcdnE (c) OUr" + ], + "holders": [ + "TAcdnE", + "OUr" + ], + "authors": [], + "start_line": 1473, + "end_line": 1488 + }, + { + "statements": [ + "Id\u0014 (c) Ei" + ], + "holders": [ + "Id\u0014", + "Ei" + ], + "authors": [], + "start_line": 1539, + "end_line": 1550 + }, + { + "statements": [ + "(c) A D N14H" + ], + "holders": [ + "A D N14H" + ], + "authors": [], + "start_line": 1590, + "end_line": 1605 + }, + { + "statements": [ + "(c) A\u0001R, F\u007f Lj\u0005 bV" + ], + "holders": [ + "A\u0001R, F\u007f Lj\u0005 bV" + ], + "authors": [], + "start_line": 1665, + "end_line": 1681 + }, + { + "statements": [ + "Z0eE (c) Ua'w" + ], + "holders": [ + "Z0eE", + "Ua'w" + ], + "authors": [], + "start_line": 1827, + "end_line": 1832 + }, + { + "statements": [ + "(c) OM U341" + ], + "holders": [ + "OM U341" + ], + "authors": [], + "start_line": 1871, + "end_line": 1876 + }, + { + "statements": [ + "(c) W$C A Ik", + "(c) OBUea2C3 Hmxeu\b" + ], + "holders": [ + "A Ik", + "OBUea2C3 Hmxeu\b" + ], + "authors": [], + "start_line": 2068, + "end_line": 2079 + }, + { + "statements": [ + "(c) E Do\u007f" + ], + "holders": [ + "E Do\u007f" + ], + "authors": [], + "start_line": 2221, + "end_line": 2229 + }, + { + "statements": [ + "(c) Ku AhF" + ], + "holders": [ + "Ku AhF" + ], + "authors": [], + "start_line": 2500, + "end_line": 2516 + }, + { + "statements": [ + "(c) J YLk" + ], + "holders": [ + "J YLk" + ], + "authors": [], + "start_line": 2584, + "end_line": 2587 + }, + { + "statements": [ + "(c) EX UFy" + ], + "holders": [ + "EX UFy" + ], + "authors": [], + "start_line": 2650, + "end_line": 2663 + }, + { + "statements": [ + "(c) :25 O CoX" + ], + "holders": [ + "O CoX" + ], + "authors": [], + "start_line": 2671, + "end_line": 2676 + }, + { + "statements": [ + "(c) nZ 4\u0015s1AwOoE@-R\u00036E\u0016Z\u0001 oEea ihe AJ\u0003$\u0012aeo\u0003 2V AB" + ], + "holders": [ + "nZ 4\u0015s1AwOoE@-R\u00036E\u0016Z\u0001 oEea ihe AJ\u0003$\u0012aeo\u0003 2V AB" + ], + "authors": [], + "start_line": 2757, + "end_line": 2773 + }, + { + "statements": [ + "(c) One \u0017io1Ey1'D\u0014UE\u0012 Uu" + ], + "holders": [ + "One \u0017io1Ey1'D\u0014UE\u0012 Uu" + ], + "authors": [], + "start_line": 2878, + "end_line": 2892 + }, + { + "statements": [ + "(c) OUo 1o\u0005LeR\u0016zy OVl" + ], + "holders": [ + "OUo 1o\u0005LeR\u0016zy OVl" + ], + "authors": [], + "start_line": 3114, + "end_line": 3125 + }, + { + "statements": [ + "(c) FO9 UyaA a Ib X5uanBDUouA" + ], + "holders": [ + "FO9 UyaA", + "a", + "Ib X5uanBDUouA" + ], + "authors": [], + "start_line": 3263, + "end_line": 3279 + }, + { + "statements": [ + "(c) Na\u0018 No-ioAmaaA" + ], + "holders": [ + "Na\u0018 No-ioAmaaA" + ], + "authors": [], + "start_line": 3407, + "end_line": 3443 + }, + { + "statements": [ + "(c) AW4HP14I AOu", + "(c) o\u0019 (c) TU" + ], + "holders": [ + "AW4HP14I AOu", + "o\u0019", + "TU" + ], + "authors": [], + "start_line": 3503, + "end_line": 3509 + }, + { + "statements": [ + "(c) AXoE Ek" + ], + "holders": [ + "AXoE Ek" + ], + "authors": [], + "start_line": 3692, + "end_line": 3714 + }, + { + "statements": [ + "Zt (c) RW-oTnaUDV" + ], + "holders": [ + "Zt", + "RW-oTnaUDV" + ], + "authors": [], + "start_line": 3820, + "end_line": 3826 + }, + { + "statements": [ + "(c) O1'I2\b\u0014JI GA\u001114\u00178 i14O12Oc oI''\u0012Evo\u0014oeo?eefUiII3I'1\u0014 vU-IqI E8\u0001coU12\u0019 \u000412X\u0003C/_ AB" + ], + "holders": [ + "O1'I2\b\u0014JI GA\u001114\u00178 i14O12Oc oI''\u0012Evo\u0014oeo?eefUiII3I'1\u0014 vU-IqI E8\u0001coU12\u0019 \u000412X\u0003C/_ AB" + ], + "authors": [], + "start_line": 3874, + "end_line": 3882 + }, + { + "statements": [ + "(c) \u007faaoDo (c) TEF" + ], + "holders": [ + "\u007faaoDo", + "TEF" + ], + "authors": [], + "start_line": 3884, + "end_line": 3907 + }, + { + "statements": [ + "(c) t5omYD NEo zA Au" + ], + "holders": [ + "NEo zA Au" + ], + "authors": [], + "start_line": 4101, + "end_line": 4114 + }, + { + "statements": [ + "(c) 9.nuiYI SA" + ], + "holders": [ + "9.nuiYI SA" + ], + "authors": [], + "start_line": 4115, + "end_line": 4120 + } + ], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.7.zip", + "type": "file", + "name": "react-0.14.7.zip", + "base_name": "react-0.14.7", + "extension": ".zip", + "size": 563471, + "date": "2018-03-12", + "sha1": "00f082cf31cd988b15045a463827759e4b912b69", + "md5": "aab9592750ee996fcf3a921bd93dac9f", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.14.8.zip", + "type": "file", + "name": "react-0.14.8.zip", + "base_name": "react-0.14.8", + "extension": ".zip", + "size": 563580, + "date": "2018-03-12", + "sha1": "1ee41570a906d9798c39936eabed3e8d6c0ad7ba", + "md5": "4500e766c8bf89bf5f75a75fc624bcd4", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.3.0.zip", + "type": "file", + "name": "react-0.3.0.zip", + "base_name": "react-0.3.0", + "extension": ".zip", + "size": 396602, + "date": "2018-03-12", + "sha1": "68ea543e10c200b6cb8d6e8752329abe1e41465e", + "md5": "3eeea084985aa5a1a6d4ff2a5909bcf9", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.3.1.zip", + "type": "file", + "name": "react-0.3.1.zip", + "base_name": "react-0.3.1", + "extension": ".zip", + "size": 396560, + "date": "2018-03-12", + "sha1": "421982aa8c536fb4ad69c5b0872ceb5ddde920f1", + "md5": "37d3cb704b4688a7176c5d1ca16d72d4", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.3.2.zip", + "type": "file", + "name": "react-0.3.2.zip", + "base_name": "react-0.3.2", + "extension": ".zip", + "size": 396535, + "date": "2018-03-12", + "sha1": "9790ec7b4681987856f6ec22f75f6a2a2b2b84fc", + "md5": "9931cf5f060ed0ec41854d2b7c5ba20d", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.3.3.zip", + "type": "file", + "name": "react-0.3.3.zip", + "base_name": "react-0.3.3", + "extension": ".zip", + "size": 397366, + "date": "2018-03-12", + "sha1": "a5d5fa1d7a53ea8d94ff328d8d63b31cffc0dbfb", + "md5": "b3c572e657994afb4ad5a3bb874856a6", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.4.0.zip", + "type": "file", + "name": "react-0.4.0.zip", + "base_name": "react-0.4.0", + "extension": ".zip", + "size": 421810, + "date": "2018-03-12", + "sha1": "0845e29975c954addabf95a83206adf2defb858d", + "md5": "a770c3b8ee6b5fef55c88bf59c6e0169", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1170, + "end_line": 1170, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.4.1.zip", + "type": "file", + "name": "react-0.4.1.zip", + "base_name": "react-0.4.1", + "extension": ".zip", + "size": 422449, + "date": "2018-03-12", + "sha1": "d73a0a87324487423fc1a94a7fb1d79613e3946b", + "md5": "9e1e59830e962417ec3570e905341396", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.4.2.zip", + "type": "file", + "name": "react-0.4.2.zip", + "base_name": "react-0.4.2", + "extension": ".zip", + "size": 422571, + "date": "2018-03-12", + "sha1": "55fc12b1ed4a0094198244223e2e82a067b8dd5a", + "md5": "1a7ed771731cbaba7d43d616e6c2f303", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.5.0.zip", + "type": "file", + "name": "react-0.5.0.zip", + "base_name": "react-0.5.0", + "extension": ".zip", + "size": 627024, + "date": "2018-03-12", + "sha1": "01b1dd623797217e5b6aa7b7bec5543636694b83", + "md5": "6b46455dba08b0454086ff69d04b5644", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.5.1.zip", + "type": "file", + "name": "react-0.5.1.zip", + "base_name": "react-0.5.1", + "extension": ".zip", + "size": 627425, + "date": "2018-03-12", + "sha1": "abf45ca2fcb6a8169accea1fefd4da5b53da1829", + "md5": "48d4909d0491f06f841932889c05c159", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.5.2.zip", + "type": "file", + "name": "react-0.5.2.zip", + "base_name": "react-0.5.2", + "extension": ".zip", + "size": 627521, + "date": "2018-03-12", + "sha1": "18ba08dd322febbc4ccf76b79b949ad8bf542b24", + "md5": "29772f7a2e42fef1aa79d022894879b3", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 3387, + "end_line": 3387, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.8.0.zip", + "type": "file", + "name": "react-0.8.0.zip", + "base_name": "react-0.8.0", + "extension": ".zip", + "size": 613812, + "date": "2018-03-12", + "sha1": "1f78574155976613a42453579ddfe5a96da1f4b5", + "md5": "301a4d71fc0f801e86aac41b5948292e", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-0.9.0-rc1.zip", + "type": "file", + "name": "react-0.9.0-rc1.zip", + "base_name": "react-0.9.0-rc1", + "extension": ".zip", + "size": 673107, + "date": "2018-03-12", + "sha1": "d5bd5e838e40eadd7d9c915ff01ad3308c22c553", + "md5": "f4cb4a728e4d0d608e9969032e718848", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v2.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.0.0-rc.1.zip", + "type": "file", + "name": "react-15.0.0-rc.1.zip", + "base_name": "react-15.0.0-rc.1", + "extension": ".zip", + "size": 570080, + "date": "2018-03-12", + "sha1": "5cf14fae75d42f61bb55c25bb07dd961fbfaab1c", + "md5": "57d419a547787d85ca7343503b06e456", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.0.0-rc.2.zip", + "type": "file", + "name": "react-15.0.0-rc.2.zip", + "base_name": "react-15.0.0-rc.2", + "extension": ".zip", + "size": 576047, + "date": "2018-03-12", + "sha1": "3fedd21bd435b5ccd92f8c5a21970dc778c62f05", + "md5": "95e696f693988c7d7bc6f4fcb077a1b4", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.0.0.zip", + "type": "file", + "name": "react-15.0.0.zip", + "base_name": "react-15.0.0", + "extension": ".zip", + "size": 522067, + "date": "2018-03-12", + "sha1": "355ee95c88844b4e5c0e8a40fed7eb45366c0ba5", + "md5": "0ed23a113a71921ec3d97d3090fb3910", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.0.1.zip", + "type": "file", + "name": "react-15.0.1.zip", + "base_name": "react-15.0.1", + "extension": ".zip", + "size": 522912, + "date": "2018-03-12", + "sha1": "f1127640c7e306c080a1a911e36436abee88ec56", + "md5": "4fa84912b7dc01a357cd81effca4bd74", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.0.2.zip", + "type": "file", + "name": "react-15.0.2.zip", + "base_name": "react-15.0.2", + "extension": ".zip", + "size": 525530, + "date": "2018-03-12", + "sha1": "a1ff9492b9f8245196537a6270e6345cce4aee98", + "md5": "a0845610b8f932fcf0dfd74eb29fd0e1", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.1.0.zip", + "type": "file", + "name": "react-15.1.0.zip", + "base_name": "react-15.1.0", + "extension": ".zip", + "size": 532105, + "date": "2018-03-12", + "sha1": "90815cc027cc5916939da18013bee27a21725979", + "md5": "4ffa92865fd3be2272f718cd6e9942b6", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.2.0.zip", + "type": "file", + "name": "react-15.2.0.zip", + "base_name": "react-15.2.0", + "extension": ".zip", + "size": 550344, + "date": "2018-03-12", + "sha1": "3a6a6a681aab8ad870faa51735e157a7dbd45882", + "md5": "8f35e50a045ea56bc3503718b624fc86", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.2.1.zip", + "type": "file", + "name": "react-15.2.1.zip", + "base_name": "react-15.2.1", + "extension": ".zip", + "size": 546644, + "date": "2018-03-12", + "sha1": "a8324a6955d140decead9b1c9c13fabe6dced1f0", + "md5": "d451919c105d9fd39d84748b6b8e7000", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.3.0.zip", + "type": "file", + "name": "react-15.3.0.zip", + "base_name": "react-15.3.0", + "extension": ".zip", + "size": 554242, + "date": "2018-03-12", + "sha1": "b5e66deef03dcc5003b47a496cc955d15d7c3607", + "md5": "fac11785bd28e4fe227802e49ef029e0", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.3.1.zip", + "type": "file", + "name": "react-15.3.1.zip", + "base_name": "react-15.3.1", + "extension": ".zip", + "size": 554586, + "date": "2018-03-12", + "sha1": "c6d21324cc749927a1c2a9e421b28335115147df", + "md5": "609be41974089150f840d84dc677caa3", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.3.2.zip", + "type": "file", + "name": "react-15.3.2.zip", + "base_name": "react-15.3.2", + "extension": ".zip", + "size": 555365, + "date": "2018-03-12", + "sha1": "62d3e174b808e59c2cc7365d59920fe1c68b0a64", + "md5": "cba828f051a5a16b874f1cac433862b6", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.4.0-rc.3.zip", + "type": "file", + "name": "react-15.4.0-rc.3.zip", + "base_name": "react-15.4.0-rc.3", + "extension": ".zip", + "size": 586740, + "date": "2018-03-12", + "sha1": "2f7c8c6b95679d447d09afbd820d2c174f225f07", + "md5": "db9f6713c8fb0b7cf47e413ae5c12331", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/react-15.4.0.zip", + "type": "file", + "name": "react-15.4.0.zip", + "base_name": "react-15.4.0", + "extension": ".zip", + "size": 586239, + "date": "2018-03-12", + "sha1": "46f9a4c6f70090bc21fa140a34ade78777d08863", + "md5": "7d4c98a7be18163e6ed1f8e2375e7a72", + "mime_type": "application/zip", + "file_type": "Zip archive data, at least v1.0 to extract", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": true, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "plain zip", + "name": null, + "version": null, + "primary_language": null, + "packaging": "archive", + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/downloads/single-file-example.html", + "type": "file", + "name": "single-file-example.html", + "base_name": "single-file-example", + "extension": ".html", + "size": 543, + "date": "2018-03-12", + "sha1": "2ff99fd7a81e01dcd45c3f4a0c9f1da087bf8972", + "md5": "71fd9ad6ee0a25cde281ce2c3e55087f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img", + "type": "directory", + "name": "img", + "base_name": "img", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 114, + "dirs_count": 5, + "size_count": 22013561, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/external.png", + "type": "file", + "name": "external.png", + "base_name": "external", + "extension": ".png", + "size": 189, + "date": "2018-03-12", + "sha1": "3859c037aa950599bd1377a2d7ec9b6f37c127ba", + "md5": "46c50c6df8c6b6caefefb973a1eddd1a", + "mime_type": "image/png", + "file_type": "PNG image data, 10 x 10, 8-bit gray+alpha, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/external_2x.png", + "type": "file", + "name": "external_2x.png", + "base_name": "external_2x", + "extension": ".png", + "size": 134, + "date": "2018-03-12", + "sha1": "23a7bf1140d89516c5c86eecfee12ee3b998fde8", + "md5": "93ed76553ae53a4c567ce595928c35ae", + "mime_type": "image/png", + "file_type": "PNG image data, 20 x 20, 8-bit gray+alpha, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/logo.svg", + "type": "file", + "name": "logo.svg", + "base_name": "logo", + "extension": ".svg", + "size": 1837, + "date": "2018-03-12", + "sha1": "6e9625c2ba13e8b72f9cf7c3b0af6477ef77eb41", + "md5": "3d593052bb2819bdf7709d9f7e512c8f", + "mime_type": "image/svg+xml", + "file_type": "SVG Scalable Vector Graphics image", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/logo_og.png", + "type": "file", + "name": "logo_og.png", + "base_name": "logo_og", + "extension": ".png", + "size": 10754, + "date": "2018-03-12", + "sha1": "0b5634b00998cd9c85c300ebd66962b4555d6b84", + "md5": "cba0b89d2bf2d96a1ed26edb5849f804", + "mime_type": "image/png", + "file_type": "PNG image data, 1200 x 630, 8-bit colormap, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/logo_small.png", + "type": "file", + "name": "logo_small.png", + "base_name": "logo_small", + "extension": ".png", + "size": 4379, + "date": "2018-03-12", + "sha1": "d2ebf5ec71da656fd8ba48c958ba7d7fb629f01c", + "md5": "1e727cbeb19128d7e228c3b923268a0d", + "mime_type": "image/png", + "file_type": "PNG image data, 38 x 38, 16-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/logo_small_2x.png", + "type": "file", + "name": "logo_small_2x.png", + "base_name": "logo_small_2x", + "extension": ".png", + "size": 12770, + "date": "2018-03-12", + "sha1": "7249e82955f95391de3745e31d1051825e74fd9b", + "md5": "865e2781259889229dd32ec649051518", + "mime_type": "image/png", + "file_type": "PNG image data, 76 x 76, 16-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/logo_small_gray.png", + "type": "file", + "name": "logo_small_gray.png", + "base_name": "logo_small_gray", + "extension": ".png", + "size": 1797, + "date": "2018-03-12", + "sha1": "b7ca995ee86d8965f468c9a03f4d7e88e2f414a1", + "md5": "021ef9f4e00feeec42baa91aae80b89c", + "mime_type": "image/png", + "file_type": "PNG image data, 38 x 38, 8-bit gray+alpha, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/logo_small_gray_2x.png", + "type": "file", + "name": "logo_small_gray_2x.png", + "base_name": "logo_small_gray_2x", + "extension": ".png", + "size": 4313, + "date": "2018-03-12", + "sha1": "3ef664dae50050566d7cf6e953335eb3c80745ab", + "md5": "cd272cd4dd80fe7ce8069353fbe5f0ca", + "mime_type": "image/png", + "file_type": "PNG image data, 76 x 76, 8-bit gray+alpha, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/noise.png", + "type": "file", + "name": "noise.png", + "base_name": "noise", + "extension": ".png", + "size": 22596, + "date": "2018-03-12", + "sha1": "c1629d6aae91ce94cc3745f0707a6fe5b7121b4e", + "md5": "915749cd3d0bd959e00f5dd5627eb794", + "mime_type": "image/png", + "file_type": "PNG image data, 100 x 100, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/oss_logo.png", + "type": "file", + "name": "oss_logo.png", + "base_name": "oss_logo", + "extension": ".png", + "size": 3964, + "date": "2018-03-12", + "sha1": "2769b41f7ba35062579491f8ff7558fdaa3ad33a", + "md5": "7c4422e43a85dfb456682c253834b72c", + "mime_type": "image/png", + "file_type": "PNG image data, 340 x 90, 8-bit gray+alpha, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/search.png", + "type": "file", + "name": "search.png", + "base_name": "search", + "extension": ".png", + "size": 244, + "date": "2018-03-12", + "sha1": "9c003555ce5d971c33344d1058b653af22a596fe", + "md5": "5da9d7d556adba5278cc696b3b4fd3d7", + "mime_type": "image/png", + "file_type": "PNG image data, 24 x 24, 8-bit gray+alpha, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog", + "type": "directory", + "name": "blog", + "base_name": "blog", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 85, + "dirs_count": 2, + "size_count": 20923784, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/animal-sounds.jpg", + "type": "file", + "name": "animal-sounds.jpg", + "base_name": "animal-sounds", + "extension": ".jpg", + "size": 49240, + "date": "2018-03-12", + "sha1": "d92017d39906973c83356bb2cb5ca19a455cfeb0", + "md5": "4618a7a003d000a3dd7f6e6733a36f7f", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 96x96, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=5, orientation=upper-left, xresolution=74, yresolution=82, resolutionunit=2], progressive, precision 8, 500x281, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2007 Apple Inc." + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 81, + "end_line": 82 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/chatapp.png", + "type": "file", + "name": "chatapp.png", + "base_name": "chatapp", + "extension": ".png", + "size": 22124, + "date": "2018-03-12", + "sha1": "80509e40d720cb27551757f012d711334e6e5519", + "md5": "75b8185edbfde871ee68f5bdcfb8a9e5", + "mime_type": "image/png", + "file_type": "PNG image data, 441 x 166, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/cra-better-output.png", + "type": "file", + "name": "cra-better-output.png", + "base_name": "cra-better-output", + "extension": ".png", + "size": 149892, + "date": "2018-03-12", + "sha1": "10ce4603739a9624021499278acd5edfc3d7d691", + "md5": "5d3b4caf2ae115ca4ab1f15e6e19680d", + "mime_type": "image/png", + "file_type": "PNG image data, 1000 x 360, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/cra-dynamic-import.gif", + "type": "file", + "name": "cra-dynamic-import.gif", + "base_name": "cra-dynamic-import", + "extension": ".gif", + "size": 1736236, + "date": "2018-03-12", + "sha1": "2765f1be914a193cc6fb95977a372fb2e9412e45", + "md5": "b967396662319e6aa6170dab232f0286", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 1184 x 627", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 19070, + "end_line": 19070, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 99, + "end_line": 102 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 228, + "end_line": 231 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 357, + "end_line": 360 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 486, + "end_line": 489 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 615, + "end_line": 618 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 744, + "end_line": 747 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 873, + "end_line": 876 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1002, + "end_line": 1005 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1131, + "end_line": 1134 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1260, + "end_line": 1263 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1389, + "end_line": 1392 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1518, + "end_line": 1521 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1647, + "end_line": 1650 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1776, + "end_line": 1779 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1905, + "end_line": 1908 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2034, + "end_line": 2037 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2163, + "end_line": 2166 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2292, + "end_line": 2295 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2421, + "end_line": 2424 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2550, + "end_line": 2553 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2679, + "end_line": 2682 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2808, + "end_line": 2811 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2937, + "end_line": 2940 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3066, + "end_line": 3069 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3195, + "end_line": 3198 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3324, + "end_line": 3327 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3453, + "end_line": 3456 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3582, + "end_line": 3585 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3711, + "end_line": 3714 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3840, + "end_line": 3843 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3969, + "end_line": 3972 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4098, + "end_line": 4101 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4227, + "end_line": 4230 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4356, + "end_line": 4359 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4485, + "end_line": 4488 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4614, + "end_line": 4617 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4743, + "end_line": 4746 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4872, + "end_line": 4875 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5001, + "end_line": 5004 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5130, + "end_line": 5133 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5259, + "end_line": 5262 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5388, + "end_line": 5391 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5517, + "end_line": 5520 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5646, + "end_line": 5649 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5775, + "end_line": 5778 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5904, + "end_line": 5907 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6033, + "end_line": 6036 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6162, + "end_line": 6165 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6291, + "end_line": 6294 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6420, + "end_line": 6423 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6549, + "end_line": 6552 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6678, + "end_line": 6681 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6807, + "end_line": 6810 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6936, + "end_line": 6939 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7065, + "end_line": 7068 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7194, + "end_line": 7197 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7323, + "end_line": 7326 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7452, + "end_line": 7455 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7581, + "end_line": 7584 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7710, + "end_line": 7713 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7839, + "end_line": 7842 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7968, + "end_line": 7971 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8097, + "end_line": 8100 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8226, + "end_line": 8229 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8355, + "end_line": 8358 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8484, + "end_line": 8487 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8613, + "end_line": 8616 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8742, + "end_line": 8745 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8871, + "end_line": 8874 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9000, + "end_line": 9003 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9129, + "end_line": 9132 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9258, + "end_line": 9261 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9387, + "end_line": 9390 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9516, + "end_line": 9519 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9645, + "end_line": 9648 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9774, + "end_line": 9777 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9903, + "end_line": 9906 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10032, + "end_line": 10035 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10161, + "end_line": 10164 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10290, + "end_line": 10293 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10419, + "end_line": 10422 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10548, + "end_line": 10551 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10677, + "end_line": 10680 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10806, + "end_line": 10809 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10935, + "end_line": 10938 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11064, + "end_line": 11067 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11193, + "end_line": 11196 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11322, + "end_line": 11325 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11451, + "end_line": 11454 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11580, + "end_line": 11583 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11709, + "end_line": 11712 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11838, + "end_line": 11841 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11967, + "end_line": 11970 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12096, + "end_line": 12099 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12225, + "end_line": 12228 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12354, + "end_line": 12357 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12483, + "end_line": 12486 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12612, + "end_line": 12615 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12741, + "end_line": 12744 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12870, + "end_line": 12873 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12999, + "end_line": 13002 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13128, + "end_line": 13131 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13257, + "end_line": 13260 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13386, + "end_line": 13389 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13515, + "end_line": 13518 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13644, + "end_line": 13647 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13773, + "end_line": 13776 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13902, + "end_line": 13905 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14031, + "end_line": 14034 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14160, + "end_line": 14163 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14289, + "end_line": 14292 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14418, + "end_line": 14421 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14547, + "end_line": 14550 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14676, + "end_line": 14679 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14805, + "end_line": 14808 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14934, + "end_line": 14937 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15063, + "end_line": 15066 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15192, + "end_line": 15195 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15321, + "end_line": 15324 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15450, + "end_line": 15453 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15579, + "end_line": 15582 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15708, + "end_line": 15711 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15837, + "end_line": 15840 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15966, + "end_line": 15969 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16095, + "end_line": 16098 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16224, + "end_line": 16227 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16353, + "end_line": 16356 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16482, + "end_line": 16485 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16611, + "end_line": 16614 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16740, + "end_line": 16743 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16869, + "end_line": 16872 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16998, + "end_line": 17001 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17127, + "end_line": 17130 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17256, + "end_line": 17259 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17385, + "end_line": 17388 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17514, + "end_line": 17517 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/cra-jest-search.gif", + "type": "file", + "name": "cra-jest-search.gif", + "base_name": "cra-jest-search", + "extension": ".gif", + "size": 928706, + "date": "2018-03-12", + "sha1": "bcd76e0efafa85f3e1d097759737709f14f6df10", + "md5": "bf7aa2c62ad1f43fca436bfb4d8b3a0f", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 983 x 579", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 118, + "end_line": 121 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 247, + "end_line": 250 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 376, + "end_line": 379 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 505, + "end_line": 508 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 634, + "end_line": 637 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 763, + "end_line": 766 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 892, + "end_line": 895 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1021, + "end_line": 1024 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1150, + "end_line": 1153 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1279, + "end_line": 1282 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1408, + "end_line": 1411 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1537, + "end_line": 1540 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1666, + "end_line": 1669 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1795, + "end_line": 1798 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1924, + "end_line": 1927 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2053, + "end_line": 2056 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2182, + "end_line": 2185 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2311, + "end_line": 2314 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2440, + "end_line": 2443 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2569, + "end_line": 2572 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2698, + "end_line": 2701 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2827, + "end_line": 2830 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2956, + "end_line": 2959 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3085, + "end_line": 3088 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3214, + "end_line": 3217 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3343, + "end_line": 3346 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3472, + "end_line": 3475 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3601, + "end_line": 3604 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3730, + "end_line": 3733 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3859, + "end_line": 3862 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3988, + "end_line": 3991 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4117, + "end_line": 4120 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4246, + "end_line": 4249 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4375, + "end_line": 4378 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4504, + "end_line": 4507 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4633, + "end_line": 4636 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4762, + "end_line": 4765 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4891, + "end_line": 4894 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5020, + "end_line": 5023 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5149, + "end_line": 5152 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5278, + "end_line": 5281 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5407, + "end_line": 5410 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5536, + "end_line": 5539 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5665, + "end_line": 5668 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5794, + "end_line": 5797 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5923, + "end_line": 5926 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6052, + "end_line": 6055 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6181, + "end_line": 6184 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6310, + "end_line": 6313 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6439, + "end_line": 6442 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6568, + "end_line": 6571 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6697, + "end_line": 6700 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6826, + "end_line": 6829 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6955, + "end_line": 6958 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7084, + "end_line": 7087 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7213, + "end_line": 7216 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7342, + "end_line": 7345 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7471, + "end_line": 7474 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7600, + "end_line": 7603 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7729, + "end_line": 7732 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7858, + "end_line": 7861 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7987, + "end_line": 7990 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8116, + "end_line": 8119 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8245, + "end_line": 8248 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8374, + "end_line": 8377 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8503, + "end_line": 8506 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8632, + "end_line": 8635 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8761, + "end_line": 8764 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8890, + "end_line": 8893 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9019, + "end_line": 9022 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9148, + "end_line": 9151 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9277, + "end_line": 9280 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9406, + "end_line": 9409 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9535, + "end_line": 9538 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9664, + "end_line": 9667 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9793, + "end_line": 9796 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9922, + "end_line": 9925 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10051, + "end_line": 10054 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10180, + "end_line": 10183 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10309, + "end_line": 10312 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10438, + "end_line": 10441 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10567, + "end_line": 10570 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10696, + "end_line": 10699 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10825, + "end_line": 10828 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10954, + "end_line": 10957 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11083, + "end_line": 11086 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11212, + "end_line": 11215 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11341, + "end_line": 11344 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11470, + "end_line": 11473 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11599, + "end_line": 11602 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11728, + "end_line": 11731 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11857, + "end_line": 11860 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11986, + "end_line": 11989 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12115, + "end_line": 12118 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12244, + "end_line": 12247 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12373, + "end_line": 12376 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12502, + "end_line": 12505 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12631, + "end_line": 12634 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12760, + "end_line": 12763 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12889, + "end_line": 12892 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13018, + "end_line": 13021 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13147, + "end_line": 13150 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13276, + "end_line": 13279 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13405, + "end_line": 13408 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13534, + "end_line": 13537 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13663, + "end_line": 13666 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13792, + "end_line": 13795 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13921, + "end_line": 13924 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14050, + "end_line": 14053 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14179, + "end_line": 14182 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14308, + "end_line": 14311 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14437, + "end_line": 14440 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14566, + "end_line": 14569 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14695, + "end_line": 14698 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14824, + "end_line": 14827 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14953, + "end_line": 14956 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15082, + "end_line": 15085 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15211, + "end_line": 15214 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15340, + "end_line": 15343 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15469, + "end_line": 15472 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15598, + "end_line": 15601 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15727, + "end_line": 15730 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15856, + "end_line": 15859 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15985, + "end_line": 15988 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16114, + "end_line": 16117 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16243, + "end_line": 16246 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16372, + "end_line": 16375 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16501, + "end_line": 16504 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16630, + "end_line": 16633 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16759, + "end_line": 16762 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16888, + "end_line": 16891 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17017, + "end_line": 17020 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17146, + "end_line": 17149 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17275, + "end_line": 17278 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/cra-pwa.png", + "type": "file", + "name": "cra-pwa.png", + "base_name": "cra-pwa", + "extension": ".png", + "size": 46504, + "date": "2018-03-12", + "sha1": "6d2c43611d95af7047ce0e63bc354e1b01e7cb80", + "md5": "cff5fa9b92de804e655ea669a53d4d9c", + "mime_type": "image/png", + "file_type": "PNG image data, 1164 x 482, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/cra-runtime-error.gif", + "type": "file", + "name": "cra-runtime-error.gif", + "base_name": "cra-runtime-error", + "extension": ".gif", + "size": 1826225, + "date": "2018-03-12", + "sha1": "b89d34a1203ca40e483f1c3d94cc7e89300a9c93", + "md5": "a0c1e436d1ea034c8ecaf48e8bcb2890", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 675 x 649", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 96, + "end_line": 99 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 225, + "end_line": 228 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 354, + "end_line": 357 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 483, + "end_line": 486 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 612, + "end_line": 615 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 741, + "end_line": 744 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 870, + "end_line": 873 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 999, + "end_line": 1002 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1128, + "end_line": 1131 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1257, + "end_line": 1260 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1386, + "end_line": 1389 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1515, + "end_line": 1518 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1644, + "end_line": 1647 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1773, + "end_line": 1776 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1902, + "end_line": 1905 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2031, + "end_line": 2034 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2160, + "end_line": 2163 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2289, + "end_line": 2292 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2418, + "end_line": 2421 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2547, + "end_line": 2550 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2676, + "end_line": 2679 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2805, + "end_line": 2808 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2934, + "end_line": 2937 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3063, + "end_line": 3066 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3192, + "end_line": 3195 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3321, + "end_line": 3324 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3450, + "end_line": 3453 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3579, + "end_line": 3582 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3708, + "end_line": 3711 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3837, + "end_line": 3840 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3966, + "end_line": 3969 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4095, + "end_line": 4098 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4224, + "end_line": 4227 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4353, + "end_line": 4356 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4482, + "end_line": 4485 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4611, + "end_line": 4614 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4740, + "end_line": 4743 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4869, + "end_line": 4872 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4998, + "end_line": 5001 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5127, + "end_line": 5130 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5256, + "end_line": 5259 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5385, + "end_line": 5388 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5514, + "end_line": 5517 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5643, + "end_line": 5646 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5772, + "end_line": 5775 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5901, + "end_line": 5904 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6030, + "end_line": 6033 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6159, + "end_line": 6162 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6288, + "end_line": 6291 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6417, + "end_line": 6420 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6546, + "end_line": 6549 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6675, + "end_line": 6678 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6804, + "end_line": 6807 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6933, + "end_line": 6936 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7062, + "end_line": 7065 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7191, + "end_line": 7194 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7320, + "end_line": 7323 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7449, + "end_line": 7452 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7578, + "end_line": 7581 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7707, + "end_line": 7710 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7836, + "end_line": 7839 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7965, + "end_line": 7968 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8094, + "end_line": 8097 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8223, + "end_line": 8226 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8352, + "end_line": 8355 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8481, + "end_line": 8484 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8610, + "end_line": 8613 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8739, + "end_line": 8742 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8868, + "end_line": 8871 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8997, + "end_line": 9000 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9126, + "end_line": 9129 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9255, + "end_line": 9258 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9384, + "end_line": 9387 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9513, + "end_line": 9516 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9642, + "end_line": 9645 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9771, + "end_line": 9774 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9900, + "end_line": 9903 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10029, + "end_line": 10032 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10158, + "end_line": 10161 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10287, + "end_line": 10290 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10416, + "end_line": 10419 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10545, + "end_line": 10548 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10674, + "end_line": 10677 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10803, + "end_line": 10806 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10932, + "end_line": 10935 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11061, + "end_line": 11064 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11190, + "end_line": 11193 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11319, + "end_line": 11322 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11448, + "end_line": 11451 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11577, + "end_line": 11580 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11706, + "end_line": 11709 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11835, + "end_line": 11838 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11964, + "end_line": 11967 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12093, + "end_line": 12096 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12222, + "end_line": 12225 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12351, + "end_line": 12354 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12480, + "end_line": 12483 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12609, + "end_line": 12612 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12738, + "end_line": 12741 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12867, + "end_line": 12870 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12996, + "end_line": 12999 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13125, + "end_line": 13128 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13254, + "end_line": 13257 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13383, + "end_line": 13386 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13512, + "end_line": 13515 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13641, + "end_line": 13644 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13770, + "end_line": 13773 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13899, + "end_line": 13902 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14028, + "end_line": 14031 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14157, + "end_line": 14160 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14286, + "end_line": 14289 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14415, + "end_line": 14418 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14544, + "end_line": 14547 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14673, + "end_line": 14676 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14802, + "end_line": 14805 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14931, + "end_line": 14934 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15060, + "end_line": 15063 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15189, + "end_line": 15192 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15318, + "end_line": 15321 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15447, + "end_line": 15450 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15576, + "end_line": 15579 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15705, + "end_line": 15708 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15834, + "end_line": 15837 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15963, + "end_line": 15966 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16092, + "end_line": 16095 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16221, + "end_line": 16224 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16350, + "end_line": 16353 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16479, + "end_line": 16482 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16608, + "end_line": 16611 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16737, + "end_line": 16740 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16866, + "end_line": 16869 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16995, + "end_line": 16998 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17124, + "end_line": 17127 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17253, + "end_line": 17256 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17382, + "end_line": 17385 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17511, + "end_line": 17514 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17640, + "end_line": 17643 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17769, + "end_line": 17772 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17898, + "end_line": 17901 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18027, + "end_line": 18030 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18156, + "end_line": 18159 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18285, + "end_line": 18288 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18414, + "end_line": 18417 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18543, + "end_line": 18546 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18672, + "end_line": 18675 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18801, + "end_line": 18804 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18930, + "end_line": 18933 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19059, + "end_line": 19062 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19188, + "end_line": 19191 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19317, + "end_line": 19320 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19446, + "end_line": 19449 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19575, + "end_line": 19578 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19704, + "end_line": 19707 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19833, + "end_line": 19836 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19962, + "end_line": 19965 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20091, + "end_line": 20094 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20220, + "end_line": 20223 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20349, + "end_line": 20352 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20478, + "end_line": 20481 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20607, + "end_line": 20610 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20736, + "end_line": 20739 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20865, + "end_line": 20868 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20994, + "end_line": 20997 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21123, + "end_line": 21126 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21252, + "end_line": 21255 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21381, + "end_line": 21384 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21510, + "end_line": 21513 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21639, + "end_line": 21642 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21768, + "end_line": 21771 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21897, + "end_line": 21900 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22026, + "end_line": 22029 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22155, + "end_line": 22158 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22284, + "end_line": 22287 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22413, + "end_line": 22416 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22542, + "end_line": 22545 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22671, + "end_line": 22674 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22800, + "end_line": 22803 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22929, + "end_line": 22932 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 23058, + "end_line": 23061 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 23187, + "end_line": 23190 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/cra-update-exports.gif", + "type": "file", + "name": "cra-update-exports.gif", + "base_name": "cra-update-exports", + "extension": ".gif", + "size": 1426094, + "date": "2018-03-12", + "sha1": "ff16c2c714c133afbd86d1f2b0d556dc96a71ac8", + "md5": "d9aaae3589e6a7b6076b64de79f4bd13", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 970 x 533", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 107, + "end_line": 110 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 236, + "end_line": 239 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 365, + "end_line": 368 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 494, + "end_line": 497 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 623, + "end_line": 626 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 752, + "end_line": 755 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 881, + "end_line": 884 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1010, + "end_line": 1013 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1139, + "end_line": 1142 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1268, + "end_line": 1271 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1397, + "end_line": 1400 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1526, + "end_line": 1529 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1655, + "end_line": 1658 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1784, + "end_line": 1787 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1913, + "end_line": 1916 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2042, + "end_line": 2045 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2171, + "end_line": 2174 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2300, + "end_line": 2303 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2429, + "end_line": 2432 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2558, + "end_line": 2561 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2687, + "end_line": 2690 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2816, + "end_line": 2819 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2945, + "end_line": 2948 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3074, + "end_line": 3077 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3203, + "end_line": 3206 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3332, + "end_line": 3335 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3461, + "end_line": 3464 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3590, + "end_line": 3593 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3719, + "end_line": 3722 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3848, + "end_line": 3851 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 3977, + "end_line": 3980 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4106, + "end_line": 4109 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4235, + "end_line": 4238 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4364, + "end_line": 4367 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4493, + "end_line": 4496 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4622, + "end_line": 4625 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4751, + "end_line": 4754 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 4880, + "end_line": 4883 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5009, + "end_line": 5012 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5138, + "end_line": 5141 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5267, + "end_line": 5270 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5396, + "end_line": 5399 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5525, + "end_line": 5528 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5654, + "end_line": 5657 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5783, + "end_line": 5786 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 5912, + "end_line": 5915 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6041, + "end_line": 6044 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6170, + "end_line": 6173 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6299, + "end_line": 6302 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6428, + "end_line": 6431 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6557, + "end_line": 6560 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6686, + "end_line": 6689 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6815, + "end_line": 6818 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 6944, + "end_line": 6947 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7073, + "end_line": 7076 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7202, + "end_line": 7205 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7331, + "end_line": 7334 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7460, + "end_line": 7463 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7589, + "end_line": 7592 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7718, + "end_line": 7721 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7847, + "end_line": 7850 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 7976, + "end_line": 7979 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8105, + "end_line": 8108 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8234, + "end_line": 8237 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8363, + "end_line": 8366 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8492, + "end_line": 8495 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8621, + "end_line": 8624 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8750, + "end_line": 8753 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 8879, + "end_line": 8882 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9008, + "end_line": 9011 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9137, + "end_line": 9140 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9266, + "end_line": 9269 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9395, + "end_line": 9398 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9524, + "end_line": 9527 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9653, + "end_line": 9656 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9782, + "end_line": 9785 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 9911, + "end_line": 9914 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10040, + "end_line": 10043 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10169, + "end_line": 10172 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10298, + "end_line": 10301 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10427, + "end_line": 10430 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10556, + "end_line": 10559 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10685, + "end_line": 10688 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10814, + "end_line": 10817 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 10943, + "end_line": 10946 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11072, + "end_line": 11075 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11201, + "end_line": 11204 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11330, + "end_line": 11333 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11459, + "end_line": 11462 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11588, + "end_line": 11591 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11717, + "end_line": 11720 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11846, + "end_line": 11849 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 11975, + "end_line": 11978 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12104, + "end_line": 12107 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12233, + "end_line": 12236 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12362, + "end_line": 12365 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12491, + "end_line": 12494 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12620, + "end_line": 12623 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12749, + "end_line": 12752 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 12878, + "end_line": 12881 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13007, + "end_line": 13010 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13136, + "end_line": 13139 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13265, + "end_line": 13268 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13394, + "end_line": 13397 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13523, + "end_line": 13526 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13652, + "end_line": 13655 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13781, + "end_line": 13784 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 13910, + "end_line": 13913 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14039, + "end_line": 14042 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14168, + "end_line": 14171 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14297, + "end_line": 14300 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14426, + "end_line": 14429 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14555, + "end_line": 14558 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14684, + "end_line": 14687 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14813, + "end_line": 14816 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 14942, + "end_line": 14945 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15071, + "end_line": 15074 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15200, + "end_line": 15203 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15329, + "end_line": 15332 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15458, + "end_line": 15461 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15587, + "end_line": 15590 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15716, + "end_line": 15719 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15845, + "end_line": 15848 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 15974, + "end_line": 15977 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16103, + "end_line": 16106 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16232, + "end_line": 16235 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16361, + "end_line": 16364 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16490, + "end_line": 16493 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16619, + "end_line": 16622 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16748, + "end_line": 16751 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 16877, + "end_line": 16880 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17006, + "end_line": 17009 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17135, + "end_line": 17138 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17264, + "end_line": 17267 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17393, + "end_line": 17396 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17522, + "end_line": 17525 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17651, + "end_line": 17654 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17780, + "end_line": 17783 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 17909, + "end_line": 17912 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18038, + "end_line": 18041 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18167, + "end_line": 18170 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18296, + "end_line": 18299 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18425, + "end_line": 18428 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18554, + "end_line": 18557 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18683, + "end_line": 18686 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18812, + "end_line": 18815 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 18941, + "end_line": 18944 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19070, + "end_line": 19073 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19199, + "end_line": 19202 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19328, + "end_line": 19331 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19457, + "end_line": 19460 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19586, + "end_line": 19589 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19715, + "end_line": 19718 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19844, + "end_line": 19847 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 19973, + "end_line": 19976 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20102, + "end_line": 20105 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20231, + "end_line": 20234 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20360, + "end_line": 20363 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20489, + "end_line": 20492 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20618, + "end_line": 20621 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20747, + "end_line": 20750 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 20876, + "end_line": 20879 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21005, + "end_line": 21008 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21134, + "end_line": 21137 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21263, + "end_line": 21266 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21392, + "end_line": 21395 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21521, + "end_line": 21524 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21650, + "end_line": 21653 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21779, + "end_line": 21782 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 21908, + "end_line": 21911 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22037, + "end_line": 22040 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22166, + "end_line": 22169 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22295, + "end_line": 22298 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22424, + "end_line": 22427 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22553, + "end_line": 22556 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22682, + "end_line": 22685 + }, + { + "statements": [ + "Copyright Apple Inc., 2017" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 22811, + "end_line": 22814 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/devtools-full.gif", + "type": "file", + "name": "devtools-full.gif", + "base_name": "devtools-full", + "extension": ".gif", + "size": 1411979, + "date": "2018-03-12", + "sha1": "03edc1c9a953b8e5583a1f1ea8026252133802a0", + "md5": "f57ae67cfaa1fe76880654e2eddbf71f", + "mime_type": "image/gif", + "file_type": "GIF image data, version 87a, 667 x 523", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 1804, + "end_line": 1804, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/devtools-search.gif", + "type": "file", + "name": "devtools-search.gif", + "base_name": "devtools-search", + "extension": ".gif", + "size": 951506, + "date": "2018-03-12", + "sha1": "687d61c75f4c9e529d4e1d50cb5a955e65900044", + "md5": "9e5f4fcd1569e0ff017320590aafbc85", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 1684 x 480", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/devtools-side-pane.gif", + "type": "file", + "name": "devtools-side-pane.gif", + "base_name": "devtools-side-pane", + "extension": ".gif", + "size": 43651, + "date": "2018-03-12", + "sha1": "440cd4086a058c36fb88cfa1443c1cc9187b5d38", + "md5": "f3552d987634913612d6f06248fd303d", + "mime_type": "image/gif", + "file_type": "GIF image data, version 87a, 304 x 167", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/devtools-tree-view.png", + "type": "file", + "name": "devtools-tree-view.png", + "base_name": "devtools-tree-view", + "extension": ".png", + "size": 72863, + "date": "2018-03-12", + "sha1": "a69802a0c77d77ff31f6a501b784a97171d83deb", + "md5": "e6fb2a1f2ea4b574edf85c8fc8c6f571", + "mime_type": "image/png", + "file_type": "PNG image data, 1320 x 298, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/dog-tutorial.png", + "type": "file", + "name": "dog-tutorial.png", + "base_name": "dog-tutorial", + "extension": ".png", + "size": 41424, + "date": "2018-03-12", + "sha1": "e5d6da928ac07e2cb56335eaadb80c1dc583caa1", + "md5": "06130eab5bfa60ef72b5a8249ed07565", + "mime_type": "image/png", + "file_type": "PNG image data, 313 x 328, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/error-boundaries-stack-trace-line-numbers.png", + "type": "file", + "name": "error-boundaries-stack-trace-line-numbers.png", + "base_name": "error-boundaries-stack-trace-line-numbers", + "extension": ".png", + "size": 36708, + "date": "2018-03-12", + "sha1": "812884fad34c258783f746fb374801115993475c", + "md5": "45611d4fdbd152829b28ae2348d6dcba", + "mime_type": "image/png", + "file_type": "PNG image data, 1597 x 263, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/error-boundaries-stack-trace.png", + "type": "file", + "name": "error-boundaries-stack-trace.png", + "base_name": "error-boundaries-stack-trace", + "extension": ".png", + "size": 35719, + "date": "2018-03-12", + "sha1": "23b05f1f4d202a565c19c77c00cd9e5d16c86906", + "md5": "f1276837b03821b43358d44c14072945", + "mime_type": "image/png", + "file_type": "PNG image data, 1601 x 274, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/first-look.png", + "type": "file", + "name": "first-look.png", + "base_name": "first-look", + "extension": ".png", + "size": 28235, + "date": "2018-03-12", + "sha1": "643c9c087a1523755c548e40c55317c6c2324b6d", + "md5": "2fa9ac454433e7979c34d9924bdb5e63", + "mime_type": "image/png", + "file_type": "PNG image data, 339 x 220, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/flux-chart.png", + "type": "file", + "name": "flux-chart.png", + "base_name": "flux-chart", + "extension": ".png", + "size": 42565, + "date": "2018-03-12", + "sha1": "9ccbd917aff5804cf6550685fed4a4b5b332dec7", + "md5": "2d495afb05a28c237d0dfc5c9133f4be", + "mime_type": "image/png", + "file_type": "PNG image data, 843 x 474, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/flux-diagram.png", + "type": "file", + "name": "flux-diagram.png", + "base_name": "flux-diagram", + "extension": ".png", + "size": 133192, + "date": "2018-03-12", + "sha1": "075e4f0781d6f91146ffebe92d19da6438e96076", + "md5": "b4643456a3de61c8352415a6fc171876", + "mime_type": "image/png", + "file_type": "PNG image data, 2202 x 1096, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/genesis_skeleton.png", + "type": "file", + "name": "genesis_skeleton.png", + "base_name": "genesis_skeleton", + "extension": ".png", + "size": 145981, + "date": "2018-03-12", + "sha1": "36380f711a4aa01061331c099633cb8e80e4d4f9", + "md5": "259206cbb4fb491a332101fe243eed3c", + "mime_type": "image/png", + "file_type": "PNG image data, 473 x 197, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/gpu-cursor-move.gif", + "type": "file", + "name": "gpu-cursor-move.gif", + "base_name": "gpu-cursor-move", + "extension": ".gif", + "size": 808516, + "date": "2018-03-12", + "sha1": "e085ef69796100c52eba0e40c83a9dd0ac60682e", + "md5": "815dd214138d96c3144488df6f6e6c69", + "mime_type": "image/gif", + "file_type": "GIF image data, version 87a, 820 x 276", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/guess_filter.jpg", + "type": "file", + "name": "guess_filter.jpg", + "base_name": "guess_filter", + "extension": ".jpg", + "size": 38580, + "date": "2018-03-12", + "sha1": "d3f5b32e194f78074e6633b34392cc1dcb6bda9b", + "md5": "f43785b4e739e9b321be15192b6a9e42", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 96x96, segment length 16, progressive, precision 8, 500x430, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/hacker-news-react-native.png", + "type": "file", + "name": "hacker-news-react-native.png", + "base_name": "hacker-news-react-native", + "extension": ".png", + "size": 105307, + "date": "2018-03-12", + "sha1": "5b49073187ec3e578dddc1fbe402cf25463fa4dd", + "md5": "d95824e8653ed44f2baa8420276fc116", + "mime_type": "image/png", + "file_type": "PNG image data, 400 x 306, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/jsx-compiler.png", + "type": "file", + "name": "jsx-compiler.png", + "base_name": "jsx-compiler", + "extension": ".png", + "size": 14013, + "date": "2018-03-12", + "sha1": "74a7e391b77f3e2e0c11a1ee0ed6a61277e0b74c", + "md5": "37ce6d8aee23d1828ba57953662522fe", + "mime_type": "image/png", + "file_type": "PNG image data, 595 x 221, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/kendoui.png", + "type": "file", + "name": "kendoui.png", + "base_name": "kendoui", + "extension": ".png", + "size": 22568, + "date": "2018-03-12", + "sha1": "a879b678cf9e9975bd2e13151269032bc82634ea", + "md5": "f224061339f4e67b1a4db564e45f0361", + "mime_type": "image/png", + "file_type": "PNG image data, 248 x 300, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/khan-academy-editor.png", + "type": "file", + "name": "khan-academy-editor.png", + "base_name": "khan-academy-editor", + "extension": ".png", + "size": 11108, + "date": "2018-03-12", + "sha1": "22e8ca0df9637172406989fcd99618d352faa422", + "md5": "6766b99a660aad664aadd0fb63983ebe", + "mime_type": "application/octet-stream", + "file_type": "RIFF (little-endian) data, Web/P image, VP8 encoding, 485x315, Scaling: [none]x[none], YUV color, decoders should clamp", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/landoflisp.png", + "type": "file", + "name": "landoflisp.png", + "base_name": "landoflisp", + "extension": ".png", + "size": 111272, + "date": "2018-03-12", + "sha1": "17294b816f3fd039950e2837f4dea1f23f3b469d", + "md5": "5439e8d50448bcd20ad4c93c5b8eb9a3", + "mime_type": "image/png", + "file_type": "PNG image data, 415 x 191, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/lights-out.png", + "type": "file", + "name": "lights-out.png", + "base_name": "lights-out", + "extension": ".png", + "size": 3331, + "date": "2018-03-12", + "sha1": "b394854680a1d9dd3d012ffebe94617904538097", + "md5": "e52d4d2e3aabc23b2e91f37049044467", + "mime_type": "image/png", + "file_type": "PNG image data, 206 x 226, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/makona-editor.png", + "type": "file", + "name": "makona-editor.png", + "base_name": "makona-editor", + "extension": ".png", + "size": 24106, + "date": "2018-03-12", + "sha1": "f67c2da2d8383997915e98bb4c1454213fb02063", + "md5": "3b358d6c45562d5595b516172bd942b0", + "mime_type": "image/png", + "file_type": "PNG image data, 600 x 348, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/markdown_refactor.png", + "type": "file", + "name": "markdown_refactor.png", + "base_name": "markdown_refactor", + "extension": ".png", + "size": 5448, + "date": "2018-03-12", + "sha1": "41d9aa86a567723f6c1889ceea6323d57caca940", + "md5": "783ad0cd251ae63e77cdac409f51ec1a", + "mime_type": "image/png", + "file_type": "PNG image data, 233 x 301, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/modus-create.gif", + "type": "file", + "name": "modus-create.gif", + "base_name": "modus-create", + "extension": ".gif", + "size": 1016073, + "date": "2018-03-12", + "sha1": "97602540574eb1070cc1877acc3cf2e29073ebd9", + "md5": "0183b8a57a7dac85055377b28438e013", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 250 x 443", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/monkeys.gif", + "type": "file", + "name": "monkeys.gif", + "base_name": "monkeys", + "extension": ".gif", + "size": 544763, + "date": "2018-03-12", + "sha1": "456550a64855c30950c7a68a5aae37e42c570f47", + "md5": "59f1cd505fd0b91572fffed4d86685bb", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 625 x 400", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/ngreact.png", + "type": "file", + "name": "ngreact.png", + "base_name": "ngreact", + "extension": ".png", + "size": 55662, + "date": "2018-03-12", + "sha1": "703be8410cb968da1351c297c8473b10452f3bcf", + "md5": "e60b0ac55b3643b99cc93e280a66f0b6", + "mime_type": "image/png", + "file_type": "PNG image data, 500 x 256, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/om-backbone.png", + "type": "file", + "name": "om-backbone.png", + "base_name": "om-backbone", + "extension": ".png", + "size": 129507, + "date": "2018-03-12", + "sha1": "032936aabd858beb2fb6328b86779e0e7eae5b37", + "md5": "334ad2139d1fc85a09b69771780e90b4", + "mime_type": "image/png", + "file_type": "PNG image data, 500 x 262, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/parse-react.jpg", + "type": "file", + "name": "parse-react.jpg", + "base_name": "parse-react", + "extension": ".jpg", + "size": 49029, + "date": "2018-03-12", + "sha1": "0659ccdcdd6d90dc4d7393b1468eae99a75422af", + "md5": "0cf345b88603272a491839c586ccf385", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=5, orientation=upper-left, xresolution=74, yresolution=82, resolutionunit=2], progressive, precision 8, 650x120, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998 Hewlett-Packard Company" + ], + "holders": [ + "Hewlett-Packard Company" + ], + "authors": [], + "start_line": 28, + "end_line": 31 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/polarr.jpg", + "type": "file", + "name": "polarr.jpg", + "base_name": "polarr", + "extension": ".jpg", + "size": 67576, + "date": "2018-03-12", + "sha1": "082dceb9358284c46e990552da139419bddf7720", + "md5": "83d861c089a5f23cfb42f12966976acf", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 143x143, segment length 16, progressive, precision 8, 500x264, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/propeller-logo.png", + "type": "file", + "name": "propeller-logo.png", + "base_name": "propeller-logo", + "extension": ".png", + "size": 1297, + "date": "2018-03-12", + "sha1": "52a3a589e3bb23fd64d18788b67dba1173b22c9c", + "md5": "0dc638d3c8982f1168970d0e17ab2fc7", + "mime_type": "image/png", + "file_type": "PNG image data, 100 x 100, 8-bit gray+alpha, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/property-finder.png", + "type": "file", + "name": "property-finder.png", + "base_name": "property-finder", + "extension": ".png", + "size": 62409, + "date": "2018-03-12", + "sha1": "ed4be28ecc1ce6f3f08cf8c1c26e92be87f9cf8b", + "md5": "6e28878b4ef469a53735b49665fd7b93", + "mime_type": "image/png", + "file_type": "PNG image data, 400 x 206, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/quiztime.png", + "type": "file", + "name": "quiztime.png", + "base_name": "quiztime", + "extension": ".png", + "size": 19150, + "date": "2018-03-12", + "sha1": "3bdc4e20fc89608e7945a323f181838beebdf116", + "md5": "87c3ca8abe022b961986036616c132ba", + "mime_type": "image/png", + "file_type": "PNG image data, 400 x 331, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-50k-mock-full.jpg", + "type": "file", + "name": "react-50k-mock-full.jpg", + "base_name": "react-50k-mock-full", + "extension": ".jpg", + "size": 129881, + "date": "2018-03-12", + "sha1": "4a561447604e28239a3e9df58ce7ea2dc103f497", + "md5": "e73d427ee119099a43177231e3486625", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.02, aspect ratio, density 1x1, segment length 16, progressive, precision 8, 893x2048, frames 3, comment: \"*\", progressive, precision 8, 893x2048, frames 3, progressive, precision 8, 893x2048, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright International Color Consortium, 2009" + ], + "holders": [ + "International Color Consortium" + ], + "authors": [], + "start_line": 80, + "end_line": 83 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-50k-mock.jpg", + "type": "file", + "name": "react-50k-mock.jpg", + "base_name": "react-50k-mock", + "extension": ".jpg", + "size": 85038, + "date": "2018-03-12", + "sha1": "399e6c26bc20658fb984afa81c885b329e76269a", + "md5": "4c980ebecab37b61a1f7db2f95d91b96", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, aspect ratio, density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=3, PhotometricIntepretation=RGB, orientation=upper-left], progressive, precision 8, 893x916, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-50k-tshirt.jpg", + "type": "file", + "name": "react-50k-tshirt.jpg", + "base_name": "react-50k-tshirt", + "extension": ".jpg", + "size": 648553, + "date": "2018-03-12", + "sha1": "b3126bff7a95390a5166008898f97a42e8d0a0c6", + "md5": "dd4bfca3eacb85dc3c81fe91fb2e1c10", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, progressive, precision 8, 1200x627, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-browserify-gulp.jpg", + "type": "file", + "name": "react-browserify-gulp.jpg", + "base_name": "react-browserify-gulp", + "extension": ".jpg", + "size": 23697, + "date": "2018-03-12", + "sha1": "c71e7345034e53efba58ff86f9bf320d9f48dc6a", + "md5": "7873a26312d1d592042c1dcd5e756bd4", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=6, PhotometricIntepretation=RGB, orientation=upper-left, xresolution=86, yresolution=94, resolutionunit=2], progressive, precision 8, 400x125, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998 Hewlett-Packard Company" + ], + "holders": [ + "Hewlett-Packard Company" + ], + "authors": [], + "start_line": 24, + "end_line": 27 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-dev-tools.jpg", + "type": "file", + "name": "react-dev-tools.jpg", + "base_name": "react-dev-tools", + "extension": ".jpg", + "size": 71395, + "date": "2018-03-12", + "sha1": "e9ccf16ab2b3f1b3bd9ed881f95bb48e02b5516d", + "md5": "5f54a3494dc3c629a78953d2ccea6ae3", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=5, orientation=upper-left, xresolution=74, yresolution=82, resolutionunit=2], progressive, precision 8, 560x350, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright (c) 1998 Hewlett-Packard Company" + ], + "holders": [ + "Hewlett-Packard Company" + ], + "authors": [], + "start_line": 24, + "end_line": 27 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-diff-tree.png", + "type": "file", + "name": "react-diff-tree.png", + "base_name": "react-diff-tree", + "extension": ".png", + "size": 27479, + "date": "2018-03-12", + "sha1": "04c5324b6abf1d1dbfb28b582fc1f336b0548440", + "md5": "8442f993f1c4cf9edd4e4315fc6d32a5", + "mime_type": "image/png", + "file_type": "PNG image data, 486 x 222, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-draggable.png", + "type": "file", + "name": "react-draggable.png", + "base_name": "react-draggable", + "extension": ".png", + "size": 10457, + "date": "2018-03-12", + "sha1": "37a00d41336d5657cc6855b9ce58891ce59838a0", + "md5": "14c204c6a463067ab43d3a17dbe41925", + "mime_type": "image/png", + "file_type": "PNG image data, 565 x 374, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-hackathon.jpg", + "type": "file", + "name": "react-hackathon.jpg", + "base_name": "react-hackathon", + "extension": ".jpg", + "size": 49943, + "date": "2018-03-12", + "sha1": "05ea95dad637051ce71965fbd6e3bdf6a8a84106", + "md5": "16bbe4b6c8d5939f92e6a7c9afca22c2", + "mime_type": "image/jpeg", + "file_type": "JPEG image data, JFIF standard 1.01, resolution (DPI), density 96x96, segment length 16, progressive, precision 8, 650x247, frames 3", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-page.png", + "type": "file", + "name": "react-page.png", + "base_name": "react-page", + "extension": ".png", + "size": 20418, + "date": "2018-03-12", + "sha1": "61e28e391a85de59568f71c1cd37e925fec24ed4", + "md5": "01b89cb5c9975b566dfbc3dc1c74299f", + "mime_type": "image/png", + "file_type": "PNG image data, 465 x 153, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-perf-chrome-timeline.png", + "type": "file", + "name": "react-perf-chrome-timeline.png", + "base_name": "react-perf-chrome-timeline", + "extension": ".png", + "size": 70018, + "date": "2018-03-12", + "sha1": "862b91feaf38635b81491be827436a6b0500394d", + "md5": "64d522b74fb585f1abada9801f85fa9d", + "mime_type": "image/png", + "file_type": "PNG image data, 651 x 228, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-php.png", + "type": "file", + "name": "react-php.png", + "base_name": "react-php", + "extension": ".png", + "size": 36513, + "date": "2018-03-12", + "sha1": "1d7262b59d9b87e3ed9284d56d8a4abf9a0a083d", + "md5": "b5fff9e81996175f90c9de3e1a89018f", + "mime_type": "image/png", + "file_type": "PNG image data, 300 x 384, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/react-svg-fbp.png", + "type": "file", + "name": "react-svg-fbp.png", + "base_name": "react-svg-fbp", + "extension": ".png", + "size": 58575, + "date": "2018-03-12", + "sha1": "4cec2a8213b5781a47cf184043f16f6ac4ec9932", + "md5": "c6e36bd8c08ad65a23cdb74716dd8055", + "mime_type": "image/png", + "file_type": "PNG image data, 640 x 269, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/reactive-bookmarklet.png", + "type": "file", + "name": "reactive-bookmarklet.png", + "base_name": "reactive-bookmarklet", + "extension": ".png", + "size": 41809, + "date": "2018-03-12", + "sha1": "09b8363c7fab1ba77a86d1386a2c826d9f271e09", + "md5": "6551549bffc01c354de58e2e2c52dcef", + "mime_type": "image/png", + "file_type": "PNG image data, 641 x 122, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/reflux-flux.png", + "type": "file", + "name": "reflux-flux.png", + "base_name": "reflux-flux", + "extension": ".png", + "size": 2034, + "date": "2018-03-12", + "sha1": "b5454e09dd07386e275cbffce5ea89c6aa175c03", + "md5": "d3e5d0171e6314fdff557935cd5529ae", + "mime_type": "image/png", + "file_type": "PNG image data, 442 x 120, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/relay-visual-architecture-tour.png", + "type": "file", + "name": "relay-visual-architecture-tour.png", + "base_name": "relay-visual-architecture-tour", + "extension": ".png", + "size": 132058, + "date": "2018-03-12", + "sha1": "a1bf97310f500af2ca1c2256c15a2f79df15e0ff", + "md5": "e0dc3c84310229dedcb20fbb5c7bf25a", + "mime_type": "image/png", + "file_type": "PNG image data, 2512 x 1130, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/resistance-calculator.png", + "type": "file", + "name": "resistance-calculator.png", + "base_name": "resistance-calculator", + "extension": ".png", + "size": 45239, + "date": "2018-03-12", + "sha1": "6d0ad3f82c634bb9de50abeb693c6bca9206cfc6", + "md5": "d8672fc477cbb202b53c2b23b7827bd0", + "mime_type": "image/png", + "file_type": "PNG image data, 600 x 388, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/skills-matter.png", + "type": "file", + "name": "skills-matter.png", + "base_name": "skills-matter", + "extension": ".png", + "size": 123193, + "date": "2018-03-12", + "sha1": "0f0d90628dd6801d8e34a51cb94b5109af227663", + "md5": "fd557144f90c6eabb680d1247345e520", + "mime_type": "image/png", + "file_type": "PNG image data, 650 x 313, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/snake.png", + "type": "file", + "name": "snake.png", + "base_name": "snake", + "extension": ".png", + "size": 6958, + "date": "2018-03-12", + "sha1": "ef2985f1fa8bc2647b6f4e27d5879dc586b7665d", + "md5": "f7ff77c7e9a43b2553ab601a0df23d61", + "mime_type": "image/png", + "file_type": "PNG image data, 300 x 316, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/steve_reverse.gif", + "type": "file", + "name": "steve_reverse.gif", + "base_name": "steve_reverse", + "extension": ".gif", + "size": 5657828, + "date": "2018-03-12", + "sha1": "ae784b46d814b2dccb78dfeb92894b96ab1dd1f1", + "md5": "9a234bbe4d23c11a99f5b334b3f25f9b", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 320 x 240", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 11886, + "end_line": 11886, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 52236, + "end_line": 52236, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + }, + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 64330, + "end_line": 64330, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/sweet-jsx.png", + "type": "file", + "name": "sweet-jsx.png", + "base_name": "sweet-jsx", + "extension": ".png", + "size": 18857, + "date": "2018-03-12", + "sha1": "fd44c91f2e40955b5686418d0e54939f24497ff0", + "md5": "fd70471ea0b23dc270959134e3baf136", + "mime_type": "image/png", + "file_type": "PNG image data, 678 x 274, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/tcomb-react-native.png", + "type": "file", + "name": "tcomb-react-native.png", + "base_name": "tcomb-react-native", + "extension": ".png", + "size": 24838, + "date": "2018-03-12", + "sha1": "fd94f40af320724e25bc618c4eda51676bce75cf", + "md5": "afd9ed207a25a624627fa13ae18139a0", + "mime_type": "image/png", + "file_type": "PNG image data, 300 x 305, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/thinking-in-react-components.png", + "type": "file", + "name": "thinking-in-react-components.png", + "base_name": "thinking-in-react-components", + "extension": ".png", + "size": 19048, + "date": "2018-03-12", + "sha1": "10f33d5c9bbb5e8579462d52c1dcfd3dec62cb8d", + "md5": "eb8bda25806a89ebdc838813bdfa3601", + "mime_type": "image/png", + "file_type": "PNG image data, 275 x 319, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/thinking-in-react-mock.png", + "type": "file", + "name": "thinking-in-react-mock.png", + "base_name": "thinking-in-react-mock", + "extension": ".png", + "size": 17459, + "date": "2018-03-12", + "sha1": "bae4018922253a92c9bdebf387ed18490309b716", + "md5": "1071fbcc9eed01fddc115b41e193ec11", + "mime_type": "image/png", + "file_type": "PNG image data, 228 x 277, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/todomvc.png", + "type": "file", + "name": "todomvc.png", + "base_name": "todomvc", + "extension": ".png", + "size": 22314, + "date": "2018-03-12", + "sha1": "1a149e47acf2e68e0767b859316b3ce56a09cbeb", + "md5": "d2c3b90797c16ad85c4a782bb7af4466", + "mime_type": "image/png", + "file_type": "PNG image data, 595 x 203, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/turboreact.png", + "type": "file", + "name": "turboreact.png", + "base_name": "turboreact", + "extension": ".png", + "size": 3507, + "date": "2018-03-12", + "sha1": "e1f4a36b53d1d7d791845e273362998ccb58583e", + "md5": "5edcabbaa9ea84c0267c62e69efcb513", + "mime_type": "image/png", + "file_type": "PNG image data, 566 x 213, 8-bit colormap, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/tutsplus.png", + "type": "file", + "name": "tutsplus.png", + "base_name": "tutsplus", + "extension": ".png", + "size": 29520, + "date": "2018-03-12", + "sha1": "1eaccc88a65cd870d4c96662a8bcfca721e5db82", + "md5": "665d6cdd9250ec273690046a14392189", + "mime_type": "image/png", + "file_type": "PNG image data, 591 x 344, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/unite.png", + "type": "file", + "name": "unite.png", + "base_name": "unite", + "extension": ".png", + "size": 13667, + "date": "2018-03-12", + "sha1": "5cd4a3055e6bc5d1b20916683ecf48152f254db7", + "md5": "15b2439e1b8523156ef985b3855a83ba", + "mime_type": "image/png", + "file_type": "PNG image data, 500 x 198, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/versioning-1.png", + "type": "file", + "name": "versioning-1.png", + "base_name": "versioning-1", + "extension": ".png", + "size": 22781, + "date": "2018-03-12", + "sha1": "52e1d4c79283db90725b2bc5e5ab39112f88a861", + "md5": "899ef384f039caa51a9f58b621828d7e", + "mime_type": "image/png", + "file_type": "PNG image data, 806 x 206, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/versioning-2.png", + "type": "file", + "name": "versioning-2.png", + "base_name": "versioning-2", + "extension": ".png", + "size": 23649, + "date": "2018-03-12", + "sha1": "6d297d4b71101b6ad85364d1c1ea88453756d9ba", + "md5": "90b0bb4245cfdf42bff9db6f496b75bd", + "mime_type": "image/png", + "file_type": "PNG image data, 926 x 222, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/versioning-3.png", + "type": "file", + "name": "versioning-3.png", + "base_name": "versioning-3", + "extension": ".png", + "size": 45207, + "date": "2018-03-12", + "sha1": "d2c348ad29a1c8c65002360f08501d6f733303b4", + "md5": "7575ed187d0a8ec68ec68169720d0f27", + "mime_type": "image/png", + "file_type": "PNG image data, 1006 x 274, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/versioning-4.png", + "type": "file", + "name": "versioning-4.png", + "base_name": "versioning-4", + "extension": ".png", + "size": 49055, + "date": "2018-03-12", + "sha1": "3e6e367884ef6f4e94b961353a022b5a5e0af990", + "md5": "d8dd49a51f663d1b96c8b3ac27749f78", + "mime_type": "image/png", + "file_type": "PNG image data, 996 x 346, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/versioning-5.png", + "type": "file", + "name": "versioning-5.png", + "base_name": "versioning-5", + "extension": ".png", + "size": 32277, + "date": "2018-03-12", + "sha1": "22de0eec0e0f0f08d056e2bd0347fa43615260b1", + "md5": "b7e3bc7d2d111e92cfeb45ec0b361faa", + "mime_type": "image/png", + "file_type": "PNG image data, 986 x 266, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/versioning-6.png", + "type": "file", + "name": "versioning-6.png", + "base_name": "versioning-6", + "extension": ".png", + "size": 45913, + "date": "2018-03-12", + "sha1": "f9bb612eadb5738c0c2f5a17c9119244a0827464", + "md5": "ec08ea1a53fcb540a5930a3f1f231bf8", + "mime_type": "image/png", + "file_type": "PNG image data, 986 x 306, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/versioning-poll.png", + "type": "file", + "name": "versioning-poll.png", + "base_name": "versioning-poll", + "extension": ".png", + "size": 49380, + "date": "2018-03-12", + "sha1": "fa2c3ed8d9d3b528cd67b85866b530484490b54e", + "md5": "b770014ccb13dbca11ddd0bbb5353319", + "mime_type": "image/png", + "file_type": "PNG image data, 1192 x 798, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/weather.png", + "type": "file", + "name": "weather.png", + "base_name": "weather", + "extension": ".png", + "size": 6961, + "date": "2018-03-12", + "sha1": "f0732c5fe7e7792ec58a001200e5f39d6ef8a3f4", + "md5": "8f130f2a80f0e7d4b07d59554f957ec6", + "mime_type": "image/png", + "file_type": "PNG image data, 133 x 150, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/wolfenstein_react.png", + "type": "file", + "name": "wolfenstein_react.png", + "base_name": "wolfenstein_react", + "extension": ".png", + "size": 113588, + "date": "2018-03-12", + "sha1": "140484035a69fc9aef22bd7923f0c5f3d97880cf", + "md5": "a1e0d13a915d083c08c19c77b39a64de", + "mime_type": "image/png", + "file_type": "PNG image data, 650 x 283, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/xoxo2013.png", + "type": "file", + "name": "xoxo2013.png", + "base_name": "xoxo2013", + "extension": ".png", + "size": 172371, + "date": "2018-03-12", + "sha1": "efdcda5d4e83f223df72e82eeabbd2ef7bf18545", + "md5": "c49a2228158e7329a62e140b3ae56b81", + "mime_type": "image/png", + "file_type": "PNG image data, 550 x 300, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/xreact.png", + "type": "file", + "name": "xreact.png", + "base_name": "xreact", + "extension": ".png", + "size": 3250, + "date": "2018-03-12", + "sha1": "da194222c5de71c1f61546b539fc2e187e3dd6cb", + "md5": "f9207adea125403fe928594ccb67a539", + "mime_type": "image/png", + "file_type": "PNG image data, 347 x 78, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/create-apps-with-no-configuration", + "type": "directory", + "name": "create-apps-with-no-configuration", + "base_name": "create-apps-with-no-configuration", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 593616, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/create-apps-with-no-configuration/compiled-successfully.png", + "type": "file", + "name": "compiled-successfully.png", + "base_name": "compiled-successfully", + "extension": ".png", + "size": 51216, + "date": "2018-03-12", + "sha1": "e442b8566fd61712512e03edee7069c89551c03e", + "md5": "be1531bce6379ad2d464c28ee4f8b857", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/create-apps-with-no-configuration/compiled-with-warnings.png", + "type": "file", + "name": "compiled-with-warnings.png", + "base_name": "compiled-with-warnings", + "extension": ".png", + "size": 138371, + "date": "2018-03-12", + "sha1": "5055d07f91e4bb1633d207394ed296f902448693", + "md5": "29d85c69eb1a92345d129bd6354cfdd7", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/create-apps-with-no-configuration/created-folder.png", + "type": "file", + "name": "created-folder.png", + "base_name": "created-folder", + "extension": ".png", + "size": 139220, + "date": "2018-03-12", + "sha1": "250df7934be70571c6cd05d19bfb2844d87cddbe", + "md5": "b5996203fe38b91567eaa57139964146", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/create-apps-with-no-configuration/failed-to-compile.png", + "type": "file", + "name": "failed-to-compile.png", + "base_name": "failed-to-compile", + "extension": ".png", + "size": 139773, + "date": "2018-03-12", + "sha1": "678a970a2b64d56505aebc9086945a27c8009b7e", + "md5": "71717aaf13cf34cfdb4e6b7e6742fb64", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/create-apps-with-no-configuration/npm-run-build.png", + "type": "file", + "name": "npm-run-build.png", + "base_name": "npm-run-build", + "extension": ".png", + "size": 125036, + "date": "2018-03-12", + "sha1": "b24486f499c243ddcdfbb7d0db791bc982c591e4", + "md5": "a2138f74bd9969980c35c50936c6217d", + "mime_type": "image/png", + "file_type": "PNG image data, 1071 x 619, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/relay-components", + "type": "directory", + "name": "relay-components", + "base_name": "relay-components", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 156881, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/relay-components/relay-architecture.png", + "type": "file", + "name": "relay-architecture.png", + "base_name": "relay-architecture", + "extension": ".png", + "size": 56466, + "date": "2018-03-12", + "sha1": "217a4bd65bcfd1fc2ad71277213bf2966ffeebc0", + "md5": "1c7e934642028c84d5af545a945394ef", + "mime_type": "image/png", + "file_type": "PNG image data, 2400 x 1200, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/relay-components/relay-containers-data-flow.png", + "type": "file", + "name": "relay-containers-data-flow.png", + "base_name": "relay-containers-data-flow", + "extension": ".png", + "size": 27930, + "date": "2018-03-12", + "sha1": "fcbac90650792edb26abc4b578530a36e54298f2", + "md5": "46e660a80043eb9e7a4ea27b3562d4a7", + "mime_type": "image/png", + "file_type": "PNG image data, 1525 x 1055, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/relay-components/relay-containers.png", + "type": "file", + "name": "relay-containers.png", + "base_name": "relay-containers", + "extension": ".png", + "size": 14215, + "date": "2018-03-12", + "sha1": "670149abb229c7044a25052fa7c2d9fc41b06766", + "md5": "4e4a71a85b278968b8719601692bc18c", + "mime_type": "image/png", + "file_type": "PNG image data, 795 x 1055, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/blog/relay-components/sample-newsfeed.png", + "type": "file", + "name": "sample-newsfeed.png", + "base_name": "sample-newsfeed", + "extension": ".png", + "size": 58270, + "date": "2018-03-12", + "sha1": "deff6262d402bfee37d5aafde318280161b26647", + "md5": "75bc0f3653210df5df2c21a706cab9eb", + "mime_type": "image/png", + "file_type": "PNG image data, 720 x 900, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs", + "type": "directory", + "name": "docs", + "base_name": "docs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 15, + "dirs_count": 0, + "size_count": 974863, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/cdn-cors-header.png", + "type": "file", + "name": "cdn-cors-header.png", + "base_name": "cdn-cors-header", + "extension": ".png", + "size": 43492, + "date": "2018-03-12", + "sha1": "2218b082e345c55921916c8ecd9bd750b7fdab31", + "md5": "89baed0a6540f29e954065ce04661048", + "mime_type": "image/png", + "file_type": "PNG image data, 350 x 233, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/codewinds-004.png", + "type": "file", + "name": "codewinds-004.png", + "base_name": "codewinds-004", + "extension": ".png", + "size": 2320, + "date": "2018-03-12", + "sha1": "6c1c64c7f893d073167b67e3d0b085e2c4278689", + "md5": "f54dc1f82300ff7cbdaa921674d3ad79", + "mime_type": "image/png", + "file_type": "PNG image data, 264 x 27, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/devtools-dev.png", + "type": "file", + "name": "devtools-dev.png", + "base_name": "devtools-dev", + "extension": ".png", + "size": 52790, + "date": "2018-03-12", + "sha1": "4d1d1a32c7900026cfb66f4cc3603af3548e14d9", + "md5": "e434ce2f7e64f63e597edf03f4465694", + "mime_type": "image/png", + "file_type": "PNG image data, 600 x 200, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/devtools-prod.png", + "type": "file", + "name": "devtools-prod.png", + "base_name": "devtools-prod", + "extension": ".png", + "size": 27765, + "date": "2018-03-12", + "sha1": "6273bc3683687844e73f5f20c13a997df605a60b", + "md5": "d0f767f80866431ccdec18f200ca58f1", + "mime_type": "image/png", + "file_type": "PNG image data, 600 x 127, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/granular-dom-updates.gif", + "type": "file", + "name": "granular-dom-updates.gif", + "base_name": "granular-dom-updates", + "extension": ".gif", + "size": 127160, + "date": "2018-03-12", + "sha1": "ea7051325e2b9304d3b3ccfbd5f3db9a3ccd8efd", + "md5": "c158617ed7cc0eac8f58330e49e48224", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 286 x 456", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 87, + "end_line": 90 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 216, + "end_line": 219 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 345, + "end_line": 348 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 474, + "end_line": 477 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 603, + "end_line": 606 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 732, + "end_line": 735 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 861, + "end_line": 864 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 990, + "end_line": 993 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1119, + "end_line": 1122 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1248, + "end_line": 1251 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1377, + "end_line": 1380 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1506, + "end_line": 1509 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1635, + "end_line": 1638 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1764, + "end_line": 1767 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 1893, + "end_line": 1896 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2022, + "end_line": 2025 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2151, + "end_line": 2154 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2280, + "end_line": 2283 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2409, + "end_line": 2412 + }, + { + "statements": [ + "Copyright Apple Inc., 2016" + ], + "holders": [ + "Apple Inc." + ], + "authors": [], + "start_line": 2538, + "end_line": 2541 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/implementation-notes-tree.png", + "type": "file", + "name": "implementation-notes-tree.png", + "base_name": "implementation-notes-tree", + "extension": ".png", + "size": 52232, + "date": "2018-03-12", + "sha1": "04deaaec6a6995da752d1808758813baddcb32fa", + "md5": "d96fec10d250eace9756f09543bf5d58", + "mime_type": "image/png", + "file_type": "PNG image data, 1000 x 620, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/javascript-jabber.png", + "type": "file", + "name": "javascript-jabber.png", + "base_name": "javascript-jabber", + "extension": ".png", + "size": 1627, + "date": "2018-03-12", + "sha1": "04ee615c7e0661ea0c339b7c7ad78d58d7ce9a6c", + "md5": "f4fc507df82b6d5bed9e3e598f52c01e", + "mime_type": "image/png", + "file_type": "PNG image data, 400 x 30, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/keyboard-focus.png", + "type": "file", + "name": "keyboard-focus.png", + "base_name": "keyboard-focus", + "extension": ".png", + "size": 1703, + "date": "2018-03-12", + "sha1": "dd113a1f0ded728ea68988ca99cc7a7fd451f03a", + "md5": "dec0e6bcc1f882baf76ebc860d4f04e5", + "mime_type": "image/png", + "file_type": "PNG image data, 146 x 63, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/perf-dom.png", + "type": "file", + "name": "perf-dom.png", + "base_name": "perf-dom", + "extension": ".png", + "size": 7471, + "date": "2018-03-12", + "sha1": "4ccaa76cba3764fdaa617ef6e4deee17f27f25f7", + "md5": "57140a9924782c02dc7aac20042cf00d", + "mime_type": "image/png", + "file_type": "PNG image data, 687 x 32, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/perf-exclusive.png", + "type": "file", + "name": "perf-exclusive.png", + "base_name": "perf-exclusive", + "extension": ".png", + "size": 9508, + "date": "2018-03-12", + "sha1": "41fe7fcddd13ac84b3c6ebd09c2a31658b69afbd", + "md5": "741b84218e9be133eca2e0ab98c36e85", + "mime_type": "image/png", + "file_type": "PNG image data, 687 x 32, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/perf-inclusive.png", + "type": "file", + "name": "perf-inclusive.png", + "base_name": "perf-inclusive", + "extension": ".png", + "size": 12464, + "date": "2018-03-12", + "sha1": "55955d5fd7ceae0ea03bf5e9b09fd4a7dcca0e07", + "md5": "de71a97b6c44f7bd3a589a3f1d620525", + "mime_type": "image/png", + "file_type": "PNG image data, 687 x 62, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/perf-wasted.png", + "type": "file", + "name": "perf-wasted.png", + "base_name": "perf-wasted", + "extension": ".png", + "size": 16397, + "date": "2018-03-12", + "sha1": "9e2a898398d8f3526069f71cdfaa437b9cf9e999", + "md5": "a241eb09d0fd90eb56f48666ce9be586", + "mime_type": "image/png", + "file_type": "PNG image data, 687 x 62, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/react-devtools-state.gif", + "type": "file", + "name": "react-devtools-state.gif", + "base_name": "react-devtools-state", + "extension": ".gif", + "size": 580901, + "date": "2018-03-12", + "sha1": "05ade6c3d5ae581cb542d01ac6980aaf703763c5", + "md5": "ef94afc3447d75cdc245c77efb0d63be", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 623 x 322", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "gpl-1.0-plus", + "score": 5.0, + "short_name": "GPL 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus", + "spdx_license_key": "GPL-1.0+", + "spdx_url": "https://spdx.org/licenses/GPL-1.0", + "start_line": 2641, + "end_line": 2641, + "matched_rule": { + "identifier": "gpl_61.RULE", + "license_choice": false, + "licenses": [ + "gpl-1.0-plus" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/should-component-update.png", + "type": "file", + "name": "should-component-update.png", + "base_name": "should-component-update", + "extension": ".png", + "size": 24472, + "date": "2018-03-12", + "sha1": "66929a5beecf4c695ff0c463e655950841af9377", + "md5": "5ee1bdf4779af06072a17b7a0654f6db", + "mime_type": "image/png", + "file_type": "PNG image data, 555 x 371, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/docs/thinking-in-react-tagtree.png", + "type": "file", + "name": "thinking-in-react-tagtree.png", + "base_name": "thinking-in-react-tagtree", + "extension": ".png", + "size": 14561, + "date": "2018-03-12", + "sha1": "7de05be61f14d22f5de95878cf1de8ce82f3e08d", + "md5": "ac19d27c424380e8bec63af22bf89661", + "mime_type": "image/png", + "file_type": "PNG image data, 650 x 315, 8-bit colormap, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/tutorial", + "type": "directory", + "name": "tutorial", + "base_name": "tutorial", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 51937, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/tutorial/devtools.png", + "type": "file", + "name": "devtools.png", + "base_name": "devtools", + "extension": ".png", + "size": 23994, + "date": "2018-03-12", + "sha1": "b6d247639317597b89bf72ceed4b87d1b6149e9d", + "md5": "878d91461c78d8f238e116477dfe0b46", + "mime_type": "image/png", + "file_type": "PNG image data, 364 x 457, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/tutorial/tictac-empty.png", + "type": "file", + "name": "tictac-empty.png", + "base_name": "tictac-empty", + "extension": ".png", + "size": 11152, + "date": "2018-03-12", + "sha1": "ecd5a24aef36318fe28a895b504640176a9833da", + "md5": "1566a4f8490d6b4b1ed36cd2c11fe4b6", + "mime_type": "image/png", + "file_type": "PNG image data, 254 x 288, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/img/tutorial/tictac-numbers.png", + "type": "file", + "name": "tictac-numbers.png", + "base_name": "tictac-numbers", + "extension": ".png", + "size": 16791, + "date": "2018-03-12", + "sha1": "7b75c5f8ea9fe3f4108d1aa427bebf0b3fc8f592", + "md5": "685df774da6da48f451356f33f4be8b2", + "mime_type": "image/png", + "file_type": "PNG image data, 270 x 296, 8-bit/color RGBA, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/js", + "type": "directory", + "name": "js", + "base_name": "js", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 391, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/js/jsfiddle-integration-babel.js", + "type": "file", + "name": "jsfiddle-integration-babel.js", + "base_name": "jsfiddle-integration-babel", + "extension": ".js", + "size": 391, + "date": "2018-03-12", + "sha1": "c314c64895a1b7b8a2042e12b7be65e42232c654", + "md5": "779810f97dc0d25d9cd8548f7d4d92d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/tutorial", + "type": "directory", + "name": "tutorial", + "base_name": "tutorial", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 41709, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/tutorial/tutorial.md", + "type": "file", + "name": "tutorial.md", + "base_name": "tutorial", + "extension": ".md", + "size": 41709, + "date": "2018-03-12", + "sha1": "457abacfceed7bf174c10ff77fcd5652bdf655aa", + "md5": "059124d8c14efa6b8f76241723ea7bb2", + "mime_type": "text/html", + "file_type": "HTML document, UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/warnings", + "type": "directory", + "name": "warnings", + "base_name": "warnings", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 11898, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/warnings/dont-call-proptypes.md", + "type": "file", + "name": "dont-call-proptypes.md", + "base_name": "dont-call-proptypes", + "extension": ".md", + "size": 4147, + "date": "2018-03-12", + "sha1": "cb9631d097a2752f1b16a48e06a0134d1e9dd619", + "md5": "fbcba9a8b88d6bf6963c84d220ea1166", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/warnings/invalid-aria-prop.md", + "type": "file", + "name": "invalid-aria-prop.md", + "base_name": "invalid-aria-prop", + "extension": ".md", + "size": 773, + "date": "2018-03-12", + "sha1": "e485fc171903adb87aa853face49136691d528c1", + "md5": "de9fd25a76a0a1dcb77c9c4f86cf3058", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/warnings/legacy-factories.md", + "type": "file", + "name": "legacy-factories.md", + "base_name": "legacy-factories", + "extension": ".md", + "size": 1497, + "date": "2018-03-12", + "sha1": "c1caba8241bd30dcbc900618407c15f6b7a1f0cb", + "md5": "93becbca57edf6fb3d3e4a731d688565", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/warnings/refs-must-have-owner.md", + "type": "file", + "name": "refs-must-have-owner.md", + "base_name": "refs-must-have-owner", + "extension": ".md", + "size": 1709, + "date": "2018-03-12", + "sha1": "4e63f4d763c19a1f9a6e96edaf8d8d28cdbc15f6", + "md5": "8e4e3901c99061944231a5e543ae299c", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/warnings/special-props.md", + "type": "file", + "name": "special-props.md", + "base_name": "special-props", + "extension": ".md", + "size": 646, + "date": "2018-03-12", + "sha1": "7b225ae3c9ec006804d320314b7db3624615e372", + "md5": "46fd414d675325c3b12cdac18a6029d3", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/docs/warnings/unknown-prop.md", + "type": "file", + "name": "unknown-prop.md", + "base_name": "unknown-prop", + "extension": ".md", + "size": 3126, + "date": "2018-03-12", + "sha1": "caa99407248ed615f86417bda8e8bcfe7098b299", + "md5": "cd7fd3c618e1c578c2c7527dfe625ba7", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules", + "type": "directory", + "name": "eslint-rules", + "base_name": "eslint-rules", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 1, + "size_count": 8190, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 201, + "date": "2018-03-12", + "sha1": "5d607bc5ef97322b50d6da35424e9c99ad3402c8", + "md5": "2912e0366ddd318fbbe961b54a2597aa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules/no-primitive-constructors.js", + "type": "file", + "name": "no-primitive-constructors.js", + "base_name": "no-primitive-constructors", + "extension": ".js", + "size": 1137, + "date": "2018-03-12", + "sha1": "8a553835aed2da8880674e563a633aa790fcbd24", + "md5": "2f15783970f7322375e7f2c0a84a451d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 67, + "date": "2018-03-12", + "sha1": "c3572fb450931388e11c6a22612fb1c6cc8134f0", + "md5": "70e80929593bc43072b53657ae0a5bbd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "eslint-plugin-react-internal", + "version": "0.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/eslint-plugin-react-internal/-/eslint-plugin-react-internal-0.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 369, + "date": "2018-03-12", + "sha1": "723dd012bc515ecda762d99db5e2f5d1778d9847", + "md5": "83e59ec0042c23de7645fc0c548e59a8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules/warning-and-invariant-args.js", + "type": "file", + "name": "warning-and-invariant-args.js", + "base_name": "warning-and-invariant-args", + "extension": ".js", + "size": 2600, + "date": "2018-03-12", + "sha1": "d7a96a800977a6de883d44526e87b80643f24e08", + "md5": "7007c809c76b72c2d5a37f30f9e480aa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 3816, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules/__tests__/no-primitive-constructors-test.js", + "type": "file", + "name": "no-primitive-constructors-test.js", + "base_name": "no-primitive-constructors-test", + "extension": ".js", + "size": 1234, + "date": "2018-03-12", + "sha1": "755ce242849af1c151e09a1238449df5380f4460", + "md5": "66dee54b4b1e3217230fb3ad1fec415b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/eslint-rules/__tests__/warning-and-invariant-args-test.js", + "type": "file", + "name": "warning-and-invariant-args-test.js", + "base_name": "warning-and-invariant-args-test", + "extension": ".js", + "size": 2582, + "date": "2018-03-12", + "sha1": "0e19151bceb0cb5b1719e52e51db99a29bb3c979", + "md5": "541b5b43af57b671a3e0d7e6f94200af", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures", + "type": "directory", + "name": "fixtures", + "base_name": "fixtures", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 149, + "dirs_count": 54, + "size_count": 1934003, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/art", + "type": "directory", + "name": "art", + "base_name": "art", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 83893, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/art/app.js", + "type": "file", + "name": "app.js", + "base_name": "app", + "extension": ".js", + "size": 202, + "date": "2018-03-12", + "sha1": "4e32e7f5a89e5373d0f19c80121fb4cb8fd10e18", + "md5": "aa0e671f26398316a3c326b8a304b8ce", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/art/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 385, + "date": "2018-03-12", + "sha1": "5bea078121a288db1b3e0e91e6717709041a0471", + "md5": "487bb08ececdaa967051e4f092208c9d", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/art/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 499, + "date": "2018-03-12", + "sha1": "15611338ca03e11fb78e94c975f8dc9063948b54", + "md5": "4963c68740dc410a3fe0cc0bd580b700", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/art/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 143, + "date": "2018-03-12", + "sha1": "1adcc4be09015b0ad2f4483979f5e0c8f7b77338", + "md5": "6830c98a1185c9ba1476b5b8f49f4b78", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/art/VectorWidget.js", + "type": "file", + "name": "VectorWidget.js", + "base_name": "VectorWidget", + "extension": ".js", + "size": 5768, + "date": "2018-03-12", + "sha1": "16dd6b6c42982b2fe7b35953dc30c1bbc3a75c9f", + "md5": "af7fa0334ecc7d0775409f17a5b9cd8a", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/art/webpack.config.js", + "type": "file", + "name": "webpack.config.js", + "base_name": "webpack.config", + "extension": ".js", + "size": 750, + "date": "2018-03-12", + "sha1": "e7e23681fedd8c3b129ae07733f53f75e1c03803", + "md5": "de222df1ce99fb44fd266ef0c535ac73", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/art/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 76146, + "date": "2018-03-12", + "sha1": "eefe40425231b579f933467805440c23e45ebd5c", + "md5": "97fc2befbd828562fc2c6fe0deb6d4e2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior", + "type": "directory", + "name": "attribute-behavior", + "base_name": "attribute-behavior", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 2, + "size_count": 1038463, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/AttributeTableSnapshot.md", + "type": "file", + "name": "AttributeTableSnapshot.md", + "base_name": "AttributeTableSnapshot", + "extension": ".md", + "size": 695390, + "date": "2018-03-12", + "sha1": "3db6d63943d921a38deedd30415bb39d4eaab417", + "md5": "0346290e251d4560b9ce8194949c6662", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode (with BOM) text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 550, + "date": "2018-03-12", + "sha1": "45b49c87bb633ba9faa1a9458de37fd2a1fdbfbc", + "md5": "1ab554e3ca46970c7309c100225baf9e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "attribute-behavior", + "version": "0.1.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/attribute-behavior/-/attribute-behavior-0.1.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "file-saver", + "version": null, + "version_constraint": "^1.3.3" + }, + { + "name": "glamor", + "version": null, + "version_constraint": "^2.20.40" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.6.1" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.6.1" + }, + { + "name": "react-scripts", + "version": null, + "version_constraint": "1.0.11" + }, + { + "name": "react-virtualized", + "version": null, + "version_constraint": "^9.9.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 1151, + "date": "2018-03-12", + "sha1": "2420180037ef63e67496f168dda75796e85fa090", + "md5": "904fb6a97d5c51b16f660f08af1681b6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 231163, + "date": "2018-03-12", + "sha1": "a408bfa3bde1bd8f9e79c6a9faf0ff77c3c7af40", + "md5": "181f927b2efb43b4e43de100dae956d3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/public", + "type": "directory", + "name": "public", + "base_name": "public", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 26726, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/public/favicon.ico", + "type": "file", + "name": "favicon.ico", + "base_name": "favicon", + "extension": ".ico", + "size": 24838, + "date": "2018-03-12", + "sha1": "55bbacc4b53578835604e4954cf6bd414accb593", + "md5": "fd73a6eb26a08ee46e7fd3cc34e7f6bf", + "mime_type": "image/x-icon", + "file_type": "MS Windows icon resource - 4 icons, 16x16", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/public/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1590, + "date": "2018-03-12", + "sha1": "a8ede7b165311b6d4ec0a7306258349981eb010c", + "md5": "7a612eeecc511bfa64d73081e0201315", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/public/manifest.json", + "type": "file", + "name": "manifest.json", + "base_name": "manifest", + "extension": ".json", + "size": 298, + "date": "2018-03-12", + "sha1": "9b03c3d0b9ed5803d6f78422d0afa2ce1e2570e0", + "md5": "bafe1fbc4368a110b2b2a28024bd256d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 83483, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/src/App.css", + "type": "file", + "name": "App.css", + "base_name": "App", + "extension": ".css", + "size": 1, + "date": "2018-03-12", + "sha1": "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc", + "md5": "68b329da9893e34099c7d8ad5cb9c940", + "mime_type": "application/octet-stream", + "file_type": "very short file (no magic)", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/src/App.js", + "type": "file", + "name": "App.js", + "base_name": "App", + "extension": ".js", + "size": 25798, + "date": "2018-03-12", + "sha1": "a5ad329409aa401baf7e602961b7b20dbeb28372", + "md5": "86b4cd0acb013e25f67c546f5fc81a62", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/src/App.test.js", + "type": "file", + "name": "App.test.js", + "base_name": "App.test", + "extension": ".js", + "size": 208, + "date": "2018-03-12", + "sha1": "e86ecfb9aea94f5275129c20d21bf4dc89f0b3c5", + "md5": "8fa7e018d9f3b584c095915d7b9a030c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/src/attributes.js", + "type": "file", + "name": "attributes.js", + "base_name": "attributes", + "extension": ".js", + "size": 57221, + "date": "2018-03-12", + "sha1": "01a9d16ecba1386a5740a6d3b869724b41f86dc6", + "md5": "38031b719030dee7d3676fb44bcb7b9c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/src/index.css", + "type": "file", + "name": "index.css", + "base_name": "index", + "extension": ".css", + "size": 87, + "date": "2018-03-12", + "sha1": "bd6f8e8fe368e3e7c5bf084203c9f0b6a769008b", + "md5": "f876c5bb9ad1fd12838b6207dbd116eb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/attribute-behavior/src/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 168, + "date": "2018-03-12", + "sha1": "135320ea4b5b398790c0dcb8870e4b0c8241f6ed", + "md5": "80a2e7ee499536790f89e9352cc487da", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom", + "type": "directory", + "name": "dom", + "base_name": "dom", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 43, + "dirs_count": 15, + "size_count": 330286, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 634, + "date": "2018-03-12", + "sha1": "d483ecdb10e9cd3dd7c7f51d78296def82aea1f1", + "md5": "f80d7ecaa77bab87fa21629dbe29ab7b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-fixtures", + "version": "0.1.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-fixtures/-/react-fixtures-0.1.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "react-scripts", + "version": null, + "version_constraint": "^1.0.11" + } + ], + "runtime": [ + { + "name": "classnames", + "version": null, + "version_constraint": "^2.2.5" + }, + { + "name": "core-js", + "version": null, + "version_constraint": "^2.4.1" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.6.0" + }, + { + "name": "query-string", + "version": null, + "version_constraint": "^4.2.3" + }, + { + "name": "react", + "version": null, + "version_constraint": "^15.4.1" + }, + { + "name": "react-dom", + "version": null, + "version_constraint": "^15.4.1" + }, + { + "name": "semver", + "version": null, + "version_constraint": "^5.3.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 345, + "date": "2018-03-12", + "sha1": "7a0f643d92fb9cac2134f8072948e33387129173", + "md5": "aa59ade64118408c8752948a093866cd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 242235, + "date": "2018-03-12", + "sha1": "c0f57c9edc4c87a2c6c4fcaf25500f50ac56b7a2", + "md5": "f8148b98ca208db081cd9d592e4ab2de", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/public", + "type": "directory", + "name": "public", + "base_name": "public", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 26131, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/public/favicon.ico", + "type": "file", + "name": "favicon.ico", + "base_name": "favicon", + "extension": ".ico", + "size": 24838, + "date": "2018-03-12", + "sha1": "55bbacc4b53578835604e4954cf6bd414accb593", + "md5": "fd73a6eb26a08ee46e7fd3cc34e7f6bf", + "mime_type": "image/x-icon", + "file_type": "MS Windows icon resource - 4 icons, 16x16", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/public/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1293, + "date": "2018-03-12", + "sha1": "df06936bb5bbed9b83e0797b0a5edf6f9409424f", + "md5": "bce2a76e3149e320770900c0d71a4eec", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 38, + "dirs_count": 13, + "size_count": 60941, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 267, + "date": "2018-03-12", + "sha1": "6ad173845330639cb938587dece3393e30a65e6b", + "md5": "652d112daf6d9c39f55b55661505ea8a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/polyfills.js", + "type": "file", + "name": "polyfills.js", + "base_name": "polyfills", + "extension": ".js", + "size": 1246, + "date": "2018-03-12", + "sha1": "1cdfcabe80f24ddb40972a009e2e84407dd3dd72", + "md5": "cf948ed95afeb468d2015b4bf64ffdbd", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 9, + "end_line": 9, + "matched_rule": { + "identifier": "mit_14.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/react-loader.js", + "type": "file", + "name": "react-loader.js", + "base_name": "react-loader", + "extension": ".js", + "size": 1650, + "date": "2018-03-12", + "sha1": "fa798cf47c46a7ad1355b1c981997b332be32d19", + "md5": "1731904f79bb5ccfb8f74ace48549bfc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/style.css", + "type": "file", + "name": "style.css", + "base_name": "style", + "extension": ".css", + "size": 3245, + "date": "2018-03-12", + "sha1": "dd3a85eb601550d781e087cfb3d4f027efc2815e", + "md5": "fef7a770ac00170c1785276e3dce72db", + "mime_type": "text/x-asm", + "file_type": "assembler source, ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/tags.js", + "type": "file", + "name": "tags.js", + "base_name": "tags", + "extension": ".js", + "size": 2166, + "date": "2018-03-12", + "sha1": "da068d2f8dc61eedd9d0c71d0d0732f90b2a04c9", + "md5": "d56dbcd100b8dbcf73eb62d03005168b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components", + "type": "directory", + "name": "components", + "base_name": "components", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 33, + "dirs_count": 12, + "size_count": 52367, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/App.js", + "type": "file", + "name": "App.js", + "base_name": "App", + "extension": ".js", + "size": 281, + "date": "2018-03-12", + "sha1": "7f3aa3ff161b8ffbef0fbe4bd99eb41116202f09", + "md5": "1e573a239607806f3d155fd07ed6b96c", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/Fixture.js", + "type": "file", + "name": "Fixture.js", + "base_name": "Fixture", + "extension": ".js", + "size": 369, + "date": "2018-03-12", + "sha1": "cf116a4d6dd6d0339ffd05010dd775c46792af1f", + "md5": "59b2a7c981560012022eaf1505fea8eb", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/FixtureSet.js", + "type": "file", + "name": "FixtureSet.js", + "base_name": "FixtureSet", + "extension": ".js", + "size": 483, + "date": "2018-03-12", + "sha1": "3587425e59909d5c40e1a8aaec25c4469cffdd32", + "md5": "a27698120a94109c390ad3f5fed03789", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/Header.js", + "type": "file", + "name": "Header.js", + "base_name": "Header", + "extension": ".js", + "size": 2958, + "date": "2018-03-12", + "sha1": "a2be81a097d15c78cded50ee6d9bae87976ee031", + "md5": "11db5425445bc083488a5977ab2508be", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/IssueList.js", + "type": "file", + "name": "IssueList.js", + "base_name": "IssueList", + "extension": ".js", + "size": 522, + "date": "2018-03-12", + "sha1": "3076d2bd61e1fd0e19d3ed688252e8bffa12deb9", + "md5": "5db8a3b7b5688846b3cb8d80cde7acc1", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/propTypes.js", + "type": "file", + "name": "propTypes.js", + "base_name": "propTypes", + "extension": ".js", + "size": 434, + "date": "2018-03-12", + "sha1": "f787c5915f7d0bf9fd5e3e859047b83a72766a59", + "md5": "13113dc63d516c3efe2cd9966f8e38c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/TestCase.js", + "type": "file", + "name": "TestCase.js", + "base_name": "TestCase", + "extension": ".js", + "size": 3720, + "date": "2018-03-12", + "sha1": "3fa422e3878e111ad8bf0547742240147e502faa", + "md5": "ca2d2dcb6ff839113de9635de1ae779c", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures", + "type": "directory", + "name": "fixtures", + "base_name": "fixtures", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 26, + "dirs_count": 11, + "size_count": 43600, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 1494, + "date": "2018-03-12", + "sha1": "86ebcf6e956b70c3ef10edf7db4eb55e8cbd121e", + "md5": "a02654622baaffa7534176108d60b66b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/buttons", + "type": "directory", + "name": "buttons", + "base_name": "buttons", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1429, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/buttons/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 1429, + "date": "2018-03-12", + "sha1": "03bb7310a485a197fcdbd82839243293b1ade90a", + "md5": "85548032468bf77ae955eb5b0f5a2060", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/date-inputs", + "type": "directory", + "name": "date-inputs", + "base_name": "date-inputs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2357, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/date-inputs/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 936, + "date": "2018-03-12", + "sha1": "781a174a314779a3e8884e1d756a03c695477cfc", + "md5": "e2730674db1a62740ed588c2f79b7a6c", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/date-inputs/switch-date-test-case.js", + "type": "file", + "name": "switch-date-test-case.js", + "base_name": "switch-date-test-case", + "extension": ".js", + "size": 1421, + "date": "2018-03-12", + "sha1": "cc8154de2ec28297383eaf53cbf0a35a3516f775", + "md5": "29e5e86a2f363347e423ac972f27a22c", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/error-handling", + "type": "directory", + "name": "error-handling", + "base_name": "error-handling", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 5096, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/error-handling/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 5096, + "date": "2018-03-12", + "sha1": "786e27de3441e473c6c6e3a1dd5610827a045c63", + "md5": "379369c675c2ad0010a7045ac6916ad1", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/event-pooling", + "type": "directory", + "name": "event-pooling", + "base_name": "event-pooling", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 3642, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/event-pooling/hit-box.js", + "type": "file", + "name": "hit-box.js", + "base_name": "hit-box", + "extension": ".js", + "size": 674, + "date": "2018-03-12", + "sha1": "0b89c6d20930b37047af8a8b3770771a056e59df", + "md5": "a473b424712d6598e5f74e917a2ea2eb", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/event-pooling/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 388, + "date": "2018-03-12", + "sha1": "c93e693ea9acd8e676ec837bb3fb7dbad0547173", + "md5": "8c923c4977c6be4e59f5f7787611de0e", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/event-pooling/mouse-move.js", + "type": "file", + "name": "mouse-move.js", + "base_name": "mouse-move", + "extension": ".js", + "size": 1113, + "date": "2018-03-12", + "sha1": "4b381505812eeb9d251ff5a64073199310f3f575", + "md5": "403953f10d585c3ca676a90974903685", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/event-pooling/persistence.js", + "type": "file", + "name": "persistence.js", + "base_name": "persistence", + "extension": ".js", + "size": 1467, + "date": "2018-03-12", + "sha1": "d5ca741b7c5c5d673a1d1d1d2653d885765daaea", + "md5": "3a9c0dee071e4e4215262f426c4aa1d8", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/input-change-events", + "type": "directory", + "name": "input-change-events", + "base_name": "input-change-events", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 7981, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/input-change-events/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 2975, + "date": "2018-03-12", + "sha1": "31d1abb9d190496013ba6129b88f8d5f5f662c08", + "md5": "9e417b6fd87e73c5b15ceb5683af6c7e", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/input-change-events/InputPlaceholderFixture.js", + "type": "file", + "name": "InputPlaceholderFixture.js", + "base_name": "InputPlaceholderFixture", + "extension": ".js", + "size": 1264, + "date": "2018-03-12", + "sha1": "1a47c7009a6636068653ca2e7a045ebc93af8680", + "md5": "9f053417f95b15b823dd3e41ea09bc33", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/input-change-events/RadioClickFixture.js", + "type": "file", + "name": "RadioClickFixture.js", + "base_name": "RadioClickFixture", + "extension": ".js", + "size": 985, + "date": "2018-03-12", + "sha1": "ffc561452eb85b70ee72ebbe303209b83c5cc68d", + "md5": "8054ba9c5a7bcdb07f0af80e4c4650db", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/input-change-events/RadioGroupFixture.js", + "type": "file", + "name": "RadioGroupFixture.js", + "base_name": "RadioGroupFixture", + "extension": ".js", + "size": 1165, + "date": "2018-03-12", + "sha1": "ac8c4dc66b3966d34d869b8b11832646e9699f36", + "md5": "a7000cca43c80fb36f3b2641269c6d69", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/input-change-events/RangeKeyboardFixture.js", + "type": "file", + "name": "RangeKeyboardFixture.js", + "base_name": "RangeKeyboardFixture", + "extension": ".js", + "size": 1592, + "date": "2018-03-12", + "sha1": "2c36011c73bde2485110c5542808e3006f786134", + "md5": "b7818bd50777a3f503ab9a03e33a5f03", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/number-inputs", + "type": "directory", + "name": "number-inputs", + "base_name": "number-inputs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 8267, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/number-inputs/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 5889, + "date": "2018-03-12", + "sha1": "5bddf06a234da50cf6a0837371794ee04a777a0e", + "md5": "12a255a2393436ccf80d2e532a8e1e8b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/number-inputs/NumberInputDecimal.js", + "type": "file", + "name": "NumberInputDecimal.js", + "base_name": "NumberInputDecimal", + "extension": ".js", + "size": 709, + "date": "2018-03-12", + "sha1": "22caff97f8c0e627703e88168e37a61b741928c0", + "md5": "5cc5aef2281c6eceee4cf6cd220077bc", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/number-inputs/NumberInputExtraZeroes.js", + "type": "file", + "name": "NumberInputExtraZeroes.js", + "base_name": "NumberInputExtraZeroes", + "extension": ".js", + "size": 692, + "date": "2018-03-12", + "sha1": "50bd3d6d4e408f0c627032ce67f3883cfdee54fb", + "md5": "5ed896c2ad3ce3b34f94e3a3fbfae759", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/number-inputs/NumberTestCase.js", + "type": "file", + "name": "NumberTestCase.js", + "base_name": "NumberTestCase", + "extension": ".js", + "size": 977, + "date": "2018-03-12", + "sha1": "3f24a25b05e8feceacc519c494f05241ffcc28c1", + "md5": "6e38ae40621da82947e6040642291438", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/password-inputs", + "type": "directory", + "name": "password-inputs", + "base_name": "password-inputs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1748, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/password-inputs/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 849, + "date": "2018-03-12", + "sha1": "bb34c54a37b117169b41a602ad382237927b76a8", + "md5": "7757a4e06857b9575b29b64d306e18dc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/password-inputs/PasswordTestCase.js", + "type": "file", + "name": "PasswordTestCase.js", + "base_name": "PasswordTestCase", + "extension": ".js", + "size": 899, + "date": "2018-03-12", + "sha1": "c841fcf289ae99a00ad374cf5e9ab54aab3282f7", + "md5": "18ba68c7c9081ba67129d74528ab0170", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/range-inputs", + "type": "directory", + "name": "range-inputs", + "base_name": "range-inputs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 673, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/range-inputs/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 673, + "date": "2018-03-12", + "sha1": "6ab535c759d238491aa4de6dbc4b3489e56083cc", + "md5": "bea2add72e57259a9fb4409f5eab1770", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/selects", + "type": "directory", + "name": "selects", + "base_name": "selects", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3389, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/selects/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 3389, + "date": "2018-03-12", + "sha1": "e684e5929e3e9552de860e7cf00901b49bab8041", + "md5": "112018a5b32db46153bdb0abd0a2cf8b", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/text-inputs", + "type": "directory", + "name": "text-inputs", + "base_name": "text-inputs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 6735, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/text-inputs/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 3439, + "date": "2018-03-12", + "sha1": "3eac25f438b96beb369af484d1092dc07883616f", + "md5": "1173bdde598d2148939e4c697e2ca98b", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/text-inputs/InputTestCase.js", + "type": "file", + "name": "InputTestCase.js", + "base_name": "InputTestCase", + "extension": ".js", + "size": 1331, + "date": "2018-03-12", + "sha1": "79be9d5a6cbf9ee08b0148cfc1ad2a3b9eb2f3d3", + "md5": "4e4272ba38efc3ea991322746574b425", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/text-inputs/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 1965, + "date": "2018-03-12", + "sha1": "21bad79bd1af3187d51b4992e0f81b7e2a85cebb", + "md5": "7c6f97d433fff64406810157456f8cfd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/textareas", + "type": "directory", + "name": "textareas", + "base_name": "textareas", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 789, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/dom/src/components/fixtures/textareas/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 789, + "date": "2018-03-12", + "sha1": "64136ed2c181ba8c33c5a53acb88e91cf160b00b", + "md5": "065137b337df74f2b863609cc4782bf2", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger", + "type": "directory", + "name": "fiber-debugger", + "base_name": "fiber-debugger", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 2, + "size_count": 237035, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/.env", + "type": "file", + "name": ".env", + "base_name": ".env", + "extension": "", + "size": 30, + "date": "2018-03-12", + "sha1": "783956f8f99d6e22deabce3ec681f54aab8b74f7", + "md5": "20bb067af8a039779a9e1d2e94dca79f", + "mime_type": "text/plain", + "file_type": "ASCII text, with no line terminators", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 367, + "date": "2018-03-12", + "sha1": "c05a31906590782755df3c403c7f2e4d238d6e81", + "md5": "1c07642540615101388183b808e646e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-fiber-debugger", + "version": "0.0.1", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-fiber-debugger/-/react-fiber-debugger-0.0.1.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "react-scripts", + "version": null, + "version_constraint": "0.9.5" + } + ], + "runtime": [ + { + "name": "dagre", + "version": null, + "version_constraint": "^0.7.4" + }, + { + "name": "pretty-format", + "version": null, + "version_constraint": "^4.2.1" + }, + { + "name": "react-draggable", + "version": null, + "version_constraint": "^2.2.6" + }, + { + "name": "react-motion", + "version": null, + "version_constraint": "^0.5.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 792, + "date": "2018-03-12", + "sha1": "d3a9b2f8794f24a1ddf51ba69efc1060e432c347", + "md5": "e1f0088684aa6120de6cb2fad1f9260e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 189237, + "date": "2018-03-12", + "sha1": "60def2be6942c61ca2a7416ffecafc4ced1ea9b5", + "md5": "de7a6ec2ef549432fc3a271bc4160f99", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/public", + "type": "directory", + "name": "public", + "base_name": "public", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 25239, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/public/favicon.ico", + "type": "file", + "name": "favicon.ico", + "base_name": "favicon", + "extension": ".ico", + "size": 24838, + "date": "2018-03-12", + "sha1": "55bbacc4b53578835604e4954cf6bd414accb593", + "md5": "fd73a6eb26a08ee46e7fd3cc34e7f6bf", + "mime_type": "image/x-icon", + "file_type": "MS Windows icon resource - 4 icons, 16x16", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/public/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 401, + "date": "2018-03-12", + "sha1": "23d7cc88e8c639676807ef27ac034d91c4998072", + "md5": "4009efcdd526339e78d2210063074598", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 21370, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/src/App.js", + "type": "file", + "name": "App.js", + "base_name": "App", + "extension": ".js", + "size": 7056, + "date": "2018-03-12", + "sha1": "eeb398a423d2f9347123aa262656fb23b51dcf36", + "md5": "b17c0c344d9814519124c9a9bf61051a", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/src/describeFibers.js", + "type": "file", + "name": "describeFibers.js", + "base_name": "describeFibers", + "extension": ".js", + "size": 2574, + "date": "2018-03-12", + "sha1": "085f51ff36b90ee7eb3c29dcc4db9dcf984ad0c2", + "md5": "d1cc9f9276e65d231bef6d1089db33d1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/src/Editor.js", + "type": "file", + "name": "Editor.js", + "base_name": "Editor", + "extension": ".js", + "size": 813, + "date": "2018-03-12", + "sha1": "d018519ee6a4e7803bc8562b24630f32d9467c18", + "md5": "58980b491dfc00c15cb52c4f43f1fb08", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/src/Fibers.js", + "type": "file", + "name": "Fibers.js", + "base_name": "Fibers", + "extension": ".js", + "size": 10570, + "date": "2018-03-12", + "sha1": "9b5c5c48ce44e0b385b23a996a3fa85fdbe49b53", + "md5": "186b5fd2c51b91eb39d2b25a8a8c0b28", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/src/index.css", + "type": "file", + "name": "index.css", + "base_name": "index", + "extension": ".css", + "size": 189, + "date": "2018-03-12", + "sha1": "4dac25ced489e60484d9d3db6d0a96f6b3e7b8f3", + "md5": "803dfcdfa34a1d956f6c0f597516f3ca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-debugger/src/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 168, + "date": "2018-03-12", + "sha1": "f96db8795337348741b2d6b65971346f4d28a50b", + "md5": "828b1dc0bbe864b455134a8b2c8478b4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-triangle", + "type": "directory", + "name": "fiber-triangle", + "base_name": "fiber-triangle", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 6618, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/fiber-triangle/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 6618, + "date": "2018-03-12", + "sha1": "3f16eb917f5e323e3ec0a9b67616aba82120d801", + "md5": "15a06be84d1124a0130f5ce02070f08c", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging", + "type": "directory", + "name": "packaging", + "base_name": "packaging", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 60, + "dirs_count": 24, + "size_count": 18316, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/build-all.js", + "type": "file", + "name": "build-all.js", + "base_name": "build-all", + "extension": ".js", + "size": 1373, + "date": "2018-03-12", + "sha1": "c7c5e67ce57f681979b76e0fc887e123bbd0a69e", + "md5": "60f42996b8c69fd683b7802de82ba142", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 2977, + "date": "2018-03-12", + "sha1": "593915fcc23e7a7c355c60d6fd11dc94b342e29f", + "md5": "6d3577d0b7bfa335c832958d0c408591", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 910, + "date": "2018-03-12", + "sha1": "9cf8c78e5a90360d7ae1a082ec09ddd82a718720", + "md5": "cbad8caba2d3433fb17434d372bd4dbf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/babel-standalone", + "type": "directory", + "name": "babel-standalone", + "base_name": "babel-standalone", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 433, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/babel-standalone/dev.html", + "type": "file", + "name": "dev.html", + "base_name": "dev", + "extension": ".html", + "size": 433, + "date": "2018-03-12", + "sha1": "4f64ed64402f2470006fb4763e4f807bf6dc8c68", + "md5": "ebf71893115d6b720334d01bb57cb1d7", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify", + "type": "directory", + "name": "browserify", + "base_name": "browserify", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 2, + "size_count": 1101, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify/dev", + "type": "directory", + "name": "dev", + "base_name": "dev", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 507, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify/dev/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 102, + "date": "2018-03-12", + "sha1": "19bafd61f4323e4c116b89f0b9ae6bd6afeab800", + "md5": "febaaeb55101aae1036c23d9e8751274", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify/dev/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify/dev/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 227, + "date": "2018-03-12", + "sha1": "39587d584c6996e79739ad7d2e02c891d306a3b0", + "md5": "aa86b779729f0c1d067edd80dd00cef3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify/prod", + "type": "directory", + "name": "prod", + "base_name": "prod", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 594, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify/prod/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 102, + "date": "2018-03-12", + "sha1": "19bafd61f4323e4c116b89f0b9ae6bd6afeab800", + "md5": "febaaeb55101aae1036c23d9e8751274", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify/prod/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/browserify/prod/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 314, + "date": "2018-03-12", + "sha1": "aef7167e8e7d1bb645e358f4b21ee648f234b964", + "md5": "9caef7133bcd92d4791c50333a647a21", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch", + "type": "directory", + "name": "brunch", + "base_name": "brunch", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 4, + "size_count": 1895, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/dev", + "type": "directory", + "name": "dev", + "base_name": "dev", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 946, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/dev/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 124, + "date": "2018-03-12", + "sha1": "1ac169e2f7cab800fce094e77c01917b7f72b520", + "md5": "b026912b18e78193e3f56dac976fc79f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/dev/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 146, + "date": "2018-03-12", + "sha1": "1153e4fc6bedd5983525030d559e4414000c9c4e", + "md5": "10357b517145b85dc32cd03bd4f799e4", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/dev/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/dev/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 320, + "date": "2018-03-12", + "sha1": "ebc03d24579ad61223f12ebdd5ec1a3dd48de56e", + "md5": "7d5a6cdd754e119176bacc3d5b63912e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/dev/app", + "type": "directory", + "name": "app", + "base_name": "app", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 178, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/dev/app/initialize.js", + "type": "file", + "name": "initialize.js", + "base_name": "initialize", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/prod", + "type": "directory", + "name": "prod", + "base_name": "prod", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 949, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/prod/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 124, + "date": "2018-03-12", + "sha1": "1ac169e2f7cab800fce094e77c01917b7f72b520", + "md5": "b026912b18e78193e3f56dac976fc79f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/prod/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 146, + "date": "2018-03-12", + "sha1": "1153e4fc6bedd5983525030d559e4414000c9c4e", + "md5": "10357b517145b85dc32cd03bd4f799e4", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/prod/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/prod/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 323, + "date": "2018-03-12", + "sha1": "1fc0e9c5759752fb088c172fef48af47d1838d28", + "md5": "2b9e18dfab0b4a956770f472c1834d5c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/prod/app", + "type": "directory", + "name": "app", + "base_name": "app", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 178, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/brunch/prod/app/initialize.js", + "type": "file", + "name": "initialize.js", + "base_name": "initialize", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/globals", + "type": "directory", + "name": "globals", + "base_name": "globals", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 740, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/globals/dev.html", + "type": "file", + "name": "dev.html", + "base_name": "dev", + "extension": ".html", + "size": 367, + "date": "2018-03-12", + "sha1": "10b083c4dcfd068af47be1f7b5bebb3377626cdb", + "md5": "069bd4db8e22fa23cb2031531de0379b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/globals/prod.html", + "type": "file", + "name": "prod.html", + "base_name": "prod", + "extension": ".html", + "size": 373, + "date": "2018-03-12", + "sha1": "2aad6ffa6507cf0158cdcca00e30c46ffe492e5a", + "md5": "831d350df8f68a76363a9cb0c1b72671", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/requirejs", + "type": "directory", + "name": "requirejs", + "base_name": "requirejs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1146, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/requirejs/dev.html", + "type": "file", + "name": "dev.html", + "base_name": "dev", + "extension": ".html", + "size": 570, + "date": "2018-03-12", + "sha1": "9c94bee0b544a2d7c66dfdd7767e7606c7ccd44a", + "md5": "8f7e41f2c141460f41338def9b92c366", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/requirejs/prod.html", + "type": "file", + "name": "prod.html", + "base_name": "prod", + "extension": ".html", + "size": 576, + "date": "2018-03-12", + "sha1": "c9874b37a2b772ffe4e92418daf152c987d516fd", + "md5": "ae26db566269b261ba9de0f6373a58f3", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs", + "type": "directory", + "name": "rjs", + "base_name": "rjs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 2, + "size_count": 1516, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/dev", + "type": "directory", + "name": "dev", + "base_name": "dev", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 755, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/dev/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 231, + "date": "2018-03-12", + "sha1": "4ca5125d23332e674e1dc5f839bfd37abe89b9e8", + "md5": "1ac9c917a70a50e9229998788713b59a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/dev/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 175, + "date": "2018-03-12", + "sha1": "cc1ae3fcbffd444ef44bcf0437b7e034154c762d", + "md5": "46a1eea5f1312af6c3fc23eb61f68085", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/dev/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 182, + "date": "2018-03-12", + "sha1": "0c0e5083e16ee02eb4cb9fb51bd17d29febf2d80", + "md5": "24ed7947741c5c0f0e67e26de0f3129c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/dev/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 167, + "date": "2018-03-12", + "sha1": "b3b28c30b676e8aa802e0a9ba299816a07258981", + "md5": "fc5525ec38b60545a2cea0ee71612789", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/prod", + "type": "directory", + "name": "prod", + "base_name": "prod", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 761, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/prod/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 237, + "date": "2018-03-12", + "sha1": "130177339ec0b070523dc7e95196605406b9141d", + "md5": "121e1ebea3f0b508508ab96c973abe4a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/prod/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 175, + "date": "2018-03-12", + "sha1": "cc1ae3fcbffd444ef44bcf0437b7e034154c762d", + "md5": "46a1eea5f1312af6c3fc23eb61f68085", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/prod/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 182, + "date": "2018-03-12", + "sha1": "0c0e5083e16ee02eb4cb9fb51bd17d29febf2d80", + "md5": "24ed7947741c5c0f0e67e26de0f3129c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/rjs/prod/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 167, + "date": "2018-03-12", + "sha1": "b3b28c30b676e8aa802e0a9ba299816a07258981", + "md5": "fc5525ec38b60545a2cea0ee71612789", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs", + "type": "directory", + "name": "systemjs", + "base_name": "systemjs", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1392, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs/dev.html", + "type": "file", + "name": "dev.html", + "base_name": "dev", + "extension": ".html", + "size": 693, + "date": "2018-03-12", + "sha1": "69bfd4676ccd8ce6d176f45b2e9da58e86a9976e", + "md5": "4d28ad20134c3f536d23e79b9b8f2c03", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs/prod.html", + "type": "file", + "name": "prod.html", + "base_name": "prod", + "extension": ".html", + "size": 699, + "date": "2018-03-12", + "sha1": "4570b18a104f71eebfb4d3d79200c81af3cb3100", + "md5": "020a0c0a5432da08d7fb75f695515a8f", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder", + "type": "directory", + "name": "systemjs-builder", + "base_name": "systemjs-builder", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 2, + "size_count": 1826, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/dev", + "type": "directory", + "name": "dev", + "base_name": "dev", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 910, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/dev/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 289, + "date": "2018-03-12", + "sha1": "d657435b64ba6b793318b92766a12d3a47986a01", + "md5": "45fe95460623bf5ce137527d5bdd331e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/dev/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 162, + "date": "2018-03-12", + "sha1": "585dd7972ebd8278e30d4a0de5cec633224fb09d", + "md5": "518696245de70086a5a7b2a15b374280", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/dev/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 102, + "date": "2018-03-12", + "sha1": "19bafd61f4323e4c116b89f0b9ae6bd6afeab800", + "md5": "febaaeb55101aae1036c23d9e8751274", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/dev/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 172, + "date": "2018-03-12", + "sha1": "e09c39fe211043870e2281f94ae53bf10e09b2ab", + "md5": "206781915ab53904d5eea5850decc380", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/dev/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 185, + "date": "2018-03-12", + "sha1": "ab960823b1372ce4dca5db41d51a6623600c036f", + "md5": "bfb66891f525d69ebcbcda19a49d5a11", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/prod", + "type": "directory", + "name": "prod", + "base_name": "prod", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 916, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/prod/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 289, + "date": "2018-03-12", + "sha1": "d657435b64ba6b793318b92766a12d3a47986a01", + "md5": "45fe95460623bf5ce137527d5bdd331e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/prod/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 168, + "date": "2018-03-12", + "sha1": "9252fc778742478c5c971c0264f833ee777c2292", + "md5": "83daf0a5d37a8bbd3a4dca3e9588c731", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/prod/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 102, + "date": "2018-03-12", + "sha1": "19bafd61f4323e4c116b89f0b9ae6bd6afeab800", + "md5": "febaaeb55101aae1036c23d9e8751274", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/prod/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 172, + "date": "2018-03-12", + "sha1": "e09c39fe211043870e2281f94ae53bf10e09b2ab", + "md5": "206781915ab53904d5eea5850decc380", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/systemjs-builder/prod/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 185, + "date": "2018-03-12", + "sha1": "ab960823b1372ce4dca5db41d51a6623600c036f", + "md5": "bfb66891f525d69ebcbcda19a49d5a11", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack", + "type": "directory", + "name": "webpack", + "base_name": "webpack", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 2, + "size_count": 1465, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/dev", + "type": "directory", + "name": "dev", + "base_name": "dev", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 647, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/dev/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 188, + "date": "2018-03-12", + "sha1": "33a90c377a6a9e8ff209b5034fcab9b78c621c40", + "md5": "84ae226ffb373910b7173d3cb3e56d71", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/dev/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 102, + "date": "2018-03-12", + "sha1": "19bafd61f4323e4c116b89f0b9ae6bd6afeab800", + "md5": "febaaeb55101aae1036c23d9e8751274", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/dev/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/dev/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 179, + "date": "2018-03-12", + "sha1": "96cd9b5ad76f317e98365d7e42e68578a8e6d614", + "md5": "2b9691c4e4d75490306658375e70f3d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/prod", + "type": "directory", + "name": "prod", + "base_name": "prod", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 818, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/prod/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 359, + "date": "2018-03-12", + "sha1": "0a1426d04dd753828eb449b952627d26e4e1a7de", + "md5": "d32cd33f96546f877ec1addc6c904b5d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/prod/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 102, + "date": "2018-03-12", + "sha1": "19bafd61f4323e4c116b89f0b9ae6bd6afeab800", + "md5": "febaaeb55101aae1036c23d9e8751274", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/prod/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack/prod/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 179, + "date": "2018-03-12", + "sha1": "96cd9b5ad76f317e98365d7e42e68578a8e6d614", + "md5": "2b9691c4e4d75490306658375e70f3d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias", + "type": "directory", + "name": "webpack-alias", + "base_name": "webpack-alias", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 2, + "size_count": 1542, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/dev", + "type": "directory", + "name": "dev", + "base_name": "dev", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 768, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/dev/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 309, + "date": "2018-03-12", + "sha1": "9017432034f4fe78c767315ea9f3e49f1deaa729", + "md5": "dcad738199660213c5e0a0494c429799", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/dev/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 102, + "date": "2018-03-12", + "sha1": "19bafd61f4323e4c116b89f0b9ae6bd6afeab800", + "md5": "febaaeb55101aae1036c23d9e8751274", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/dev/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/dev/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 179, + "date": "2018-03-12", + "sha1": "96cd9b5ad76f317e98365d7e42e68578a8e6d614", + "md5": "2b9691c4e4d75490306658375e70f3d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/prod", + "type": "directory", + "name": "prod", + "base_name": "prod", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 774, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/prod/config.js", + "type": "file", + "name": "config.js", + "base_name": "config", + "extension": ".js", + "size": 315, + "date": "2018-03-12", + "sha1": "a2fcc5f5796fce7a6bea0db4694d0b3baeaed9c3", + "md5": "20d30986fa78d5b2c496a2ba786c2acb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/prod/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 102, + "date": "2018-03-12", + "sha1": "19bafd61f4323e4c116b89f0b9ae6bd6afeab800", + "md5": "febaaeb55101aae1036c23d9e8751274", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/prod/input.js", + "type": "file", + "name": "input.js", + "base_name": "input", + "extension": ".js", + "size": 178, + "date": "2018-03-12", + "sha1": "a589ee8137563ed15d82e994b1e322e605b31b63", + "md5": "18b8c395f5755a20184dd8a5083f4fd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/packaging/webpack-alias/prod/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 179, + "date": "2018-03-12", + "sha1": "96cd9b5ad76f317e98365d7e42e68578a8e6d614", + "md5": "2b9691c4e4d75490306658375e70f3d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr", + "type": "directory", + "name": "ssr", + "base_name": "ssr", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 4, + "size_count": 219392, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 928, + "date": "2018-03-12", + "sha1": "77cbe8fe6b395345430251f15f4420a90a5797dc", + "md5": "d10de3cbbbd2da85e53cb856c12df4b2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-fixtures-ssr", + "version": "0.1.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-fixtures-ssr/-/react-fixtures-ssr-0.1.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "development": [ + { + "name": "concurrently", + "version": null, + "version_constraint": "3.1.0" + }, + { + "name": "http-proxy-middleware", + "version": null, + "version_constraint": "0.17.3" + }, + { + "name": "react-scripts", + "version": null, + "version_constraint": "0.9.5" + } + ], + "runtime": [ + { + "name": "express", + "version": null, + "version_constraint": "^4.14.0" + }, + { + "name": "ignore-styles", + "version": null, + "version_constraint": "^5.0.1" + }, + { + "name": "import-export", + "version": null, + "version_constraint": "^1.0.1" + }, + { + "name": "node-fetch", + "version": null, + "version_constraint": "^1.6.3" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 635, + "date": "2018-03-12", + "sha1": "337fdcad018d84e2d2674306de3738f5bf1ff493", + "md5": "555a230082df70192127ceb63810fc95", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 188601, + "date": "2018-03-12", + "sha1": "bbc767a0628f56710c70c48dcbdce45c3a17abfd", + "md5": "c9e63d1184fddd6acdca0a312ae83300", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/public", + "type": "directory", + "name": "public", + "base_name": "public", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 25121, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/public/favicon.ico", + "type": "file", + "name": "favicon.ico", + "base_name": "favicon", + "extension": ".ico", + "size": 24838, + "date": "2018-03-12", + "sha1": "55bbacc4b53578835604e4954cf6bd414accb593", + "md5": "fd73a6eb26a08ee46e7fd3cc34e7f6bf", + "mime_type": "image/x-icon", + "file_type": "MS Windows icon resource - 4 icons, 16x16", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/public/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 283, + "date": "2018-03-12", + "sha1": "1393e7ca792706403998d35e6f9a6991c34655e6", + "md5": "a941069d8323911666b9f7d76e385d9c", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/server", + "type": "directory", + "name": "server", + "base_name": "server", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2266, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/server/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 1639, + "date": "2018-03-12", + "sha1": "9b03e8fbe2601423f22eed5dc208b7f498db710c", + "md5": "00676cb8f73d5cb80848bee1ebcb30bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/server/render.js", + "type": "file", + "name": "render.js", + "base_name": "render", + "extension": ".js", + "size": 627, + "date": "2018-03-12", + "sha1": "4184c76d1801ccd81229531b419ce601adf0db1c", + "md5": "be01bd8f4c922244b70c94ae7cff72b9", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 1841, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/src/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 156, + "date": "2018-03-12", + "sha1": "2ce328752e8310495cf2e669415c6927a146eaa0", + "md5": "4a8c3365d3667261506d76197bafb2e1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/src/components", + "type": "directory", + "name": "components", + "base_name": "components", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 1685, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/src/components/App.js", + "type": "file", + "name": "App.js", + "base_name": "App", + "extension": ".js", + "size": 341, + "date": "2018-03-12", + "sha1": "f7d86fe7e9c9504d02420d35df37606e7da83cd0", + "md5": "0d75cad444e76d8e8a3a7c6266929fd6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/src/components/Chrome.css", + "type": "file", + "name": "Chrome.css", + "base_name": "Chrome", + "extension": ".css", + "size": 66, + "date": "2018-03-12", + "sha1": "bed0a44831472e14f73b3551eacbd8f0350e51f5", + "md5": "5b1a3f69929145f5a9289819bf8fa01c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/src/components/Chrome.js", + "type": "file", + "name": "Chrome.js", + "base_name": "Chrome", + "extension": ".js", + "size": 799, + "date": "2018-03-12", + "sha1": "6d755785679a8178e318b71d432fa6278fdb565d", + "md5": "eed85ec6b2a812cacf30dc7100699c17", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/src/components/Page.css", + "type": "file", + "name": "Page.css", + "base_name": "Page", + "extension": ".css", + "size": 31, + "date": "2018-03-12", + "sha1": "2cfa732f183c39efda8a5256ed1f8169b62bd438", + "md5": "19e003d5de606b9d2a8d1e3fc8887cb3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/fixtures/ssr/src/components/Page.js", + "type": "file", + "name": "Page.js", + "base_name": "Page", + "extension": ".js", + "size": 448, + "date": "2018-03-12", + "sha1": "382e169f0cbc58f42b32ffb1dc5a6815f798719f", + "md5": "6f28256e630f92303b59dfef6203c478", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/flow", + "type": "directory", + "name": "flow", + "base_name": "flow", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2750, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/flow/environment.js", + "type": "file", + "name": "environment.js", + "base_name": "environment", + "extension": ".js", + "size": 313, + "date": "2018-03-12", + "sha1": "8cc637804c59c9b2291453e7699e2ce01b19aa9a", + "md5": "b177510fc5b01b0dbacfbf96231cd3b5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/flow/react-native-host-hooks.js", + "type": "file", + "name": "react-native-host-hooks.js", + "base_name": "react-native-host-hooks", + "extension": ".js", + "size": 2437, + "date": "2018-03-12", + "sha1": "6749cc752975fc7157243e6ac35839a7610ff06f", + "md5": "92955eebfede5002d8c7cec217b682c3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/mocks", + "type": "directory", + "name": "mocks", + "base_name": "mocks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 983, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/mocks/ReactElementTestChild.js", + "type": "file", + "name": "ReactElementTestChild.js", + "base_name": "ReactElementTestChild", + "extension": ".js", + "size": 400, + "date": "2018-03-12", + "sha1": "a960dcdb1a8fa781b63a9d25d0d4c24cb2acb2ef", + "md5": "36e46d37f1e4af70f7b6222f13c6a14e", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/mocks/ReactMockedComponentTestComponent.js", + "type": "file", + "name": "ReactMockedComponentTestComponent.js", + "base_name": "ReactMockedComponentTestComponent", + "extension": ".js", + "size": 583, + "date": "2018-03-12", + "sha1": "ad736e7477fc584133a9286895d6d8bbd082c18e", + "md5": "0ead6dff08d1c32cf457c0bd2fda405c", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages", + "type": "directory", + "name": "packages", + "base_name": "packages", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 24, + "dirs_count": 6, + "size_count": 20226, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react", + "type": "directory", + "name": "react", + "base_name": "react", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 1716, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 190, + "date": "2018-03-12", + "sha1": "a69a7f3d4a4636bf9035bc53c05b2d99a7b8af7f", + "md5": "3c705474d87ac8a9b47623a9c3833989", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 677, + "date": "2018-03-12", + "sha1": "8d0fb7e4f8e50bfb4a9a3b81c4763318b01a7b31", + "md5": "ad1305704eeee61d88bf89177492f52b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "mit_34.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react", + "version": "16.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React is a JavaScript library for building user interfaces.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react/-/react-16.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "MIT", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.16" + }, + { + "name": "loose-envify", + "version": null, + "version_constraint": "^1.1.0" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.1" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.6.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 849, + "date": "2018-03-12", + "sha1": "715a8c0689af1acb7f229ee744c19a5b8eff8fa8", + "md5": "391f35a5c72c78ac47876b2b79226962", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-art", + "type": "directory", + "name": "react-art", + "base_name": "react-art", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 11666, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-art/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 198, + "date": "2018-03-12", + "sha1": "29c2fb765ffe3e97c0ab07cc493be58e995dcee8", + "md5": "073728754400a203b9972772ac74a275", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-art/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 983, + "date": "2018-03-12", + "sha1": "631969a96953b720786aaa5157beebae91c2b3e4", + "md5": "aee19bf513b55dd47215b409240ef3d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 15, + "end_line": 15, + "matched_rule": { + "identifier": "mit_34.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-art", + "version": "16.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React ART is a JavaScript library for drawing vector graphics using React. It provides declarative and reactive bindings to the ART library. Using the same declarative API you can render the output to either Canvas, SVG or VML (IE8).", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "art", + "svg", + "vml", + "canvas", + "jsx" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-art/-/react-art-16.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "MIT", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "create-react-class", + "version": null, + "version_constraint": "^15.6.2" + }, + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.16" + }, + { + "name": "loose-envify", + "version": null, + "version_constraint": "^1.1.0" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.1" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.6.0" + } + ], + "optional": [ + { + "name": "react", + "version": null, + "version_constraint": "^16.0.0-beta.5" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-art/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 663, + "date": "2018-03-12", + "sha1": "181e67185572fce7802901eadac2166680c55c39", + "md5": "149ef3fec9b671253c2676523cc1cd93", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-art/lib", + "type": "directory", + "name": "lib", + "base_name": "lib", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 9822, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-art/lib/Circle.art.js", + "type": "file", + "name": "Circle.art.js", + "base_name": "Circle.art", + "extension": ".js", + "size": 1362, + "date": "2018-03-12", + "sha1": "8b30ecf655687d724ca5645ad3d5b348214c11ce", + "md5": "a493153ec3a0cbbabfd10fd8a8f4b2f5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 8, + "end_line": 9, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 6, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-art/lib/Rectangle.art.js", + "type": "file", + "name": "Rectangle.art.js", + "base_name": "Rectangle.art", + "extension": ".js", + "size": 3331, + "date": "2018-03-12", + "sha1": "c5bd9fd9ce3a20eae3f7a5e0cd939cc663ddf031", + "md5": "f73cd115d020850fb19acde071e4e6f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 8, + "end_line": 9, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 6, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-art/lib/Wedge.art.js", + "type": "file", + "name": "Wedge.art.js", + "base_name": "Wedge.art", + "extension": ".js", + "size": 5129, + "date": "2018-03-12", + "sha1": "a6167134059a67973f3f802f085ba00d890cb121", + "md5": "dcab1992b4eb8314ca6d32907baae726", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 8, + "end_line": 9, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 6, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-dom", + "type": "directory", + "name": "react-dom", + "base_name": "react-dom", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 4030, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-dom/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 1363, + "date": "2018-03-12", + "sha1": "dc3011a0ee823c91a565237d17cbc3c0856de8a6", + "md5": "1b34dc1665b437d380d7ad1e40491d7e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-dom/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 857, + "date": "2018-03-12", + "sha1": "db31d75603c549f35dc9097e6773bb90e2234fa7", + "md5": "9c5810580e44a7d9a1f1417cc2cd90c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 10, + "end_line": 10, + "matched_rule": { + "identifier": "mit_34.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-dom", + "version": "16.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React package for working with the DOM.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-dom/-/react-dom-16.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "MIT", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.16" + }, + { + "name": "loose-envify", + "version": null, + "version_constraint": "^1.1.0" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.1" + }, + { + "name": "prop-types", + "version": null, + "version_constraint": "^15.6.0" + } + ], + "optional": [ + { + "name": "react", + "version": null, + "version_constraint": "^16.0.0-beta.5" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-dom/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 897, + "date": "2018-03-12", + "sha1": "d208317e1c17b95d5cbb150609e6d57bea066ab3", + "md5": "261e2548fd03ea0603992b8261ced628", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-dom/server.browser.js", + "type": "file", + "name": "server.browser.js", + "base_name": "server.browser", + "extension": ".js", + "size": 228, + "date": "2018-03-12", + "sha1": "0cfe39d8ff3db88ebc4feed5877259d37963fbd3", + "md5": "a915516ba3742d55b76ba377a8e5b9c2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-dom/server.js", + "type": "file", + "name": "server.js", + "base_name": "server", + "extension": ".js", + "size": 222, + "date": "2018-03-12", + "sha1": "7c74cca0f2886c6f37bfdb149844decdcfe32377", + "md5": "1316d4e8cc13b70a394db8fef7c8620b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-dom/test-utils.js", + "type": "file", + "name": "test-utils.js", + "base_name": "test-utils", + "extension": ".js", + "size": 207, + "date": "2018-03-12", + "sha1": "2fc40efc93c719a6379a14c1162a47606a82bd2c", + "md5": "7219f17c02b4a2e5b57d5cfceb2c864d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-dom/unstable-native-dependencies.js", + "type": "file", + "name": "unstable-native-dependencies.js", + "base_name": "unstable-native-dependencies", + "extension": ".js", + "size": 256, + "date": "2018-03-12", + "sha1": "19109f647496050fa19b08d3088ed680cd4ecfbc", + "md5": "9bc744e895faa9fe0facdd5b344e8689", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-noop-renderer", + "type": "directory", + "name": "react-noop-renderer", + "base_name": "react-noop-renderer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 633, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-noop-renderer/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 85, + "date": "2018-03-12", + "sha1": "c34366db9cc7c96016fb1cc1216727288cdfbff5", + "md5": "1b42b8aea6db907aa6f964dc0e6febee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-noop-renderer/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 377, + "date": "2018-03-12", + "sha1": "32b0e26fac3ffcb8bb68e9d84c4b809cbfcff64e", + "md5": "b251818ac1f19eeaa63c4d1d5fad4233", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 8, + "end_line": 8, + "matched_rule": { + "identifier": "mit_34.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-noop-renderer", + "version": "16.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React package for testing the Fiber reconciler.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-noop-renderer/-/react-noop-renderer-16.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "MIT", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.16" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.1" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-noop-renderer/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 171, + "date": "2018-03-12", + "sha1": "b4585595d295d4ad3811ecc3ac4f21da13357e09", + "md5": "e257a69d3f730aec22f6266aa6edab12", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-test-renderer", + "type": "directory", + "name": "react-test-renderer", + "base_name": "react-test-renderer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 2181, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-test-renderer/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 209, + "date": "2018-03-12", + "sha1": "3597fc8011074d72fe424834c2260d37d9eca812", + "md5": "5b30ea82a8e361afa0699088d87e1586", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-test-renderer/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 635, + "date": "2018-03-12", + "sha1": "2237378568139d6d00abdcce479fbe82bf5ec255", + "md5": "178f543371585ef6d7abf04ab8234c7f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 12, + "end_line": 12, + "matched_rule": { + "identifier": "mit_34.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-test-renderer", + "version": "16.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "React package for snapshot testing.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [ + "react", + "react-native", + "react-testing" + ], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": "https://facebook.github.io/react/", + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": "https://github.com/facebook/react/issues", + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": "https://github.com/facebook/react", + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "MIT", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "fbjs", + "version": null, + "version_constraint": "^0.8.16" + }, + { + "name": "object-assign", + "version": null, + "version_constraint": "^4.1.1" + } + ], + "optional": [ + { + "name": "react", + "version": null, + "version_constraint": "^16.0.0-beta.5" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-test-renderer/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 902, + "date": "2018-03-12", + "sha1": "746fc993e3674485d3952c4db5fd3974a05602c8", + "md5": "7cae57818da80abbcd21abdd87713ab3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-test-renderer/shallow.js", + "type": "file", + "name": "shallow.js", + "base_name": "shallow", + "extension": ".js", + "size": 220, + "date": "2018-03-12", + "sha1": "08e121fca75a9f58fb6536786e966c0d581daf65", + "md5": "bd793c442671e3e9e6dc3f690e195d04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/packages/react-test-renderer/stack.js", + "type": "file", + "name": "stack.js", + "base_name": "stack", + "extension": ".js", + "size": 215, + "date": "2018-03-12", + "sha1": "33978293034bb879114d6d32af547dc272d31978", + "md5": "0db173794c8dcd31619e53c4181c8e23", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts", + "type": "directory", + "name": "scripts", + "base_name": "scripts", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 135, + "dirs_count": 31, + "size_count": 885673, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/authors", + "type": "file", + "name": "authors", + "base_name": "authors", + "extension": "", + "size": 284, + "date": "2018-03-12", + "sha1": "f9a83b0a40c49db0caa5774787a2deb5346cea53", + "md5": "888e87932008270c1c4b0879715e05d3", + "mime_type": "text/plain", + "file_type": "a /usr/bin/env sh script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/babel", + "type": "directory", + "name": "babel", + "base_name": "babel", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1256, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/babel/transform-object-assign-require.js", + "type": "file", + "name": "transform-object-assign-require.js", + "base_name": "transform-object-assign-require", + "extension": ".js", + "size": 1256, + "date": "2018-03-12", + "sha1": "346aa6b4828f39b1ee79dc4f77812b209f09a2c0", + "md5": "10a2c609f5ff5c76a406a138092ff360", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench", + "type": "directory", + "name": "bench", + "base_name": "bench", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 25, + "dirs_count": 5, + "size_count": 498370, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmark.js", + "type": "file", + "name": "benchmark.js", + "base_name": "benchmark", + "extension": ".js", + "size": 3290, + "date": "2018-03-12", + "sha1": "96a0bb29fcb248e361f85cd41d03399a2bd9ffa5", + "md5": "54acc1efbfd474d42323bb0ed0317673", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 3596, + "date": "2018-03-12", + "sha1": "a7a8d1c30d70c668bfb49df24f8bbd8f0e3d0c3b", + "md5": "c368ab22977d6fec0035ff861c5ea2fc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 433, + "date": "2018-03-12", + "sha1": "766c288bd673e0b9dbd643d45bee39ae83c3a71e", + "md5": "fdd676ae7f778c4657300e2a3eda0bbf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-benchmark", + "version": "0.0.1", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-benchmark/-/react-benchmark-0.0.1.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "chalk", + "version": null, + "version_constraint": "^2.1.0" + }, + { + "name": "cli-table", + "version": null, + "version_constraint": "^0.3.1" + }, + { + "name": "http-server", + "version": null, + "version_constraint": "^0.10.0" + }, + { + "name": "http2", + "version": null, + "version_constraint": "^3.3.6" + }, + { + "name": "lighthouse", + "version": null, + "version_constraint": "^2.3.0" + }, + { + "name": "mime", + "version": null, + "version_constraint": "^1.3.6" + }, + { + "name": "minimist", + "version": null, + "version_constraint": "^1.2.0" + }, + { + "name": "ncp", + "version": null, + "version_constraint": "^2.0.0" + }, + { + "name": "nodegit", + "version": null, + "version_constraint": "^0.18.3" + }, + { + "name": "rimraf", + "version": null, + "version_constraint": "^2.6.1" + }, + { + "name": "stats-analysis", + "version": null, + "version_constraint": "^2.0.0" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 1429, + "date": "2018-03-12", + "sha1": "53d38d6266f9544ec55e7e9e4cd1591ade476f4a", + "md5": "bf6c6d5c4fe8b4368f4155056690eb2d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/runner.js", + "type": "file", + "name": "runner.js", + "base_name": "runner", + "extension": ".js", + "size": 4134, + "date": "2018-03-12", + "sha1": "05fb23fb4c9b242ddb2ee6c9128890427d1d8df2", + "md5": "af1c027907f5545b3831851da9de9bfc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/server.js", + "type": "file", + "name": "server.js", + "base_name": "server", + "extension": ".js", + "size": 1921, + "date": "2018-03-12", + "sha1": "afc63a5987a483b08a76076c2eeefa7574840eee", + "md5": "6709ab59502c38786d428513b519fe2f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/stats.js", + "type": "file", + "name": "stats.js", + "base_name": "stats", + "extension": ".js", + "size": 4926, + "date": "2018-03-12", + "sha1": "ec8e81876aa26a63a8233985592e0d1c07bb32ac", + "md5": "e2c9a8d37be3fff7175824aa184f41db", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/yarn.lock", + "type": "file", + "name": "yarn.lock", + "base_name": "yarn", + "extension": ".lock", + "size": 54007, + "date": "2018-03-12", + "sha1": "60c01c1325d10a83deecd76a9a7b9aa7a9af94bf", + "md5": "e177cf7dc417ca273f9e5332f81565f7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Objective-C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks", + "type": "directory", + "name": "benchmarks", + "base_name": "benchmarks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 17, + "dirs_count": 4, + "size_count": 424634, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news", + "type": "directory", + "name": "hacker-news", + "base_name": "hacker-news", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 27390, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news/benchmark.js", + "type": "file", + "name": "benchmark.js", + "base_name": "benchmark", + "extension": ".js", + "size": 4947, + "date": "2018-03-12", + "sha1": "a46b736fad1236456380c4758777aa746763b96e", + "md5": "d6db8a0fbe7f615e181d7eb93c4dfbdd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 439, + "date": "2018-03-12", + "sha1": "d0c1c176efc2daaa8884e3ff664731552fb2e8f1", + "md5": "5c4d4e59674db1621224f4a90f9992e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news/generate.js", + "type": "file", + "name": "generate.js", + "base_name": "generate", + "extension": ".js", + "size": 715, + "date": "2018-03-12", + "sha1": "382bddba535840d2cf62557cbdf1f93475c82e92", + "md5": "daa3c691886ce956f2fd70b921bd6c6d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news/grayarrow.gif", + "type": "file", + "name": "grayarrow.gif", + "base_name": "grayarrow", + "extension": ".gif", + "size": 111, + "date": "2018-03-12", + "sha1": "bc26d7559e7559280cd9446316c35323461bbbd8", + "md5": "7e6bfa0d7419ef49e2a58c199702f9fa", + "mime_type": "image/gif", + "file_type": "GIF image data, version 89a, 10 x 10", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 1117, + "date": "2018-03-12", + "sha1": "02deafc726a78d8898972ef97423375deec0a0d3", + "md5": "21be51fdc7f6efb5a8a3ff0ebc49a3b9", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news/logo.png", + "type": "file", + "name": "logo.png", + "base_name": "logo", + "extension": ".png", + "size": 218, + "date": "2018-03-12", + "sha1": "56e898ec48bffdeb675ce9c3deb1fe82f7764ed4", + "md5": "1d5b9aa68554ff34d56afe3dfcd87e7f", + "mime_type": "image/png", + "file_type": "PNG image data, 16 x 16, 8-bit/color RGB, non-interlaced", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": true, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news/style.css", + "type": "file", + "name": "style.css", + "base_name": "style", + "extension": ".css", + "size": 918, + "date": "2018-03-12", + "sha1": "ea8e18af0eb32f01027633f7de589a9394945cb5", + "md5": "18756c038c5fd30f7e66782e25cf14c9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CSS", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/hacker-news/top-stories.js", + "type": "file", + "name": "top-stories.js", + "base_name": "top-stories", + "extension": ".js", + "size": 18925, + "date": "2018-03-12", + "sha1": "4e1010997cad20d14c7698988ff24ef07eb1ec84", + "md5": "2d0a99e3aeb9069a42a4682f4022cbaf", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines, with no line terminators", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-class-components", + "type": "directory", + "name": "pe-class-components", + "base_name": "pe-class-components", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 148614, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-class-components/benchmark.js", + "type": "file", + "name": "benchmark.js", + "base_name": "benchmark", + "extension": ".js", + "size": 147232, + "date": "2018-03-12", + "sha1": "fa58f1d28ddb69f46998cb8353d697a8cb2f980d", + "md5": "60e4859ceb07471542a33edcc6e7512a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-class-components/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 439, + "date": "2018-03-12", + "sha1": "d0c1c176efc2daaa8884e3ff664731552fb2e8f1", + "md5": "5c4d4e59674db1621224f4a90f9992e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-class-components/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 943, + "date": "2018-03-12", + "sha1": "cf56635bd7879b737036297839f79a65c40ebaa7", + "md5": "88cee9869829a1b2ac0f89bfa385ee10", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-functional-components", + "type": "directory", + "name": "pe-functional-components", + "base_name": "pe-functional-components", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 133801, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-functional-components/benchmark.js", + "type": "file", + "name": "benchmark.js", + "base_name": "benchmark", + "extension": ".js", + "size": 132419, + "date": "2018-03-12", + "sha1": "b53e37a58368475e9de91fa9b1caeeb1e2f7a93e", + "md5": "61825c8c1db6c8bb2b64809bc0c216c0", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-functional-components/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 439, + "date": "2018-03-12", + "sha1": "d0c1c176efc2daaa8884e3ff664731552fb2e8f1", + "md5": "5c4d4e59674db1621224f4a90f9992e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-functional-components/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 943, + "date": "2018-03-12", + "sha1": "cf56635bd7879b737036297839f79a65c40ebaa7", + "md5": "88cee9869829a1b2ac0f89bfa385ee10", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-no-components", + "type": "directory", + "name": "pe-no-components", + "base_name": "pe-no-components", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 114829, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-no-components/benchmark.js", + "type": "file", + "name": "benchmark.js", + "base_name": "benchmark", + "extension": ".js", + "size": 113447, + "date": "2018-03-12", + "sha1": "b42c3ffebb3cc85d78cc8664be641cb623d58f8a", + "md5": "0034206b66846e2eb50be2145d7346af", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-no-components/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 439, + "date": "2018-03-12", + "sha1": "d0c1c176efc2daaa8884e3ff664731552fb2e8f1", + "md5": "5c4d4e59674db1621224f4a90f9992e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/bench/benchmarks/pe-no-components/index.html", + "type": "file", + "name": "index.html", + "base_name": "index", + "extension": ".html", + "size": 943, + "date": "2018-03-12", + "sha1": "cf56635bd7879b737036297839f79a65c40ebaa7", + "md5": "88cee9869829a1b2ac0f89bfa385ee10", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci", + "type": "directory", + "name": "circleci", + "base_name": "circleci", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 0, + "size_count": 3886, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/bench.sh", + "type": "file", + "name": "bench.sh", + "base_name": "bench", + "extension": ".sh", + "size": 42, + "date": "2018-03-12", + "sha1": "2dd6c0805c74bc1b01686f88ce6ac063edd65d21", + "md5": "9b755a0675605fdb20c8b70eca0473ff", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/build.sh", + "type": "file", + "name": "build.sh", + "base_name": "build", + "extension": ".sh", + "size": 111, + "date": "2018-03-12", + "sha1": "74c83a806a15bc2241f354de8f9b76265465f274", + "md5": "cc8ca94180aee20815118251f3999169", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/build_gh_pages.sh", + "type": "file", + "name": "build_gh_pages.sh", + "base_name": "build_gh_pages", + "extension": ".sh", + "size": 669, + "date": "2018-03-12", + "sha1": "8573730e487e0c1388f823d821246c01c36e2a26", + "md5": "73796b89d7df8ab18142639ad7cfd5e9", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/set_up_github_keys.sh", + "type": "file", + "name": "set_up_github_keys.sh", + "base_name": "set_up_github_keys", + "extension": ".sh", + "size": 272, + "date": "2018-03-12", + "sha1": "2182a730bc11eed470dda8b3a4704d1e6f8275ec", + "md5": "2d47e5b456c008977bf9b466a1c96902", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/test_coverage.sh", + "type": "file", + "name": "test_coverage.sh", + "base_name": "test_coverage", + "extension": ".sh", + "size": 153, + "date": "2018-03-12", + "sha1": "685c0c0b665ca8992f9c82c02ae910f2a06e1c1e", + "md5": "ce4705c2b9bbc2c2628bc7cb7d7b8fad", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/test_entry_point.sh", + "type": "file", + "name": "test_entry_point.sh", + "base_name": "test_entry_point", + "extension": ".sh", + "size": 1426, + "date": "2018-03-12", + "sha1": "f36fe8ff299cb476704b86ae4ae793494ae2c78b", + "md5": "8d0fd6aaddf057d0e6804efa9d601c44", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/test_print_warnings.sh", + "type": "file", + "name": "test_print_warnings.sh", + "base_name": "test_print_warnings", + "extension": ".sh", + "size": 118, + "date": "2018-03-12", + "sha1": "707416f80f66ef08b5100211e383818ab47e4538", + "md5": "959146b5cb4382974b26f91fb733bf92", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/track_stats.sh", + "type": "file", + "name": "track_stats.sh", + "base_name": "track_stats", + "extension": ".sh", + "size": 310, + "date": "2018-03-12", + "sha1": "7301b8d7f5f0021002d38bb3c54c4b44c92d36b8", + "md5": "ded99d43221a7c208310e205a46bfd2c", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/circleci/upload_build.sh", + "type": "file", + "name": "upload_build.sh", + "base_name": "upload_build", + "extension": ".sh", + "size": 785, + "date": "2018-03-12", + "sha1": "4c26c9e9133bd038cdd3004d0d2c11e206c79604", + "md5": "20d724c506c484e38e6ff658b9f9d8f9", + "mime_type": "text/x-shellscript", + "file_type": "Bourne-Again shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes", + "type": "directory", + "name": "error-codes", + "base_name": "error-codes", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 1, + "size_count": 40722, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/codes.json", + "type": "file", + "name": "codes.json", + "base_name": "codes", + "extension": ".json", + "size": 24662, + "date": "2018-03-12", + "sha1": "8b87db1f07c93afd88f29140770e41aead5005df", + "md5": "8ce9d709d5673d6d43e722c36aa42c7a", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/extract-errors.js", + "type": "file", + "name": "extract-errors.js", + "base_name": "extract-errors", + "extension": ".js", + "size": 2891, + "date": "2018-03-12", + "sha1": "9310010188245da3e43d415ebaf9acc0134b5bbf", + "md5": "624b9509cd48ba03357918b2c93a768a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/invertObject.js", + "type": "file", + "name": "invertObject.js", + "base_name": "invertObject", + "extension": ".js", + "size": 722, + "date": "2018-03-12", + "sha1": "1c310a675f905b188a00625f92187550f937d575", + "md5": "2e25449981d335ef46fa995041cc4060", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 3138, + "date": "2018-03-12", + "sha1": "aa802f8aa58fb3e9f9f3bd28c49096f702186c94", + "md5": "9cc00b598a8a14d918e09f8aef46a5cb", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/replace-invariant-error-codes.js", + "type": "file", + "name": "replace-invariant-error-codes.js", + "base_name": "replace-invariant-error-codes", + "extension": ".js", + "size": 4869, + "date": "2018-03-12", + "sha1": "278ef9990dc90815933137006c415fc80fb82e0e", + "md5": "da70ed19fbf733a53897f3c59bcc89d3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/Types.js", + "type": "file", + "name": "Types.js", + "base_name": "Types", + "extension": ".js", + "size": 269, + "date": "2018-03-12", + "sha1": "a4a0f25a92e495d0efe06df217cc674fad6224c8", + "md5": "f4d3c255a421e23d9cca988eedbe1fcb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 4171, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/__tests__/dev-expression-with-codes-test.js", + "type": "file", + "name": "dev-expression-with-codes-test.js", + "base_name": "dev-expression-with-codes-test", + "extension": ".js", + "size": 2931, + "date": "2018-03-12", + "sha1": "7792c43ef435b6893e3e7b3f33d8fc59f6b1c91c", + "md5": "5841ab7b35a85411cdd76550fd0ecaba", + "mime_type": "text/x-pascal", + "file_type": "Pascal source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/error-codes/__tests__/invertObject-test.js", + "type": "file", + "name": "invertObject-test.js", + "base_name": "invertObject-test", + "extension": ".js", + "size": 1240, + "date": "2018-03-12", + "sha1": "7ea0c1b0abeced5b366f9a48a696af8edcdba904", + "md5": "e2d3a7c41b45ab80394730b3724c4271", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/facts-tracker", + "type": "directory", + "name": "facts-tracker", + "base_name": "facts-tracker", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 4978, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/facts-tracker/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 4978, + "date": "2018-03-12", + "sha1": "678f030b5a2dcbaa9a6105f066e3813448f60b1d", + "md5": "9deefb589edae6f65ab031b4ef1b8e86", + "mime_type": "application/javascript", + "file_type": "Node.js script, ASCII text executable", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 6, + "end_line": 7, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 4, + "end_line": 4 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/fiber", + "type": "directory", + "name": "fiber", + "base_name": "fiber", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 146563, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/fiber/record-tests", + "type": "file", + "name": "record-tests", + "base_name": "record-tests", + "extension": "", + "size": 5571, + "date": "2018-03-12", + "sha1": "4a7b8e2db3d6ba6cbee71ddd738614f4836ba328", + "md5": "859447321fe72a1ad385545a25c43feb", + "mime_type": "application/javascript", + "file_type": "Node.js script, ASCII text executable", + "programming_language": "Genshi", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/fiber/tests-failing.txt", + "type": "file", + "name": "tests-failing.txt", + "base_name": "tests-failing", + "extension": ".txt", + "size": 1, + "date": "2018-03-12", + "sha1": "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc", + "md5": "68b329da9893e34099c7d8ad5cb9c940", + "mime_type": "application/octet-stream", + "file_type": "very short file (no magic)", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/fiber/tests-passing-except-dev.txt", + "type": "file", + "name": "tests-passing-except-dev.txt", + "base_name": "tests-passing-except-dev", + "extension": ".txt", + "size": 1, + "date": "2018-03-12", + "sha1": "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc", + "md5": "68b329da9893e34099c7d8ad5cb9c940", + "mime_type": "application/octet-stream", + "file_type": "very short file (no magic)", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/fiber/tests-passing.txt", + "type": "file", + "name": "tests-passing.txt", + "base_name": "tests-passing", + "extension": ".txt", + "size": 140990, + "date": "2018-03-12", + "sha1": "0ff4e2ba4a51ab7ceba5018e08e9195a927036fa", + "md5": "8bd8561cac06b5c9546b02d39aacb4a9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/git", + "type": "directory", + "name": "git", + "base_name": "git", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 241, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/git/pre-commit", + "type": "file", + "name": "pre-commit", + "base_name": "pre-commit", + "extension": "", + "size": 241, + "date": "2018-03-12", + "sha1": "ca64408f950e5c6f2d0bfc18faaf190cb9c2fa52", + "md5": "26efb67d6116db883b1e653853149fdf", + "mime_type": "text/x-shellscript", + "file_type": "POSIX shell script, ASCII text executable", + "programming_language": "Bash", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest", + "type": "directory", + "name": "jest", + "base_name": "jest", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 13664, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/environment.js", + "type": "file", + "name": "environment.js", + "base_name": "environment", + "extension": ".js", + "size": 312, + "date": "2018-03-12", + "sha1": "74a29d7229f1b18fcd19025087b7ccf577d99b80", + "md5": "1675e49708e1d4853921e5d36d312fe9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/fiber.config.json", + "type": "file", + "name": "fiber.config.json", + "base_name": "fiber.config", + "extension": ".json", + "size": 836, + "date": "2018-03-12", + "sha1": "4d52dc2ee3aa9799c2c55f15e781d813d8103161", + "md5": "a6b7a6490814561378f225dfc11d101e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/fiber.setup.js", + "type": "file", + "name": "fiber.setup.js", + "base_name": "fiber.setup", + "extension": ".js", + "size": 674, + "date": "2018-03-12", + "sha1": "d56a362f0cf360a102da45f38aefbdd93de0bdea", + "md5": "0fd9d4547c6ea5170e00361dd1a87207", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/jest.d.ts", + "type": "file", + "name": "jest.d.ts", + "base_name": "jest.d", + "extension": ".ts", + "size": 2016, + "date": "2018-03-12", + "sha1": "24eb8360a33207a1bb6d7fd5f11fd356d7aaf688", + "md5": "69124dc24b2024b110ebdf9f8e67bcd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/preprocessor.js", + "type": "file", + "name": "preprocessor.js", + "base_name": "preprocessor", + "extension": ".js", + "size": 3152, + "date": "2018-03-12", + "sha1": "0ee59256edfdbd0337b365173c57477914193f72", + "md5": "32af8719aa01cbb93043582b05b8d2d9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/setupSpecEquivalenceReporter.js", + "type": "file", + "name": "setupSpecEquivalenceReporter.js", + "base_name": "setupSpecEquivalenceReporter", + "extension": ".js", + "size": 610, + "date": "2018-03-12", + "sha1": "f241dbd5d858d7dabb495bf1d32c155618d099ca", + "md5": "b184af7dbd7f9f2f3fc8f95e52c9ed09", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/stack.config.json", + "type": "file", + "name": "stack.config.json", + "base_name": "stack.config", + "extension": ".json", + "size": 836, + "date": "2018-03-12", + "sha1": "0c141287fa11834ca49195422cb639b69f52f75a", + "md5": "72b1fb77c47ac7ab8b328153e56fd987", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/stack.setup.js", + "type": "file", + "name": "stack.setup.js", + "base_name": "stack.setup", + "extension": ".js", + "size": 495, + "date": "2018-03-12", + "sha1": "735bf9885e44c11fe6214763b35916a272bc1ee5", + "md5": "618a4b5e2f1eca3d99cf1b0a3211db33", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/test-framework-setup.js", + "type": "file", + "name": "test-framework-setup.js", + "base_name": "test-framework-setup", + "extension": ".js", + "size": 2106, + "date": "2018-03-12", + "sha1": "a0770fcef55fe29b10557a73dea0d1956f6639b6", + "md5": "ad4ab010c0ca4f47154b49f282a90b92", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/jest/ts-preprocessor.js", + "type": "file", + "name": "ts-preprocessor.js", + "base_name": "ts-preprocessor", + "extension": ".js", + "size": 2627, + "date": "2018-03-12", + "sha1": "9b3b806d697539a10e8fff9920393f3cdf55794e", + "md5": "7e163d595ae94c8ad8cdf2821b4d0b1c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters", + "type": "directory", + "name": "perf-counters", + "base_name": "perf-counters", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 1, + "size_count": 50573, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/binding.gyp", + "type": "file", + "name": "binding.gyp", + "base_name": "binding", + "extension": ".gyp", + "size": 259, + "date": "2018-03-12", + "sha1": "b9a3926ff061ac28a0bd6195b2c98002af4cab88", + "md5": "35cb1c51afa0a42f2418dc1ae99bfebf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 69, + "date": "2018-03-12", + "sha1": "99423201af23bcdabb79ad0c709dae646d1b8e40", + "md5": "7be639ff695f945779cd9d46f4f9ed7b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/Makefile", + "type": "file", + "name": "Makefile", + "base_name": "Makefile", + "extension": "", + "size": 189, + "date": "2018-03-12", + "sha1": "49a91b35bbea5c864d2188ee2eec312ecc6d388b", + "md5": "cb9e30ae252bc125c33c125d7a7f51af", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "Makefile", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 215, + "date": "2018-03-12", + "sha1": "ff4b65672cba27d427662438e5605a2c511f6fdd", + "md5": "76fe355df2f2a1fb4c4ae39df2a65d83", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 6, + "end_line": 6, + "matched_rule": { + "identifier": "mit_34.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "perf-counters", + "version": "0.1.2", + "primary_language": "JavaScript", + "packaging": null, + "summary": "Lightweight bindings to Linux perf event counters.", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/perf-counters/-/perf-counters-0.1.2.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "MIT", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "bindings", + "version": null, + "version_constraint": "^1.2.1" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 380, + "date": "2018-03-12", + "sha1": "a492c49b004e7936cab38b6c09a07a76c257c5a9", + "md5": "d763d1f5a06e57d1a17f2f1f9cc95e17", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 49461, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/src/hardware-counter.cpp", + "type": "file", + "name": "hardware-counter.cpp", + "base_name": "hardware-counter", + "extension": ".cpp", + "size": 12719, + "date": "2018-03-12", + "sha1": "5fda8c9f29d6c000efaa765e1a9ef349be6008f1", + "md5": "774b724825c35a3da31e3017586ea6b2", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/src/hardware-counter.h", + "type": "file", + "name": "hardware-counter.h", + "base_name": "hardware-counter", + "extension": ".h", + "size": 3252, + "date": "2018-03-12", + "sha1": "b7b2d2c30c3f8c9833b5a7956415c21f02d38237", + "md5": "7b4a1c766eb9fcd52a9ae1d60adb43e6", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/src/jsc-perf.cpp", + "type": "file", + "name": "jsc-perf.cpp", + "base_name": "jsc-perf", + "extension": ".cpp", + "size": 4652, + "date": "2018-03-12", + "sha1": "d372598cc56d7a3ec54a3d41bd788440ac12de21", + "md5": "53b88e9f534ef91b741087996bd6d144", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/src/perf-counters.cpp", + "type": "file", + "name": "perf-counters.cpp", + "base_name": "perf-counters", + "extension": ".cpp", + "size": 1516, + "date": "2018-03-12", + "sha1": "23567e102320d56b4daa37b0caa23210f43d00fa", + "md5": "c0cd039d03fa9326d3a17cdc3f5b6e71", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/src/portability.h", + "type": "file", + "name": "portability.h", + "base_name": "portability", + "extension": ".h", + "size": 5219, + "date": "2018-03-12", + "sha1": "a0d0d42c71264549ee1d6fdd9a198f4efd6ab562", + "md5": "756c42a18d1bdcc88938f8e4e0300b59", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/src/thread-local.cpp", + "type": "file", + "name": "thread-local.cpp", + "base_name": "thread-local", + "extension": ".cpp", + "size": 2366, + "date": "2018-03-12", + "sha1": "228710e9667f2d7f578b3cd375cba29375b91c28", + "md5": "77062fc985298d6bd8be5ff5f0cb63d9", + "mime_type": "text/x-c", + "file_type": "C source, ASCII text", + "programming_language": "C++", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/perf-counters/src/thread-local.h", + "type": "file", + "name": "thread-local.h", + "base_name": "thread-local", + "extension": ".h", + "size": 19737, + "date": "2018-03-12", + "sha1": "a92f87cd5cd72f1c8e932f32a0343e6fc05240c6", + "md5": "5133e747346b3dafb59a51acd2cb7f4e", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "C", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2010-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/prettier", + "type": "directory", + "name": "prettier", + "base_name": "prettier", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2857, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/prettier/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 2857, + "date": "2018-03-12", + "sha1": "b60acbd64fe89d106cedcdec44c9af832def91d9", + "md5": "011ac9cbad6a3b852ca4008e98ce4370", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/print-warnings", + "type": "directory", + "name": "print-warnings", + "base_name": "print-warnings", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2609, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/print-warnings/print-warnings.js", + "type": "file", + "name": "print-warnings.js", + "base_name": "print-warnings", + "extension": ".js", + "size": 2349, + "date": "2018-03-12", + "sha1": "5e5448a8a6ee12cdb3dca5835c04141670060f03", + "md5": "18f5bd170ab6f27f5a028e562ea8a92b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/print-warnings/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 260, + "date": "2018-03-12", + "sha1": "1a5d759498127bac506a5f79f6c35cac84d7ab6a", + "md5": "0d4c3d4ba3d30b9ba9d9a8dd09fc11ce", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager", + "type": "directory", + "name": "release-manager", + "base_name": "release-manager", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 15, + "dirs_count": 2, + "size_count": 51261, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/.eslintrc.js", + "type": "file", + "name": ".eslintrc.js", + "base_name": ".eslintrc", + "extension": ".js", + "size": 73, + "date": "2018-03-12", + "sha1": "e18fefad59463a68b0fcbcc5697fe7c296ec0fcb", + "md5": "24a42bc95d3f9873cf42c78a7bcf1def", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/cli.js", + "type": "file", + "name": "cli.js", + "base_name": "cli", + "extension": ".js", + "size": 3410, + "date": "2018-03-12", + "sha1": "12933d91b602e29881e7186cdbb70e8de6997d8c", + "md5": "08aef32089ea8fbe270da07591c89049", + "mime_type": "application/javascript", + "file_type": "Node.js script, ASCII text executable", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 567, + "date": "2018-03-12", + "sha1": "ee022df4e1a786bc827068d2577dc65fcb8ce8a0", + "md5": "88e6b614f87327b9499a47cd3d19abf2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 23, + "end_line": 23, + "matched_rule": { + "identifier": "mit_34.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-release-manager", + "version": "1.0.0", + "primary_language": "JavaScript", + "packaging": null, + "summary": "Tool to manage React releases", + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [ + { + "type": "person", + "name": "Paul O'Shannessy", + "email": "paul@oshannessy.com", + "url": null + } + ], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-release-manager/-/react-release-manager-1.0.0.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "MIT", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": { + "runtime": [ + { + "name": "chalk", + "version": null, + "version_constraint": "^1.1.3" + }, + { + "name": "colors", + "version": null, + "version_constraint": "^1.1.2" + }, + { + "name": "github-api", + "version": null, + "version_constraint": "^2.2.0" + }, + { + "name": "glob", + "version": null, + "version_constraint": "^7.0.5" + }, + { + "name": "opn", + "version": null, + "version_constraint": "^4.0.2" + }, + { + "name": "pify", + "version": null, + "version_constraint": "^2.3.0" + }, + { + "name": "semver", + "version": null, + "version_constraint": "^5.3.0" + }, + { + "name": "untildify", + "version": null, + "version_constraint": "^3.0.2" + }, + { + "name": "vorpal", + "version": null, + "version_constraint": "^1.10.10" + } + ] + }, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/Readme.md", + "type": "file", + "name": "Readme.md", + "base_name": "Readme", + "extension": ".md", + "size": 14718, + "date": "2018-03-12", + "sha1": "a78f5992a3ebf53db1bc9b507f1079b02b80005d", + "md5": "aa19127c92c811f472bd6654e39c23a7", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands", + "type": "directory", + "name": "commands", + "base_name": "commands", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 1, + "size_count": 32493, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/docs-prs.js", + "type": "file", + "name": "docs-prs.js", + "base_name": "docs-prs", + "extension": ".js", + "size": 5274, + "date": "2018-03-12", + "sha1": "b9328219a4c12261ad05d343f518794fc2e01eca", + "md5": "33f3db944fe0bd05bda173797361a927", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/init.js", + "type": "file", + "name": "init.js", + "base_name": "init", + "extension": ".js", + "size": 2064, + "date": "2018-03-12", + "sha1": "ccd471c23071d0846e4cc915df6dfdcc9bd02edb", + "md5": "a83f7d6755bf106be34d08a5d9402cff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/npm-check-access.js", + "type": "file", + "name": "npm-check-access.js", + "base_name": "npm-check-access", + "extension": ".js", + "size": 1360, + "date": "2018-03-12", + "sha1": "95242a0a00ff910b85e8284713cf16a2f0051550", + "md5": "dc62210cb9c62f2c76f1f669a9565fa0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/npm-grant-access.js", + "type": "file", + "name": "npm-grant-access.js", + "base_name": "npm-grant-access", + "extension": ".js", + "size": 1347, + "date": "2018-03-12", + "sha1": "a25ff9d06174dd5caae74d1b8f0be0757dea4396", + "md5": "9823b962be47e785364906494aa813ee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/npm-publish.js", + "type": "file", + "name": "npm-publish.js", + "base_name": "npm-publish", + "extension": ".js", + "size": 2278, + "date": "2018-03-12", + "sha1": "1b6b0313f31ce15a90c409fd4febe018faa210f2", + "md5": "2f70f88ad387aabd5a5ed7f16d9189dc", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/q.js", + "type": "file", + "name": "q.js", + "base_name": "q", + "extension": ".js", + "size": 227, + "date": "2018-03-12", + "sha1": "e39248b55ddcc3858b89abbfea19325878515852", + "md5": "b330f50ee750077733462dc5d55f77ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/stable-prs.js", + "type": "file", + "name": "stable-prs.js", + "base_name": "stable-prs", + "extension": ".js", + "size": 10108, + "date": "2018-03-12", + "sha1": "c8282871b700a94fbd6ea3699cc1d064b414cb5e", + "md5": "1805067793f875c4b60709a38840ec08", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/start-release.js", + "type": "file", + "name": "start-release.js", + "base_name": "start-release", + "extension": ".js", + "size": 1262, + "date": "2018-03-12", + "sha1": "2a056f17424af22a9ad794cbecd0c6e3cfc8dbc9", + "md5": "9c14ffc9007f385a84aa1ff344352b7d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/version.js", + "type": "file", + "name": "version.js", + "base_name": "version", + "extension": ".js", + "size": 5444, + "date": "2018-03-12", + "sha1": "4de2c88b0705bf97fb2fdf2ed2436ada074b0514", + "md5": "8277783e9812437bb5323c9a14c3f82e", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/utils", + "type": "directory", + "name": "utils", + "base_name": "utils", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 3129, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/utils/git.js", + "type": "file", + "name": "git.js", + "base_name": "git", + "extension": ".js", + "size": 1937, + "date": "2018-03-12", + "sha1": "9c8c9027e70d30f53d5974bd8d3b10d064f9fa16", + "md5": "acee114bbd573f24eb3429a16dff87ad", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/release-manager/commands/utils/npm.js", + "type": "file", + "name": "npm.js", + "base_name": "npm", + "extension": ".js", + "size": 1192, + "date": "2018-03-12", + "sha1": "ecc80c46cfa29d86203eca79a338b271567e91a8", + "md5": "73604da05bd389c3fb0d2e5cbb2dc279", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup", + "type": "directory", + "name": "rollup", + "base_name": "rollup", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 39, + "dirs_count": 6, + "size_count": 63646, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/build.js", + "type": "file", + "name": "build.js", + "base_name": "build", + "extension": ".js", + "size": 16456, + "date": "2018-03-12", + "sha1": "0fbc9b434406b1d0bd24d2543207779b41254859", + "md5": "6c13e7c7e230f4b2faf06e5dc9ded949", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/bundles.js", + "type": "file", + "name": "bundles.js", + "base_name": "bundles", + "extension": ".js", + "size": 10217, + "date": "2018-03-12", + "sha1": "08dea1c7436fe22ab211047b67d17bccbd2cf4fc", + "md5": "057fb9b6628700f2e1bcbe956e20fc2c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "public-domain", + "score": 10.0, + "short_name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "text_url": "", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", + "spdx_license_key": "", + "spdx_url": "", + "start_line": 372, + "end_line": 372, + "matched_rule": { + "identifier": "public-domain.LICENSE", + "license_choice": false, + "licenses": [ + "public-domain" + ] + } + } + ], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/header.js", + "type": "file", + "name": "header.js", + "base_name": "header", + "extension": ".js", + "size": 660, + "date": "2018-03-12", + "sha1": "f1cc792365436fafb0f8ba3154cf7af4a41a46c1", + "md5": "ce127a5f4577aecd733bc32b2ca8cc03", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 7, + "end_line": 8, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 22, + "end_line": 23, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 4, + "end_line": 5 + }, + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 20, + "end_line": 20 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/mangle.js", + "type": "file", + "name": "mangle.js", + "base_name": "mangle", + "extension": ".js", + "size": 201, + "date": "2018-03-12", + "sha1": "74cb79b1e357717b9cb10184eab362b7062bb3b9", + "md5": "104a1d1ad6dc2ff53abd6ca23e086cb8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/modules.js", + "type": "file", + "name": "modules.js", + "base_name": "modules", + "extension": ".js", + "size": 8992, + "date": "2018-03-12", + "sha1": "9bc6da007cc74b6b353fcfb2095df59d1b4481c9", + "md5": "9595ac8a6425dfc50804bc5f53788a8e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/packaging.js", + "type": "file", + "name": "packaging.js", + "base_name": "packaging", + "extension": ".js", + "size": 5857, + "date": "2018-03-12", + "sha1": "fd9c58443b0615fd7dc26a320ca6a576e520a505", + "md5": "91bb9cc3af11d0fafe69284831035354", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/results.json", + "type": "file", + "name": "results.json", + "base_name": "results", + "extension": ".json", + "size": 4704, + "date": "2018-03-12", + "sha1": "8a7a154c438bb2a52ab02944fe73e8cb30069935", + "md5": "1be132abf1da1eb39d1edb47d3db8398", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/stats.js", + "type": "file", + "name": "stats.js", + "base_name": "stats", + "extension": ".js", + "size": 1903, + "date": "2018-03-12", + "sha1": "2137a574181e71ead3db9a4f688bb07343258174", + "md5": "813904f3b2881adcfef6c38f8d0ec28f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/sync.js", + "type": "file", + "name": "sync.js", + "base_name": "sync", + "extension": ".js", + "size": 1357, + "date": "2018-03-12", + "sha1": "a1854464db66b87f606066f820425984294cd5c2", + "md5": "1c5199cc5be067247332c28034c245d9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/utils.js", + "type": "file", + "name": "utils.js", + "base_name": "utils", + "extension": ".js", + "size": 564, + "date": "2018-03-12", + "sha1": "cd1cd1eaacf0eb8f79ed27c7e95a76d6cdb67cf6", + "md5": "69535727b9849fd5aed6ca11b7e373d3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/plugins", + "type": "directory", + "name": "plugins", + "base_name": "plugins", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 1, + "size_count": 2678, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/plugins/sizes-plugin.js", + "type": "file", + "name": "sizes-plugin.js", + "base_name": "sizes-plugin", + "extension": ".js", + "size": 267, + "date": "2018-03-12", + "sha1": "9fffba07f49f540198d5f5dc029dfabcaa0a08f7", + "md5": "793aa24a2a667d67f291c8d078a7cf36", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/plugins/wrap-warning-with-env-check.js", + "type": "file", + "name": "wrap-warning-with-env-check.js", + "base_name": "wrap-warning-with-env-check", + "extension": ".js", + "size": 1291, + "date": "2018-03-12", + "sha1": "00a2d4c1a8926ada283296741531c264cad19198", + "md5": "fe409a554fa542e18a0e020ab73b2789", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/plugins/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1120, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/plugins/__tests__/wrap-warning-with-env-check-test.js", + "type": "file", + "name": "wrap-warning-with-env-check-test.js", + "base_name": "wrap-warning-with-env-check-test", + "extension": ".js", + "size": 1120, + "date": "2018-03-12", + "sha1": "91e4c1ba370dc302ac3581b32366617040acc494", + "md5": "85758bc3ce688be506603584798495dd", + "mime_type": "text/x-pascal", + "file_type": "Pascal source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims", + "type": "directory", + "name": "shims", + "base_name": "shims", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 26, + "dirs_count": 3, + "size_count": 10057, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www", + "type": "directory", + "name": "facebook-www", + "base_name": "facebook-www", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 4849, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/DOMProperty.js", + "type": "file", + "name": "DOMProperty.js", + "base_name": "DOMProperty", + "extension": ".js", + "size": 405, + "date": "2018-03-12", + "sha1": "6f62ea2691183ccb8f824e1b0c61852c6393b654", + "md5": "335ea951857e7018e3526be81765ba7c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/EventPluginHub.js", + "type": "file", + "name": "EventPluginHub.js", + "base_name": "EventPluginHub", + "extension": ".js", + "size": 413, + "date": "2018-03-12", + "sha1": "b97704cb63f700d29363607ac2ad4fb0946bff4e", + "md5": "4c5a789d1e11ff00342664b2af6804b1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/EventPluginUtils.js", + "type": "file", + "name": "EventPluginUtils.js", + "base_name": "EventPluginUtils", + "extension": ".js", + "size": 417, + "date": "2018-03-12", + "sha1": "aee73f1834d83f52a09949091ccc87e9bd416a0f", + "md5": "21f690c7ea26d80734d9e6a921644b8d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/EventPropagators.js", + "type": "file", + "name": "EventPropagators.js", + "base_name": "EventPropagators", + "extension": ".js", + "size": 417, + "date": "2018-03-12", + "sha1": "b5e0205a7250413daf8ba7853f1bb1c225745965", + "md5": "5c2aa1062cc88bde509fceb0a9e0b0f8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/findDOMNode.js", + "type": "file", + "name": "findDOMNode.js", + "base_name": "findDOMNode", + "extension": ".js", + "size": 310, + "date": "2018-03-12", + "sha1": "ca7591e4676ba2fc6b5869939ed8b68bf63a937f", + "md5": "f890ba6ae8141e6c70c9c924e396eebd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/ReactBrowserEventEmitter.js", + "type": "file", + "name": "ReactBrowserEventEmitter.js", + "base_name": "ReactBrowserEventEmitter", + "extension": ".js", + "size": 433, + "date": "2018-03-12", + "sha1": "6e64e46cdc8eebc6a63c5076d4aed3ecfb41612a", + "md5": "99212109f83eb6b413750fcaecd9a83d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/ReactDOMComponentTree.js", + "type": "file", + "name": "ReactDOMComponentTree.js", + "base_name": "ReactDOMComponentTree", + "extension": ".js", + "size": 427, + "date": "2018-03-12", + "sha1": "ab89e9ed7baf946091993744181003d1344a740d", + "md5": "380970e177bec2f3f936d0305116d7f2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/ReactErrorUtils.js", + "type": "file", + "name": "ReactErrorUtils.js", + "base_name": "ReactErrorUtils", + "extension": ".js", + "size": 415, + "date": "2018-03-12", + "sha1": "d838060007466c56b21f784270e970062d7a493d", + "md5": "2ff99d29ecd4f6a606817a783f8e2bd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/ReactFiberErrorLogger.js", + "type": "file", + "name": "ReactFiberErrorLogger.js", + "base_name": "ReactFiberErrorLogger", + "extension": ".js", + "size": 427, + "date": "2018-03-12", + "sha1": "e5ddcf7ecc393e14e66562d4ed454c76b5ab9763", + "md5": "231fd87d92af79fa521d3744a990d8e7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/ReactInstanceMap.js", + "type": "file", + "name": "ReactInstanceMap.js", + "base_name": "ReactInstanceMap", + "extension": ".js", + "size": 417, + "date": "2018-03-12", + "sha1": "1f440e600805ee9b42a2b29f9365cfc8bfe78e42", + "md5": "8453b0be631c83f7609315754eb72222", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/renderSubtreeIntoContainer.js", + "type": "file", + "name": "renderSubtreeIntoContainer.js", + "base_name": "renderSubtreeIntoContainer", + "extension": ".js", + "size": 351, + "date": "2018-03-12", + "sha1": "e01d5b72e2769498e0aa3fb02ef549003ba63edd", + "md5": "f0bc3d928a13195d59976d70ec477f61", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/facebook-www/SyntheticUIEvent.js", + "type": "file", + "name": "SyntheticUIEvent.js", + "base_name": "SyntheticUIEvent", + "extension": ".js", + "size": 417, + "date": "2018-03-12", + "sha1": "cc0c23404d15b350c3bc40debe045e8781294e56", + "md5": "bd06c05df6cae60e7a5608842536f1e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native", + "type": "directory", + "name": "react-native", + "base_name": "react-native", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 0, + "size_count": 4901, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/createReactNativeComponentClass.js", + "type": "file", + "name": "createReactNativeComponentClass.js", + "base_name": "createReactNativeComponentClass", + "extension": ".js", + "size": 456, + "date": "2018-03-12", + "sha1": "e7dd5da117190cdf269a3334a08172a7c92ab6e6", + "md5": "22bbe95b7054d4352fa6ad00d44f3832", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/NativeMethodsMixin.js", + "type": "file", + "name": "NativeMethodsMixin.js", + "base_name": "NativeMethodsMixin", + "extension": ".js", + "size": 563, + "date": "2018-03-12", + "sha1": "f5ebc8f63a26c7f60b1710e1c51fa9bee6592424", + "md5": "ab621c6643e07e70d6d2912c88f9f9c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/ReactDebugTool.js", + "type": "file", + "name": "ReactDebugTool.js", + "base_name": "ReactDebugTool", + "extension": ".js", + "size": 413, + "date": "2018-03-12", + "sha1": "f24646ba5e3031c030499bf3dc4a4d9b64f381f4", + "md5": "67d21f5089772034614856d459a73cb5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/ReactGlobalSharedState.js", + "type": "file", + "name": "ReactGlobalSharedState.js", + "base_name": "ReactGlobalSharedState", + "extension": ".js", + "size": 429, + "date": "2018-03-12", + "sha1": "755df2090e46f85feee767cc40eacceda0e20660", + "md5": "f29469e569c2dd800701b235cc03c7d2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/ReactNative.js", + "type": "file", + "name": "ReactNative.js", + "base_name": "ReactNative", + "extension": ".js", + "size": 490, + "date": "2018-03-12", + "sha1": "d9338cb6c8935a1ba62548b6dc9b84e73bdc5154", + "md5": "73d5d065d3eb1df5824c8c83af0391b4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/ReactNativeBridgeEventPlugin.js", + "type": "file", + "name": "ReactNativeBridgeEventPlugin.js", + "base_name": "ReactNativeBridgeEventPlugin", + "extension": ".js", + "size": 441, + "date": "2018-03-12", + "sha1": "9ea3e98fe27b5404bb5007bdd73ec9c72d01c63e", + "md5": "c8dd921441cd5e0fea75093c8c35905b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/ReactNativeComponentTree.js", + "type": "file", + "name": "ReactNativeComponentTree.js", + "base_name": "ReactNativeComponentTree", + "extension": ".js", + "size": 442, + "date": "2018-03-12", + "sha1": "e7f254bba29c60f320e7c51d07720422bf529cb3", + "md5": "3a7633f0b46a08884709b13f4a8a094e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/ReactNativePropRegistry.js", + "type": "file", + "name": "ReactNativePropRegistry.js", + "base_name": "ReactNativePropRegistry", + "extension": ".js", + "size": 440, + "date": "2018-03-12", + "sha1": "330e8339ea0028123637ef2b17a9281dcca3d314", + "md5": "c24c91eaba748e284dfe0998c50e14e3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/ReactPerf.js", + "type": "file", + "name": "ReactPerf.js", + "base_name": "ReactPerf", + "extension": ".js", + "size": 401, + "date": "2018-03-12", + "sha1": "d1bd531f2df6805c61fb178d00a9df4342cbaeef", + "md5": "670e115bb65ecde96aed266f1eb3ebdf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/takeSnapshot.js", + "type": "file", + "name": "takeSnapshot.js", + "base_name": "takeSnapshot", + "extension": ".js", + "size": 409, + "date": "2018-03-12", + "sha1": "839dd0c64614aaaf06bba9ce13788fe8b1f89b50", + "md5": "8554f37906ed794f6f4d7bf7c3e27a5f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/react-native/TouchHistoryMath.js", + "type": "file", + "name": "TouchHistoryMath.js", + "base_name": "TouchHistoryMath", + "extension": ".js", + "size": 417, + "date": "2018-03-12", + "sha1": "ae4717f361c1c66cb4de5db8666ec51d89109c1e", + "md5": "931fb32313c076b56fa4f57562fb73b7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/rollup", + "type": "directory", + "name": "rollup", + "base_name": "rollup", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 307, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/rollup/assign.js", + "type": "file", + "name": "assign.js", + "base_name": "assign", + "extension": ".js", + "size": 134, + "date": "2018-03-12", + "sha1": "33aeabafbc62575f57bf44ae9090552fe09ce648", + "md5": "b680c145991b4852a2177086f4536cb4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/rollup/DevOnlyStubShim.js", + "type": "file", + "name": "DevOnlyStubShim.js", + "base_name": "DevOnlyStubShim", + "extension": ".js", + "size": 23, + "date": "2018-03-12", + "sha1": "a22dd03fbde9514ce0f47b3237298851a80fc3d6", + "md5": "eb5fa2a2e1914996ab6f7e22048f862c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/rollup/shims/rollup/ReactDebugCurrentFrameRollupShim.js", + "type": "file", + "name": "ReactDebugCurrentFrameRollupShim.js", + "base_name": "ReactDebugCurrentFrameRollupShim", + "extension": ".js", + "size": 150, + "date": "2018-03-12", + "sha1": "992c7179db8b655b250fcb4f3490c562311bcdb2", + "md5": "09673fdfe5cae5f9ee7f8050bc82ba5e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 1856, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/shared/evalToString.js", + "type": "file", + "name": "evalToString.js", + "base_name": "evalToString", + "extension": ".js", + "size": 660, + "date": "2018-03-12", + "sha1": "7d817225a26b550d474c829cc2c2f4584d91b3ab", + "md5": "fe4f972ec65f723fcadc6a3c1379cab3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/shared/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1196, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/shared/__tests__/evalToString-test.js", + "type": "file", + "name": "evalToString-test.js", + "base_name": "evalToString-test", + "extension": ".js", + "size": 1196, + "date": "2018-03-12", + "sha1": "ca89c0063f63e35d62ce118a602482e02c28e573", + "md5": "38ff0dfb4bea96d28e311daae67bf314", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/tasks", + "type": "directory", + "name": "tasks", + "base_name": "tasks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 2907, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/tasks/eslint.js", + "type": "file", + "name": "eslint.js", + "base_name": "eslint", + "extension": ".js", + "size": 653, + "date": "2018-03-12", + "sha1": "6ec954363f9649345919f826ddb8fa49bffd7ad6", + "md5": "b6c05496a5443045a51c39a4b888d10b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/tasks/flow.js", + "type": "file", + "name": "flow.js", + "base_name": "flow", + "extension": ".js", + "size": 626, + "date": "2018-03-12", + "sha1": "a6fb294fd0dbc1fd9a9fccc963b5ee2537aff367", + "md5": "9f8ef1d3d1e791ad05b2a7bae69e3144", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/tasks/jest.js", + "type": "file", + "name": "jest.js", + "base_name": "jest", + "extension": ".js", + "size": 605, + "date": "2018-03-12", + "sha1": "1f6f7fb82b7ddb88607e54dabc60f4f7afe38713", + "md5": "3c8654b69edfff1d019680567c73e3e6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/scripts/tasks/version-check.js", + "type": "file", + "name": "version-check.js", + "base_name": "version-check", + "extension": ".js", + "size": 1023, + "date": "2018-03-12", + "sha1": "dbadc01d845be9865cad057647eda9976526ef55", + "md5": "2ce0acc15f10af4af7a332090f86d37a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src", + "type": "directory", + "name": "src", + "base_name": "src", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 384, + "dirs_count": 79, + "size_count": 2980453, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "extension": ".json", + "size": 77, + "date": "2018-03-12", + "sha1": "a9972cba43d508998fa67ab6139d55cb8b2748e8", + "md5": "436d2a76d54b3c980fb6ad336532a16e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JSON", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 10.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 4, + "matched_rule": { + "identifier": "mit_34.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [], + "packages": [ + { + "type": "npm", + "name": "react-haste", + "version": "16.0.0-alpha", + "primary_language": "JavaScript", + "packaging": null, + "summary": null, + "description": null, + "payload_type": null, + "size": null, + "release_date": null, + "authors": [], + "maintainers": [], + "contributors": [], + "owners": [], + "packagers": [], + "distributors": [], + "vendors": [], + "keywords": [], + "keywords_doc_url": null, + "metafile_locations": [ + "package" + ], + "metafile_urls": [], + "homepage_url": null, + "notes": null, + "download_urls": [ + "https://registry.npmjs.org/react-haste/-/react-haste-16.0.0-alpha.tgz" + ], + "download_sha1": null, + "download_sha256": null, + "download_md5": null, + "bug_tracking_url": null, + "support_contacts": [], + "code_view_url": null, + "vcs_tool": null, + "vcs_repository": null, + "vcs_revision": null, + "copyright_top_level": null, + "copyrights": [], + "asserted_licenses": [ + { + "license": "MIT", + "url": null, + "text": null, + "notice": null + } + ], + "legal_file_locations": [], + "license_expression": null, + "license_texts": [], + "notice_texts": [], + "dependencies": {}, + "related_packages": [] + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/ReactVersion.js", + "type": "file", + "name": "ReactVersion.js", + "base_name": "ReactVersion", + "extension": ".js", + "size": 261, + "date": "2018-03-12", + "sha1": "2c74a9c038f29697d22e174fd6a2fec6e5f492b7", + "md5": "72fe796a52a7486c38b3bcf4ec0d752e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__", + "type": "directory", + "name": "__mocks__", + "base_name": "__mocks__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 2, + "size_count": 241158, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/deepDiffer.js", + "type": "file", + "name": "deepDiffer.js", + "base_name": "deepDiffer", + "extension": ".js", + "size": 1625, + "date": "2018-03-12", + "sha1": "cb42cdd3b82cfe9e2f80e634c5ca8ad3b3530b16", + "md5": "634f586febe0741dece76cd99a70009e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/deepFreezeAndThrowOnMutationInDev.js", + "type": "file", + "name": "deepFreezeAndThrowOnMutationInDev.js", + "base_name": "deepFreezeAndThrowOnMutationInDev", + "extension": ".js", + "size": 341, + "date": "2018-03-12", + "sha1": "bcbf96ddae1edcea9afd8ddc15907a5c94a78b75", + "md5": "43ca096b08e80e1b41d40b76206ef118", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/ExceptionsManager.js", + "type": "file", + "name": "ExceptionsManager.js", + "base_name": "ExceptionsManager", + "extension": ".js", + "size": 251, + "date": "2018-03-12", + "sha1": "a492a2f6bfd0a10e5012e83ef27f549746fb16c9", + "md5": "036b66b40fcf840a1a1fbeaf59d851ba", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/flattenStyle.js", + "type": "file", + "name": "flattenStyle.js", + "base_name": "flattenStyle", + "extension": ".js", + "size": 304, + "date": "2018-03-12", + "sha1": "ec52afa57cf39bc48538177ef91c925b6db72b6d", + "md5": "941ea990f012e5a47691f724c66a9a32", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/InitializeCore.js", + "type": "file", + "name": "InitializeCore.js", + "base_name": "InitializeCore", + "extension": ".js", + "size": 283, + "date": "2018-03-12", + "sha1": "903859c74edbf3b6d2de157e423b75f1eb90a640", + "md5": "4b1e8c00bc4f72628bd9919960380f5d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/Platform.js", + "type": "file", + "name": "Platform.js", + "base_name": "Platform", + "extension": ".js", + "size": 233, + "date": "2018-03-12", + "sha1": "a7d52dd9f8fa040431a714b7dc685ef3c2e0a01d", + "md5": "58eb8432f4c7ccb9dd13b351e39982ea", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/RCTEventEmitter.js", + "type": "file", + "name": "RCTEventEmitter.js", + "base_name": "RCTEventEmitter", + "extension": ".js", + "size": 284, + "date": "2018-03-12", + "sha1": "d60d383758ef23f433bb4235987be8a329ce8d25", + "md5": "7be2f52362875e0ab956be9b52c4ea3c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/TextInputState.js", + "type": "file", + "name": "TextInputState.js", + "base_name": "TextInputState", + "extension": ".js", + "size": 360, + "date": "2018-03-12", + "sha1": "4911448cde2b89ab310db6c590f7ad0e6e9b74fc", + "md5": "d2259e50db49deeb2fd40a64aad48fbe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/UIManager.js", + "type": "file", + "name": "UIManager.js", + "base_name": "UIManager", + "extension": ".js", + "size": 4730, + "date": "2018-03-12", + "sha1": "2c23b4613a02e0f43db9091a923a219dac061ee2", + "md5": "68b44e922aaac1a4a08569c07986d471", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/View.js", + "type": "file", + "name": "View.js", + "base_name": "View", + "extension": ".js", + "size": 405, + "date": "2018-03-12", + "sha1": "1f1dec1778796d74983baeb1df6bbc0be85cec2c", + "md5": "afc09664edfeae3cbc38539145afcf0a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/vendor", + "type": "directory", + "name": "vendor", + "base_name": "vendor", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 232342, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/vendor/third_party", + "type": "directory", + "name": "third_party", + "base_name": "third_party", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 232342, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/__mocks__/vendor/third_party/WebComponents.js", + "type": "file", + "name": "WebComponents.js", + "base_name": "WebComponents", + "extension": ".js", + "size": 232342, + "date": "2018-03-12", + "sha1": "9b1a92864422049e2c99432624948a341a8a8695", + "md5": "cfcc5d24ca194c8cd60dd89eae4c167d", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text, with very long lines", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "bsd-new", + "score": 15.0, + "short_name": "BSD-Modified", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "text_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new", + "spdx_license_key": "BSD-3-Clause", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause", + "start_line": 4, + "end_line": 4, + "matched_rule": { + "identifier": "bsd-new_168.RULE", + "license_choice": false, + "licenses": [ + "bsd-new" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014 The Polymer Project" + ], + "holders": [ + "The Polymer Project" + ], + "authors": [], + "start_line": 2, + "end_line": 3 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/fb", + "type": "directory", + "name": "fb", + "base_name": "fb", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1091, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/fb/ReactDOMFiberFBEntry.js", + "type": "file", + "name": "ReactDOMFiberFBEntry.js", + "base_name": "ReactDOMFiberFBEntry", + "extension": ".js", + "size": 1091, + "date": "2018-03-12", + "sha1": "baa488b26fcda884ca3b4596d4c51a7def25a84c", + "md5": "8a05b95ef49620a532af0a329c7bc09c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic", + "type": "directory", + "name": "isomorphic", + "base_name": "isomorphic", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 27, + "dirs_count": 12, + "size_count": 221763, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/ReactEntry.js", + "type": "file", + "name": "ReactEntry.js", + "base_name": "ReactEntry", + "extension": ".js", + "size": 1889, + "date": "2018-03-12", + "sha1": "e048e5447c553a22e8b34e5ddd45c0475590ceea", + "md5": "eb93fe9fad172add86e07e5e25e97290", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/children", + "type": "directory", + "name": "children", + "base_name": "children", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 1, + "size_count": 41370, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/children/onlyChild.js", + "type": "file", + "name": "onlyChild.js", + "base_name": "onlyChild", + "extension": ".js", + "size": 1116, + "date": "2018-03-12", + "sha1": "afa4921821e3e2b0fb203644dad4379292c48513", + "md5": "05da2aae558f24300250747baecb5dd0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/children/ReactChildren.js", + "type": "file", + "name": "ReactChildren.js", + "base_name": "ReactChildren", + "extension": ".js", + "size": 11249, + "date": "2018-03-12", + "sha1": "471fb16e12d7c3c962b0a128f1437fa683f720bf", + "md5": "838fadb53920d86fd653162d71fdf673", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/children/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 29005, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/children/__tests__/onlyChild-test.js", + "type": "file", + "name": "onlyChild-test.js", + "base_name": "onlyChild-test", + "extension": ".js", + "size": 2057, + "date": "2018-03-12", + "sha1": "e77ce52affbeec8609dc8308975a9939d84e8022", + "md5": "84e8f9650bdc4cd0705717fe27f588b2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/children/__tests__/ReactChildren-test.js", + "type": "file", + "name": "ReactChildren-test.js", + "base_name": "ReactChildren-test", + "extension": ".js", + "size": 26948, + "date": "2018-03-12", + "sha1": "20a957483515362799a2cd068637d176abb34fbd", + "md5": "65398391e918c032afd8faff062f99d4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic", + "type": "directory", + "name": "classic", + "base_name": "classic", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 9, + "dirs_count": 3, + "size_count": 91896, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 23351, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/__tests__/createReactClassIntegration-test.js", + "type": "file", + "name": "createReactClassIntegration-test.js", + "base_name": "createReactClassIntegration-test", + "extension": ".js", + "size": 12819, + "date": "2018-03-12", + "sha1": "5fde0a8f0090df224c74ab90808a77beed3485c8", + "md5": "d93ae233dbfe7b99802d00d61c244d8b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/__tests__/ReactContextValidator-test.js", + "type": "file", + "name": "ReactContextValidator-test.js", + "base_name": "ReactContextValidator-test", + "extension": ".js", + "size": 10532, + "date": "2018-03-12", + "sha1": "badbaf9a715f2adaac2d84b94150bab820db830a", + "md5": "5c572c80ca87d276b2df6b5ebc814c0a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element", + "type": "directory", + "name": "element", + "base_name": "element", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 7, + "dirs_count": 1, + "size_count": 68545, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element/ReactCurrentOwner.js", + "type": "file", + "name": "ReactCurrentOwner.js", + "base_name": "ReactCurrentOwner", + "extension": ".js", + "size": 669, + "date": "2018-03-12", + "sha1": "819063bb0286f2c91ee25ab00f3ad4a70277703a", + "md5": "ae79496ff538d1c5a4b92c4e66775ec5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element/ReactDebugCurrentFrame.js", + "type": "file", + "name": "ReactDebugCurrentFrame.js", + "base_name": "ReactDebugCurrentFrame", + "extension": ".js", + "size": 663, + "date": "2018-03-12", + "sha1": "2fe7769bfc7249ff841359dbfe945c9a54120116", + "md5": "1c84974739917b8b4435399e71646331", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element/ReactElement.js", + "type": "file", + "name": "ReactElement.js", + "base_name": "ReactElement", + "extension": ".js", + "size": 11091, + "date": "2018-03-12", + "sha1": "cded94f48ac21e7dbcea452c759187d68e116166", + "md5": "d8123fb11bb853f789387b9b4f04d192", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element/ReactElementValidator.js", + "type": "file", + "name": "ReactElementValidator.js", + "base_name": "ReactElementValidator", + "extension": ".js", + "size": 10127, + "date": "2018-03-12", + "sha1": "76f02272c5c30b3090eb647e8bde2e1f2973dbf1", + "md5": "569c1ff84748fdf353db78226b36a7a1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 45995, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element/__tests__/ReactElement-test.js", + "type": "file", + "name": "ReactElement-test.js", + "base_name": "ReactElement-test", + "extension": ".js", + "size": 18648, + "date": "2018-03-12", + "sha1": "baa74a525fe1d03b4c685899a340e1f6b72cb68f", + "md5": "7ce7f19111ad13707ad964d09cb564d6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element/__tests__/ReactElementClone-test.js", + "type": "file", + "name": "ReactElementClone-test.js", + "base_name": "ReactElementClone-test", + "extension": ".js", + "size": 10447, + "date": "2018-03-12", + "sha1": "68db52c752804d2a0cb971aeae8ef71349d518cb", + "md5": "a479d2c84b5d5d97d5123445efe1ea23", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/classic/element/__tests__/ReactElementValidator-test.js", + "type": "file", + "name": "ReactElementValidator-test.js", + "base_name": "ReactElementValidator-test", + "extension": ".js", + "size": 16900, + "date": "2018-03-12", + "sha1": "e5ef31b302fd8350eceadf5eef1f8511c8ba20aa", + "md5": "5fddab337660cb3418fb35d895c0b5c4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/hooks", + "type": "directory", + "name": "hooks", + "base_name": "hooks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 10170, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/hooks/ReactComponentTreeHook.js", + "type": "file", + "name": "ReactComponentTreeHook.js", + "base_name": "ReactComponentTreeHook", + "extension": ".js", + "size": 10170, + "date": "2018-03-12", + "sha1": "904dc738f7dbe578f2595d3abc685286a7e99418", + "md5": "bfc40ad42118c6252aa99eab1ab35834", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern", + "type": "directory", + "name": "modern", + "base_name": "modern", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 4, + "size_count": 76438, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class", + "type": "directory", + "name": "class", + "base_name": "class", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 10, + "dirs_count": 1, + "size_count": 57198, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/PropTypes.d.ts", + "type": "file", + "name": "PropTypes.d.ts", + "base_name": "PropTypes.d", + "extension": ".ts", + "size": 407, + "date": "2018-03-12", + "sha1": "e23abf9081034c94567b490e35738d412e87bf24", + "md5": "261558def26a4ba53eeae69ba02757f9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/React.d.ts", + "type": "file", + "name": "React.d.ts", + "base_name": "React.d", + "extension": ".ts", + "size": 724, + "date": "2018-03-12", + "sha1": "7658159d7d51a6da7be53e59da3e6b3f70db6ebb", + "md5": "3b123337b07efb6b47c98e81aed351c1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/ReactBaseClasses.js", + "type": "file", + "name": "ReactBaseClasses.js", + "base_name": "ReactBaseClasses", + "extension": ".js", + "size": 5829, + "date": "2018-03-12", + "sha1": "4cbcbb6ae5155cc50358e7649d40ecf088162da0", + "md5": "d37104743cf4901f84768b76af481ebc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/ReactDOM.d.ts", + "type": "file", + "name": "ReactDOM.d.ts", + "base_name": "ReactDOM.d", + "extension": ".ts", + "size": 559, + "date": "2018-03-12", + "sha1": "eadc38817bda0ab3bbb2e8638efe058834963d39", + "md5": "dbf410331a18fbde873c4c1b6cd09707", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/ReactNoopUpdateQueue.js", + "type": "file", + "name": "ReactNoopUpdateQueue.js", + "base_name": "ReactNoopUpdateQueue", + "extension": ".js", + "size": 3496, + "date": "2018-03-12", + "sha1": "cee1bcf7e3b5bd201349e6550d6af048be6cc389", + "md5": "8a36411ae9d028f9ab066dee92ea3b07", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 46183, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/__tests__/ReactClassEquivalence-test.js", + "type": "file", + "name": "ReactClassEquivalence-test.js", + "base_name": "ReactClassEquivalence-test", + "extension": ".js", + "size": 1859, + "date": "2018-03-12", + "sha1": "b69eb4237992e0b4986b3112b4428e6b3dbdeb47", + "md5": "ca9709ffb29eae999bc47a9abf199f1c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/__tests__/ReactCoffeeScriptClass-test.coffee", + "type": "file", + "name": "ReactCoffeeScriptClass-test.coffee", + "base_name": "ReactCoffeeScriptClass-test", + "extension": ".coffee", + "size": 12151, + "date": "2018-03-12", + "sha1": "6bddfa956cc830f3db5615b79ed849d09a6b07d7", + "md5": "dedcfe561415e4f0d7d39e9fec24e7b5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "CoffeeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/__tests__/ReactES6Class-test.js", + "type": "file", + "name": "ReactES6Class-test.js", + "base_name": "ReactES6Class-test", + "extension": ".js", + "size": 13060, + "date": "2018-03-12", + "sha1": "965c7f5516653ff12c1cfdb856cacd08190d254d", + "md5": "593bd0fc265c926816a547a13ff1d770", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/__tests__/ReactPureComponent-test.js", + "type": "file", + "name": "ReactPureComponent-test.js", + "base_name": "ReactPureComponent-test", + "extension": ".js", + "size": 3660, + "date": "2018-03-12", + "sha1": "626ee4fa6f4545ee2029bd315bb2a1444be42480", + "md5": "90a54f4ddaea98dca50b33c59c17fb89", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/class/__tests__/ReactTypeScriptClass-test.ts", + "type": "file", + "name": "ReactTypeScriptClass-test.ts", + "base_name": "ReactTypeScriptClass-test", + "extension": ".ts", + "size": 15453, + "date": "2018-03-12", + "sha1": "c392a165c42e7043f0f99455e5ddfbb7a4dbaf69", + "md5": "15e7913fdc9302771389130f4375fbd4", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "TypeScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 8, + "end_line": 9, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 6, + "end_line": 6 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/element", + "type": "directory", + "name": "element", + "base_name": "element", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 19240, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/element/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 19240, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/element/__tests__/ReactJSXElement-test.js", + "type": "file", + "name": "ReactJSXElement-test.js", + "base_name": "ReactJSXElement-test", + "extension": ".js", + "size": 6224, + "date": "2018-03-12", + "sha1": "c00ae5eaecc9482950aaf6221cbba7c38a85f5bc", + "md5": "5960caf2bca0404ec3f02acac08871e5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/isomorphic/modern/element/__tests__/ReactJSXElementValidator-test.js", + "type": "file", + "name": "ReactJSXElementValidator-test.js", + "base_name": "ReactJSXElementValidator-test", + "extension": ".js", + "size": 13016, + "date": "2018-03-12", + "sha1": "b6dc791f390360ef9c00eeca35948bea83377ca1", + "md5": "c78d464ab2b864e280a78cc857a98919", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules", + "type": "directory", + "name": "node_modules", + "base_name": "node_modules", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 12, + "dirs_count": 6, + "size_count": 2236, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/README.md", + "type": "file", + "name": "README.md", + "base_name": "README", + "extension": ".md", + "size": 171, + "date": "2018-03-12", + "sha1": "a44c14cf6ca783b8784b68ef6a4dc4b164167db8", + "md5": "671bc0fa1a936e708d6c9907cd8dd43b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react", + "type": "directory", + "name": "react", + "base_name": "react", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 133, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 133, + "date": "2018-03-12", + "sha1": "046a1f8b9142c87964c26cf82d0a7fd00ce048df", + "md5": "30652cee1081f4846c8c0bfb6435e5b7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-art", + "type": "directory", + "name": "react-art", + "base_name": "react-art", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 141, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-art/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 141, + "date": "2018-03-12", + "sha1": "c4549b88207502d59bc8dd71edbf78e568fd7321", + "md5": "d968bc808094852ec7c038c0ed34812f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-dom", + "type": "directory", + "name": "react-dom", + "base_name": "react-dom", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 1212, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-dom/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 293, + "date": "2018-03-12", + "sha1": "c5d7bccc0e65f1aa474f6c58a1c7ce6ab16354a0", + "md5": "2c46ad0e7ce4177ac8f823d2757eeed1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-dom/server.browser.js", + "type": "file", + "name": "server.browser.js", + "base_name": "server.browser", + "extension": ".js", + "size": 309, + "date": "2018-03-12", + "sha1": "e00a6d1eac3c0d9405fa84c37d2efb828293bc00", + "md5": "7f50c055cacbefec33c532647e5f70ab", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-dom/server.js", + "type": "file", + "name": "server.js", + "base_name": "server", + "extension": ".js", + "size": 306, + "date": "2018-03-12", + "sha1": "62773f865d62ff87d55d8a14ca2548fd1fc8fe73", + "md5": "489e7d4e84c0a0b5371ecf6304b34c2f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-dom/test-utils.js", + "type": "file", + "name": "test-utils.js", + "base_name": "test-utils", + "extension": ".js", + "size": 142, + "date": "2018-03-12", + "sha1": "967b3f8b2408917b495b02aa99afbf5a90257167", + "md5": "859757fcd0c436d1b9358b60c079a1ad", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-dom/unstable-native-dependencies.js", + "type": "file", + "name": "unstable-native-dependencies.js", + "base_name": "unstable-native-dependencies", + "extension": ".js", + "size": 162, + "date": "2018-03-12", + "sha1": "73be9a54a897a013777e922ee658a8e6464654dd", + "md5": "813c102eae0aab169434e5cfb4b15390", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-native", + "type": "directory", + "name": "react-native", + "base_name": "react-native", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 144, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-native/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 144, + "date": "2018-03-12", + "sha1": "d4293c64929f2a14dd1e118418c8eda3af444129", + "md5": "320782e04d16720d5f79f560babe6700", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-noop-renderer", + "type": "directory", + "name": "react-noop-renderer", + "base_name": "react-noop-renderer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 137, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-noop-renderer/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 137, + "date": "2018-03-12", + "sha1": "9f28884eef6dcd7853e7ef0cbb3e8079dc34ced7", + "md5": "6df82981b86603c24431274eb928b357", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-test-renderer", + "type": "directory", + "name": "react-test-renderer", + "base_name": "react-test-renderer", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 298, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-test-renderer/index.js", + "type": "file", + "name": "index.js", + "base_name": "index", + "extension": ".js", + "size": 150, + "date": "2018-03-12", + "sha1": "02b8261634ce741566c8977f88652edba39afbc4", + "md5": "a56a24e0485ac3bf27f483a83dc9c76b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/node_modules/react-test-renderer/shallow.js", + "type": "file", + "name": "shallow.js", + "base_name": "shallow", + "extension": ".js", + "size": 148, + "date": "2018-03-12", + "sha1": "f0c49524958240659da1b78f390e092a69eb0d59", + "md5": "b6e6a29712b2d1bb48690914584b19ca", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [ + { + "statements": [ + "Copyright 2016-present Facebook." + ], + "holders": [ + "Facebook." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers", + "type": "directory", + "name": "renderers", + "base_name": "renderers", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 321, + "dirs_count": 50, + "size_count": 2501290, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 24, + "dirs_count": 0, + "size_count": 405078, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/EventPluginHub-test.js", + "type": "file", + "name": "EventPluginHub-test.js", + "base_name": "EventPluginHub-test", + "extension": ".js", + "size": 1522, + "date": "2018-03-12", + "sha1": "4eceffa028a624353bfd5b4869a40f9041956498", + "md5": "0203c1037f4fcdb29f9ff51e3495f043", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/multiple-copies-of-react-test.js", + "type": "file", + "name": "multiple-copies-of-react-test.js", + "base_name": "multiple-copies-of-react-test", + "extension": ".js", + "size": 1492, + "date": "2018-03-12", + "sha1": "971ca0d4a0c0129c9a0037f1c8c9b91ef6d0d163", + "md5": "8298b226c1bd0966ff30b89e62c5e800", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactChildReconciler-test.js", + "type": "file", + "name": "ReactChildReconciler-test.js", + "base_name": "ReactChildReconciler-test", + "extension": ".js", + "size": 4817, + "date": "2018-03-12", + "sha1": "90f797c3ca5d14305ab856b4a38a675f92b266df", + "md5": "52e5b81e65c0a3e52d5887775473251b", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactComponent-test.js", + "type": "file", + "name": "ReactComponent-test.js", + "base_name": "ReactComponent-test", + "extension": ".js", + "size": 16809, + "date": "2018-03-12", + "sha1": "5dac42a6e95afe4aaa0d783a08825a3a2ad74d5f", + "md5": "e4cebb87a42e0ce59b1e494d099b7fc6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactComponentLifeCycle-test.js", + "type": "file", + "name": "ReactComponentLifeCycle-test.js", + "base_name": "ReactComponentLifeCycle-test", + "extension": ".js", + "size": 18588, + "date": "2018-03-12", + "sha1": "d62ae12712550a88950f4e895b31e9e422ae4f60", + "md5": "6c87f3bb2bdac8cb2417ce973cd72bed", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactComponentTreeHook-test.js", + "type": "file", + "name": "ReactComponentTreeHook-test.js", + "base_name": "ReactComponentTreeHook-test", + "extension": ".js", + "size": 53957, + "date": "2018-03-12", + "sha1": "9a6b54426f3f30fb767a0883a55ee6728b845059", + "md5": "140636da73d5b3a4b6fa072790c75240", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactCompositeComponent-test.js", + "type": "file", + "name": "ReactCompositeComponent-test.js", + "base_name": "ReactCompositeComponent-test", + "extension": ".js", + "size": 39641, + "date": "2018-03-12", + "sha1": "16618b6b4dcc7a70274df5d42ed057212d3e9ed7", + "md5": "90373414aa2e0ffa477fcd3a2ba9cf10", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactCompositeComponentDOMMinimalism-test.js", + "type": "file", + "name": "ReactCompositeComponentDOMMinimalism-test.js", + "base_name": "ReactCompositeComponentDOMMinimalism-test", + "extension": ".js", + "size": 2475, + "date": "2018-03-12", + "sha1": "ad415c14be52607a1ba97c559be82c95b737aca5", + "md5": "281452666d44fe43d58e4b1199e11832", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactCompositeComponentNestedState-test.js", + "type": "file", + "name": "ReactCompositeComponentNestedState-test.js", + "base_name": "ReactCompositeComponentNestedState-test", + "extension": ".js", + "size": 3501, + "date": "2018-03-12", + "sha1": "63620907c04807bf186bfb6fe5b5ef0e1146730f", + "md5": "0d5df41d107ccc9197186da959e33ea9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactCompositeComponentState-test.js", + "type": "file", + "name": "ReactCompositeComponentState-test.js", + "base_name": "ReactCompositeComponentState-test", + "extension": ".js", + "size": 15279, + "date": "2018-03-12", + "sha1": "fd0804244598f0a25dd0e2aaa347c894348711eb", + "md5": "6036f31c32641e9b4d84701705605641", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactEmptyComponent-test.js", + "type": "file", + "name": "ReactEmptyComponent-test.js", + "base_name": "ReactEmptyComponent-test", + "extension": ".js", + "size": 8577, + "date": "2018-03-12", + "sha1": "9dd42510f331e6dd114806e84a4674c0e79d6d42", + "md5": "c5bacd91d5a3ae4cba8edafb7625a2bf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactErrorBoundaries-test.js", + "type": "file", + "name": "ReactErrorBoundaries-test.js", + "base_name": "ReactErrorBoundaries-test", + "extension": ".js", + "size": 74178, + "date": "2018-03-12", + "sha1": "28b64229b278d6fcee0ddb3effd7b1999aff251b", + "md5": "d3d006c5aef8d1920c57a15c6f400ae1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactHostOperationHistoryHook-test.js", + "type": "file", + "name": "ReactHostOperationHistoryHook-test.js", + "base_name": "ReactHostOperationHistoryHook-test", + "extension": ".js", + "size": 22563, + "date": "2018-03-12", + "sha1": "c570fad1a2463d678761f79a05b877e50f7d1278", + "md5": "e355c8d3981cad701a25ca91a74006db", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactIdentity-test.js", + "type": "file", + "name": "ReactIdentity-test.js", + "base_name": "ReactIdentity-test", + "extension": ".js", + "size": 6510, + "date": "2018-03-12", + "sha1": "cc3154580bfa068988052bf2dbbb847722e06cf5", + "md5": "9389f520dbb7fa3920c72d11e62e5827", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactMockedComponent-test.js", + "type": "file", + "name": "ReactMockedComponent-test.js", + "base_name": "ReactMockedComponent-test", + "extension": ".js", + "size": 2966, + "date": "2018-03-12", + "sha1": "e8f2f963be4c8457062ccae02465768704370c00", + "md5": "ec6dd590a5cb211add8fb1d7883363c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactMultiChild-test.js", + "type": "file", + "name": "ReactMultiChild-test.js", + "base_name": "ReactMultiChild-test", + "extension": ".js", + "size": 11486, + "date": "2018-03-12", + "sha1": "4d56432af853e8c8ef4ff6c753c674398fb9dd80", + "md5": "6f3cfda0c822b145f41a1975b5711791", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactMultiChildReconcile-test.js", + "type": "file", + "name": "ReactMultiChildReconcile-test.js", + "base_name": "ReactMultiChildReconcile-test", + "extension": ".js", + "size": 21848, + "date": "2018-03-12", + "sha1": "74f22140532660ed17c3947d6126b2935de5f428", + "md5": "6b4103fa0bbdf43fef9ccd8fcd2f85d3", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactMultiChildText-test.js", + "type": "file", + "name": "ReactMultiChildText-test.js", + "base_name": "ReactMultiChildText-test", + "extension": ".js", + "size": 7530, + "date": "2018-03-12", + "sha1": "22a3a33a4fa8704c5bb146f9a35138b524141ec1", + "md5": "e81d4696d2f44a6b1a47f3bd66004526", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactPerf-test.js", + "type": "file", + "name": "ReactPerf-test.js", + "base_name": "ReactPerf-test", + "extension": ".js", + "size": 19711, + "date": "2018-03-12", + "sha1": "63b2486758467d9be8549fd004ba46c74f819801", + "md5": "63118815023a9d30841c27768a32bb3f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactStatelessComponent-test.js", + "type": "file", + "name": "ReactStatelessComponent-test.js", + "base_name": "ReactStatelessComponent-test", + "extension": ".js", + "size": 13154, + "date": "2018-03-12", + "sha1": "b4489ba622b141cb52d0ece262cbfff6937fefd4", + "md5": "f3213d927b9a5b57453fa839ca12d7ef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactTreeTraversal-test.js", + "type": "file", + "name": "ReactTreeTraversal-test.js", + "base_name": "ReactTreeTraversal-test", + "extension": ".js", + "size": 8377, + "date": "2018-03-12", + "sha1": "d7ed0b29bff8a45c4f14f7dee05f862c4a8111be", + "md5": "00a2892ec4ecf75c46fd53848874aae4", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/ReactUpdates-test.js", + "type": "file", + "name": "ReactUpdates-test.js", + "base_name": "ReactUpdates-test", + "extension": ".js", + "size": 30857, + "date": "2018-03-12", + "sha1": "7611a3d9a3eaa9dad6879b9155b7ce2fac861574", + "md5": "df4e8d86930b2f893f6b079b95f47aef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/refs-destruction-test.js", + "type": "file", + "name": "refs-destruction-test.js", + "base_name": "refs-destruction-test", + "extension": ".js", + "size": 3263, + "date": "2018-03-12", + "sha1": "99afc3b6886c319686c62fa1a96ec70affd42b81", + "md5": "b72d4ea27a3397e8bab35bb2df416027", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/__tests__/refs-test.js", + "type": "file", + "name": "refs-test.js", + "base_name": "refs-test", + "extension": ".js", + "size": 15977, + "date": "2018-03-12", + "sha1": "47f411ed510fb1cea2365266cf3dfcc515435838", + "md5": "be6e4dd21e55c365b951a80b263ecca9", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/art", + "type": "directory", + "name": "art", + "base_name": "art", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 21345, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/art/ReactARTFiberEntry.js", + "type": "file", + "name": "ReactARTFiberEntry.js", + "base_name": "ReactARTFiberEntry", + "extension": ".js", + "size": 13168, + "date": "2018-03-12", + "sha1": "9e28d86a8ca3ea66f34f792b24e0a93d95f05dd4", + "md5": "a014c42c67192aa2398b02057185e6b3", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/art/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 8177, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/art/__tests__/ReactART-test.js", + "type": "file", + "name": "ReactART-test.js", + "base_name": "ReactART-test", + "extension": ".js", + "size": 8177, + "date": "2018-03-12", + "sha1": "1d3e012dfd0b77d93fbd2dc7c085c8189eb0a68c", + "md5": "f7ccf11b11d3e63fac751bb306fc0d64", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom", + "type": "directory", + "name": "dom", + "base_name": "dom", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 150, + "dirs_count": 21, + "size_count": 1021461, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/ReactDOMNodeStreamRenderer.js", + "type": "file", + "name": "ReactDOMNodeStreamRenderer.js", + "base_name": "ReactDOMNodeStreamRenderer", + "extension": ".js", + "size": 1632, + "date": "2018-03-12", + "sha1": "787f81ca3edcfba191969b2850ee6efc824dd2f0", + "md5": "0dd09dd19063ce59af754630d9899300", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/ReactDOMServerBrowserEntry.js", + "type": "file", + "name": "ReactDOMServerBrowserEntry.js", + "base_name": "ReactDOMServerBrowserEntry", + "extension": ".js", + "size": 1066, + "date": "2018-03-12", + "sha1": "ee0957f3ac164a52a5a7cfd0762e53ed1ebbb9c4", + "md5": "5ebf46d9da9032510b8f96525da9365a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/ReactDOMServerNodeEntry.js", + "type": "file", + "name": "ReactDOMServerNodeEntry.js", + "base_name": "ReactDOMServerNodeEntry", + "extension": ".js", + "size": 780, + "date": "2018-03-12", + "sha1": "4442927ca95987fa20837de5243d4580a3dcef11", + "md5": "065bd5769cdf59ce11f57e919066b7fe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/ReactDOMServerStackEntry.js", + "type": "file", + "name": "ReactDOMServerStackEntry.js", + "base_name": "ReactDOMServerStackEntry", + "extension": ".js", + "size": 1153, + "date": "2018-03-12", + "sha1": "c7298603c6f70dceae905a19648092fb8d726630", + "md5": "d85f4e2ffbf655bfce45ae29b58dedff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/ReactDOMStackEntry.js", + "type": "file", + "name": "ReactDOMStackEntry.js", + "base_name": "ReactDOMStackEntry", + "extension": ".js", + "size": 5781, + "date": "2018-03-12", + "sha1": "f307fbe093650a66cdebafca66bdcb77bdb338d5", + "md5": "fe73c54d016b68557a5c37b0e3d7cde3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/ReactDOMStringRenderer.js", + "type": "file", + "name": "ReactDOMStringRenderer.js", + "base_name": "ReactDOMStringRenderer", + "extension": ".js", + "size": 1126, + "date": "2018-03-12", + "sha1": "c9f358a82967295cc380b4599aa554c0dbb54823", + "md5": "4d34e1b113b484d3af5c13dd038c13a4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 8708, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/__tests__/ReactDOMProduction-test.js", + "type": "file", + "name": "ReactDOMProduction-test.js", + "base_name": "ReactDOMProduction-test", + "extension": ".js", + "size": 8708, + "date": "2018-03-12", + "sha1": "fdc30139efdbbff47e304416d7395d871b2aa70d", + "md5": "64b08369d9e6709deb5afbee2c41aa4f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber", + "type": "directory", + "name": "fiber", + "base_name": "fiber", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 2, + "size_count": 135593, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/ReactDOMFiberComponent.js", + "type": "file", + "name": "ReactDOMFiberComponent.js", + "base_name": "ReactDOMFiberComponent", + "extension": ".js", + "size": 40330, + "date": "2018-03-12", + "sha1": "3effb18b7dd4369a567530978857c2e2abb769a2", + "md5": "f85d558e6895c9023ccd80e0b88b1109", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/ReactDOMFiberEntry.js", + "type": "file", + "name": "ReactDOMFiberEntry.js", + "base_name": "ReactDOMFiberEntry", + "extension": ".js", + "size": 24714, + "date": "2018-03-12", + "sha1": "c468de4ead2dce6ba8e88e8a1636be482b7b1d93", + "md5": "ffdd82413b66ef82d3a0e4b3d3b670f4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 43980, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/__tests__/ReactDOMFiber-test.js", + "type": "file", + "name": "ReactDOMFiber-test.js", + "base_name": "ReactDOMFiber-test", + "extension": ".js", + "size": 35234, + "date": "2018-03-12", + "sha1": "47fdb02898849c48024e7527e2e4234d4df416e9", + "md5": "c286e6c8cb2c578f8422bc9eacfadf2e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/__tests__/ReactDOMFiberAsync-test.js", + "type": "file", + "name": "ReactDOMFiberAsync-test.js", + "base_name": "ReactDOMFiberAsync-test", + "extension": ".js", + "size": 8746, + "date": "2018-03-12", + "sha1": "975ffb9308f81872967dcfec0f824c5256630e74", + "md5": "5c7432594a86dea93f96050179cc065e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/wrappers", + "type": "directory", + "name": "wrappers", + "base_name": "wrappers", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 26569, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/wrappers/ReactDOMFiberInput.js", + "type": "file", + "name": "ReactDOMFiberInput.js", + "base_name": "ReactDOMFiberInput", + "extension": ".js", + "size": 12390, + "date": "2018-03-12", + "sha1": "7d712728f6e3f09f371accca380c9962c654cfae", + "md5": "ca4adacc07e751835c4136471139327b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/wrappers/ReactDOMFiberOption.js", + "type": "file", + "name": "ReactDOMFiberOption.js", + "base_name": "ReactDOMFiberOption", + "extension": ".js", + "size": 1783, + "date": "2018-03-12", + "sha1": "a02e553737eb940b3a6409d30e50269c7e36a4ca", + "md5": "9adf0ef4d3f559747228a508bd0ecbbb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/wrappers/ReactDOMFiberSelect.js", + "type": "file", + "name": "ReactDOMFiberSelect.js", + "base_name": "ReactDOMFiberSelect", + "extension": ".js", + "size": 6557, + "date": "2018-03-12", + "sha1": "f271c2b631bb2785d975c93e73835e7a08fefff0", + "md5": "b93c14945f1282efaef96f7d53e78a32", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/fiber/wrappers/ReactDOMFiberTextarea.js", + "type": "file", + "name": "ReactDOMFiberTextarea.js", + "base_name": "ReactDOMFiberTextarea", + "extension": ".js", + "size": 5839, + "date": "2018-03-12", + "sha1": "748e53443b3f016d11677f8855fc57c3d7a80c67", + "md5": "2edd2834f4a62fa694f859abe693f647", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 112, + "dirs_count": 10, + "size_count": 702839, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/checkReact.js", + "type": "file", + "name": "checkReact.js", + "base_name": "checkReact", + "extension": ".js", + "size": 437, + "date": "2018-03-12", + "sha1": "34a342d6d66b5f27dd27694226ba7a609cb43316", + "md5": "0602250b168b54c74d958aa75afbc3b3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/createMicrosoftUnsafeLocalFunction.js", + "type": "file", + "name": "createMicrosoftUnsafeLocalFunction.js", + "base_name": "createMicrosoftUnsafeLocalFunction", + "extension": ".js", + "size": 739, + "date": "2018-03-12", + "sha1": "65c5865542c818bf394305ff101624494b7a52b7", + "md5": "ef2d63a3afe5f73fc68f1e93b08989fa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/CSSProperty.js", + "type": "file", + "name": "CSSProperty.js", + "base_name": "CSSProperty", + "extension": ".js", + "size": 3734, + "date": "2018-03-12", + "sha1": "28bd6a08971f22ceb814dc810bb699a59c4c7be6", + "md5": "050b4ac1680a3eed975c39bf16652641", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/CSSPropertyOperations.js", + "type": "file", + "name": "CSSPropertyOperations.js", + "base_name": "CSSPropertyOperations", + "extension": ".js", + "size": 3444, + "date": "2018-03-12", + "sha1": "b36208ce177711933c3ab3fa4f65359326de7992", + "md5": "ff355bd117bbdc11b419bfd8b01b5942", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/dangerousStyleValue.js", + "type": "file", + "name": "dangerousStyleValue.js", + "base_name": "dangerousStyleValue", + "extension": ".js", + "size": 1800, + "date": "2018-03-12", + "sha1": "a4a8cfa21f2e8922967cd6e5d8eb7a6603ab8705", + "md5": "cfd019c76ea7b449e294d7f1f3349ae2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/DOMMarkupOperations.js", + "type": "file", + "name": "DOMMarkupOperations.js", + "base_name": "DOMMarkupOperations", + "extension": ".js", + "size": 3624, + "date": "2018-03-12", + "sha1": "0aee26111e9b727dd3d104c7a7b44b15cf173f19", + "md5": "ced8cfedb8e7aa113e4721502945df16", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/DOMNamespaces.js", + "type": "file", + "name": "DOMNamespaces.js", + "base_name": "DOMNamespaces", + "extension": ".js", + "size": 1354, + "date": "2018-03-12", + "sha1": "1b260e7d2381faf43cf5a3dcf3d9d3548b8d172b", + "md5": "e06ab4b8a0b6b78aada9fd13cb95560d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/DOMProperty.js", + "type": "file", + "name": "DOMProperty.js", + "base_name": "DOMProperty", + "extension": ".js", + "size": 8738, + "date": "2018-03-12", + "sha1": "4fee289ce28da6c54a7d58afff7ad35c933d3e04", + "md5": "e920b7f25bb93a805bc6871acc7fd6ce", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/DOMPropertyOperations.js", + "type": "file", + "name": "DOMPropertyOperations.js", + "base_name": "DOMPropertyOperations", + "extension": ".js", + "size": 8887, + "date": "2018-03-12", + "sha1": "f780b84dd26f118c0e1e0b95e6a9075388cd21fe", + "md5": "6dc1d6ecff2fe87ceb4a2c07162bef42", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/escapeTextContentForBrowser.js", + "type": "file", + "name": "escapeTextContentForBrowser.js", + "base_name": "escapeTextContentForBrowser", + "extension": ".js", + "size": 3317, + "date": "2018-03-12", + "sha1": "0ae25d456b395a7c0bfa75a661216fc832677913", + "md5": "1e73f539a9eacb6f3da64fa30730d7ea", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 95.43, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 30, + "matched_rule": { + "identifier": "mit_103.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + }, + { + "key": "mit", + "score": 15.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 7, + "end_line": 7, + "matched_rule": { + "identifier": "mit_27.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + }, + { + "statements": [ + "Copyright (c) 2012-2013 TJ Holowaychuk", + "Copyright (c) 2015 Andreas Lubbe", + "Copyright (c) 2015 Tiancheng Timothy Gu" + ], + "holders": [ + "TJ Holowaychuk", + "Andreas Lubbe", + "Tiancheng Timothy Gu" + ], + "authors": [], + "start_line": 9, + "end_line": 11 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/findDOMNode.js", + "type": "file", + "name": "findDOMNode.js", + "base_name": "findDOMNode", + "extension": ".js", + "size": 2561, + "date": "2018-03-12", + "sha1": "2215f78cfa7f3360198f33ca2c65b11a29b16ce8", + "md5": "6fdb2d0cbe7a1c81db3173ba8dd09c2e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/HTMLDOMPropertyConfig.js", + "type": "file", + "name": "HTMLDOMPropertyConfig.js", + "base_name": "HTMLDOMPropertyConfig", + "extension": ".js", + "size": 4647, + "date": "2018-03-12", + "sha1": "dd2df5084e2f61b94aee5c81f4a786db9192276b", + "md5": "69b85be76afb3eae336731a396e5e375", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/HTMLNodeType.js", + "type": "file", + "name": "HTMLNodeType.js", + "base_name": "HTMLNodeType", + "extension": ".js", + "size": 463, + "date": "2018-03-12", + "sha1": "f9ae370b51695989a47be7cd26ce6ca9fbc7fa40", + "md5": "8035053bdf32cbcff7cf6ab6e1db28a7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/inputValueTracking.js", + "type": "file", + "name": "inputValueTracking.js", + "base_name": "inputValueTracking", + "extension": ".js", + "size": 3278, + "date": "2018-03-12", + "sha1": "798383886b5da23b2c0b8dbdd46bbe6f098f0852", + "md5": "c98580b9ca322f2d6fbe15ca333cdf68", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/quoteAttributeValueForBrowser.js", + "type": "file", + "name": "quoteAttributeValueForBrowser.js", + "base_name": "quoteAttributeValueForBrowser", + "extension": ".js", + "size": 626, + "date": "2018-03-12", + "sha1": "d634a8f2f744db14bf192e6b8c0c22adf975c5ea", + "md5": "f26281ac7a424673512baa96fcf59426", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactBrowserEventEmitter.js", + "type": "file", + "name": "ReactBrowserEventEmitter.js", + "base_name": "ReactBrowserEventEmitter", + "extension": ".js", + "size": 8736, + "date": "2018-03-12", + "sha1": "f5f45b2baab9b23a4e456fb7042e77b8d65ee299", + "md5": "aad6dcd1e97f91a35e6dc9b19eac381c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactDOMClientInjection.js", + "type": "file", + "name": "ReactDOMClientInjection.js", + "base_name": "ReactDOMClientInjection", + "extension": ".js", + "size": 1560, + "date": "2018-03-12", + "sha1": "215f17b7f87dbc23ce6eea2cb72c3ad5530f546a", + "md5": "23152fb73f7c789205edc4ed9237e170", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactDOMComponentFlags.js", + "type": "file", + "name": "ReactDOMComponentFlags.js", + "base_name": "ReactDOMComponentFlags", + "extension": ".js", + "size": 351, + "date": "2018-03-12", + "sha1": "ffa2228fcf0aa3ae9fa86ce8f8f58cd81971e720", + "md5": "ec81a753a7b5b0d811afe754b5ccce66", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactDOMComponentTree.js", + "type": "file", + "name": "ReactDOMComponentTree.js", + "base_name": "ReactDOMComponentTree", + "extension": ".js", + "size": 7173, + "date": "2018-03-12", + "sha1": "bb0e5bc51af5b44f09d51bf8e34eb47f8efdb709", + "md5": "961cb79d406cd49007b75f9392aea1a8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactDOMEventListener.js", + "type": "file", + "name": "ReactDOMEventListener.js", + "base_name": "ReactDOMEventListener", + "extension": ".js", + "size": 6217, + "date": "2018-03-12", + "sha1": "2319b13e556ecd1f29e16a8e864327f035c7c32b", + "md5": "a75fd085eb20ce981043a118bb753134", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactDOMFeatureFlags.js", + "type": "file", + "name": "ReactDOMFeatureFlags.js", + "base_name": "ReactDOMFeatureFlags", + "extension": ".js", + "size": 363, + "date": "2018-03-12", + "sha1": "2f8ea0f05f061fc4dd42a9d91e67b619315679c0", + "md5": "fb555416417761587326ef0d23b7db31", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactDOMInjection.js", + "type": "file", + "name": "ReactDOMInjection.js", + "base_name": "ReactDOMInjection", + "extension": ".js", + "size": 543, + "date": "2018-03-12", + "sha1": "e0177d1a39a0b049ef3516a4e34a7893cdd89a65", + "md5": "5b75ef6e97e1dedcbdb127e0da39df10", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactDOMSelection.js", + "type": "file", + "name": "ReactDOMSelection.js", + "base_name": "ReactDOMSelection", + "extension": ".js", + "size": 4857, + "date": "2018-03-12", + "sha1": "219dccf9397fa787bf39cced3db921e6e047fe76", + "md5": "1578e97d5b4c232a2dc547ccd18a3914", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactDOMUnstableNativeDependenciesEntry.js", + "type": "file", + "name": "ReactDOMUnstableNativeDependenciesEntry.js", + "base_name": "ReactDOMUnstableNativeDependenciesEntry", + "extension": ".js", + "size": 935, + "date": "2018-03-12", + "sha1": "a6e4a3e2879349de5a125d3f4b12a9883ff83d3a", + "md5": "f21336bfc2a3aaea094389ce4f2dfb63", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/ReactInputSelection.js", + "type": "file", + "name": "ReactInputSelection.js", + "base_name": "ReactInputSelection", + "extension": ".js", + "size": 4105, + "date": "2018-03-12", + "sha1": "a3ae55a4714b17ee516f2f7bac0a5e78a336afc3", + "md5": "a8b217ae4fb2b18a4d1481f1ddb15535", + "mime_type": "text/x-pascal", + "file_type": "Pascal source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/renderSubtreeIntoContainer.js", + "type": "file", + "name": "renderSubtreeIntoContainer.js", + "base_name": "renderSubtreeIntoContainer", + "extension": ".js", + "size": 348, + "date": "2018-03-12", + "sha1": "6663f33a1ef74b24e1cdcc13840410776c2278cf", + "md5": "4a7453d3c8d84fe7d39b63bf08ea02d9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/setInnerHTML.js", + "type": "file", + "name": "setInnerHTML.js", + "base_name": "setInnerHTML", + "extension": ".js", + "size": 1246, + "date": "2018-03-12", + "sha1": "3ba8e5c12faa2ed88592671fc74898e1681a34dc", + "md5": "38453f241b9ea2a9850a7e18a025a137", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/setTextContent.js", + "type": "file", + "name": "setTextContent.js", + "base_name": "setTextContent", + "extension": ".js", + "size": 1443, + "date": "2018-03-12", + "sha1": "16366d859938a150478b95d7244a64fa16e0b0a6", + "md5": "5b03c2d92ba6d4db0d3a5d1ceafcb936", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/SVGDOMPropertyConfig.js", + "type": "file", + "name": "SVGDOMPropertyConfig.js", + "base_name": "SVGDOMPropertyConfig", + "extension": ".js", + "size": 3424, + "date": "2018-03-12", + "sha1": "3919fc5256638700537f44b19559cbde6789c4a8", + "md5": "ed1b3e736c7c59acd10962184d0ab86e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/validateDOMNesting.js", + "type": "file", + "name": "validateDOMNesting.js", + "base_name": "validateDOMNesting", + "extension": ".js", + "size": 15098, + "date": "2018-03-12", + "sha1": "d9b2f1c3fa15f1cc962ee46c127a3e8a0791d7db", + "md5": "c220effdcf89fc025755c38ac6186e3c", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/warnValidStyle.js", + "type": "file", + "name": "warnValidStyle.js", + "base_name": "warnValidStyle", + "extension": ".js", + "size": 4132, + "date": "2018-03-12", + "sha1": "2db66e9ccc76c700ab2216fdb14ed24535a32e16", + "md5": "38f4902a6c96f707e30944effc59b6e1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 24, + "dirs_count": 0, + "size_count": 343353, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/CSSPropertyOperations-test.js", + "type": "file", + "name": "CSSPropertyOperations-test.js", + "base_name": "CSSPropertyOperations-test", + "extension": ".js", + "size": 7855, + "date": "2018-03-12", + "sha1": "b88ff6c93c94f275744f9d084a021f6606464ff3", + "md5": "901d6b930ec2117db6b6a177e0426b23", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/DOMPropertyOperations-test.js", + "type": "file", + "name": "DOMPropertyOperations-test.js", + "base_name": "DOMPropertyOperations-test", + "extension": ".js", + "size": 6892, + "date": "2018-03-12", + "sha1": "876a09491d363548ad04e4b6af39092b295da93b", + "md5": "ae2b7ba4b686b5bee285b61a7c64ddc7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/escapeTextContentForBrowser-test.js", + "type": "file", + "name": "escapeTextContentForBrowser-test.js", + "base_name": "escapeTextContentForBrowser-test", + "extension": ".js", + "size": 1291, + "date": "2018-03-12", + "sha1": "7aa0b6c0f0572b9b87b85e3107d4139970d67783", + "md5": "f8496cba2c837b5d143b07e6fb381f46", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/findDOMNode-test.js", + "type": "file", + "name": "findDOMNode-test.js", + "base_name": "findDOMNode-test", + "extension": ".js", + "size": 2670, + "date": "2018-03-12", + "sha1": "043466836318ff18e23dd1d772f12dd0b0ad179e", + "md5": "07d259b7ad835d7e9ba8db950db489bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/inputValueTracking-test.js", + "type": "file", + "name": "inputValueTracking-test.js", + "base_name": "inputValueTracking-test", + "extension": ".js", + "size": 4879, + "date": "2018-03-12", + "sha1": "a936b5d05d5802e1caf20cf553d45fc944b8948a", + "md5": "bd5ba43a47b58cf39470f73e8e54928a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/quoteAttributeValueForBrowser-test.js", + "type": "file", + "name": "quoteAttributeValueForBrowser-test.js", + "base_name": "quoteAttributeValueForBrowser-test", + "extension": ".js", + "size": 1333, + "date": "2018-03-12", + "sha1": "cfe47908ef52f8688b09e09d17fb1a36f7aaa26a", + "md5": "d9344f5e2c2aa2843fa89dbbe96169fb", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactBrowserEventEmitter-test.js", + "type": "file", + "name": "ReactBrowserEventEmitter-test.js", + "base_name": "ReactBrowserEventEmitter-test", + "extension": ".js", + "size": 14333, + "date": "2018-03-12", + "sha1": "31d55ad3400b59641752b19aba62fb40ea805ae0", + "md5": "0733f9c3306fb9d933d0f6408f59ec39", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOM-test.js", + "type": "file", + "name": "ReactDOM-test.js", + "base_name": "ReactDOM-test", + "extension": ".js", + "size": 10821, + "date": "2018-03-12", + "sha1": "8d985a211177cc1a5a246bdd3c6680c941db1a04", + "md5": "1b35a2a16ccbb6a8c5b82b0fb9cb99a6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOMAttribute-test.js", + "type": "file", + "name": "ReactDOMAttribute-test.js", + "base_name": "ReactDOMAttribute-test", + "extension": ".js", + "size": 5434, + "date": "2018-03-12", + "sha1": "3e6e1bae110cff89a724b1230e167a0d5325c5be", + "md5": "c648d8da2fd044b9e2d403c03b580f8e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js", + "type": "file", + "name": "ReactDOMComponent-test.js", + "base_name": "ReactDOMComponent-test", + "extension": ".js", + "size": 83466, + "date": "2018-03-12", + "sha1": "0f34c54c832695bf694efaf9af54d0f1743752d3", + "md5": "da8f7ef7f50d5b3c7e104cb651c3a5c8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOMComponentTree-test.js", + "type": "file", + "name": "ReactDOMComponentTree-test.js", + "base_name": "ReactDOMComponentTree-test", + "extension": ".js", + "size": 3916, + "date": "2018-03-12", + "sha1": "09fa69fe3eba8dc89abe42674ef463e016fa4d3a", + "md5": "7920973c2ec84ef660bba5ddbb318519", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOMEventListener-test.js", + "type": "file", + "name": "ReactDOMEventListener-test.js", + "base_name": "ReactDOMEventListener-test", + "extension": ".js", + "size": 7585, + "date": "2018-03-12", + "sha1": "1e437029f6deb99f73ff40d02d5897c087c89d16", + "md5": "3089973713a53263fd6c113f8bb6bc00", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOMInvalidARIAHook-test.js", + "type": "file", + "name": "ReactDOMInvalidARIAHook-test.js", + "base_name": "ReactDOMInvalidARIAHook-test", + "extension": ".js", + "size": 3085, + "date": "2018-03-12", + "sha1": "a16e667b24bac48299281ad549a4ee49065404f8", + "md5": "9bb1ac9aa3ac088dfdd97e27169234e0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOMServerIntegration-test.js", + "type": "file", + "name": "ReactDOMServerIntegration-test.js", + "base_name": "ReactDOMServerIntegration-test", + "extension": ".js", + "size": 99625, + "date": "2018-03-12", + "sha1": "fe1f0a0d94ce60bd503f48e42e3b9e2d31f2218e", + "md5": "781e2f9e3e6fee71e2313c94562afa44", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOMSVG-test.js", + "type": "file", + "name": "ReactDOMSVG-test.js", + "base_name": "ReactDOMSVG-test", + "extension": ".js", + "size": 6806, + "date": "2018-03-12", + "sha1": "3ffdeaa529e3a8d7d344fd1517890c1ae3aed728", + "md5": "9fc8947b69b5112e7f88f67cd22263c3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactDOMTextComponent-test.js", + "type": "file", + "name": "ReactDOMTextComponent-test.js", + "base_name": "ReactDOMTextComponent-test", + "extension": ".js", + "size": 6798, + "date": "2018-03-12", + "sha1": "c060737e257a88f0c7302e35512e54db0723d561", + "md5": "e707df3a6c5e19ea45a001423785e4cf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactEventIndependence-test.js", + "type": "file", + "name": "ReactEventIndependence-test.js", + "base_name": "ReactEventIndependence-test", + "extension": ".js", + "size": 1843, + "date": "2018-03-12", + "sha1": "c0fe6bba238d3ad776a3cdaad8ad06ef8284edd9", + "md5": "6adf09968cc1640d81d65c101f046036", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactMount-test.js", + "type": "file", + "name": "ReactMount-test.js", + "base_name": "ReactMount-test", + "extension": ".js", + "size": 14232, + "date": "2018-03-12", + "sha1": "8756dee79580c0899ee9c2febebe4e9f781ece75", + "md5": "c0eb374ceecd610386c04d1ae504276a", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactMountDestruction-test.js", + "type": "file", + "name": "ReactMountDestruction-test.js", + "base_name": "ReactMountDestruction-test", + "extension": ".js", + "size": 3107, + "date": "2018-03-12", + "sha1": "172e2c59ae0b7ebd60715df684e887bc38c24f0e", + "md5": "513b020bddfbcc3bcb73fe6105e54def", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactRenderDocument-test.js", + "type": "file", + "name": "ReactRenderDocument-test.js", + "base_name": "ReactRenderDocument-test", + "extension": ".js", + "size": 17351, + "date": "2018-03-12", + "sha1": "1b8788d7a4f3559a10da32f9b54939f6814de6a9", + "md5": "07ff72470be12eb64f917bbb77d64bb8", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactServerRendering-test.js", + "type": "file", + "name": "ReactServerRendering-test.js", + "base_name": "ReactServerRendering-test", + "extension": ".js", + "size": 25418, + "date": "2018-03-12", + "sha1": "4a61e4ff3c8efc60ae6df693499a065a4883138f", + "md5": "c8c539403555f712269327e9145e3e94", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/ReactServerRenderingBrowser-test.js", + "type": "file", + "name": "ReactServerRenderingBrowser-test.js", + "base_name": "ReactServerRenderingBrowser-test", + "extension": ".js", + "size": 2129, + "date": "2018-03-12", + "sha1": "40a422d6930a86944cc62e9ee38f26e9cc2289e1", + "md5": "deab3b30556989314b68dc6531ac7967", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/renderSubtreeIntoContainer-test.js", + "type": "file", + "name": "renderSubtreeIntoContainer-test.js", + "base_name": "renderSubtreeIntoContainer-test", + "extension": ".js", + "size": 8716, + "date": "2018-03-12", + "sha1": "a4489e5de0dde7a39958cd06c5096a440405322f", + "md5": "5a1376f79c4d20a0b8434cacb4ffc082", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/__tests__/validateDOMNesting-test.js", + "type": "file", + "name": "validateDOMNesting-test.js", + "base_name": "validateDOMNesting-test", + "extension": ".js", + "size": 3768, + "date": "2018-03-12", + "sha1": "1131b2c2d48cfb68ab9593cbb1c9083ca0dd934f", + "md5": "c24122767627bc4a56d3a017fcb9e376", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins", + "type": "directory", + "name": "eventPlugins", + "base_name": "eventPlugins", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 14, + "dirs_count": 1, + "size_count": 74391, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/BeforeInputEventPlugin.js", + "type": "file", + "name": "BeforeInputEventPlugin.js", + "base_name": "BeforeInputEventPlugin", + "extension": ".js", + "size": 14180, + "date": "2018-03-12", + "sha1": "e623c2d4148b7806d576808c921e4c4357c16c63", + "md5": "fcee1a2c702cfe4b022fb75bfc7a5b8c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/ChangeEventPlugin.js", + "type": "file", + "name": "ChangeEventPlugin.js", + "base_name": "ChangeEventPlugin", + "extension": ".js", + "size": 9612, + "date": "2018-03-12", + "sha1": "32ef48344f43b771ee4a2b322b45620c89a6e8a0", + "md5": "7d0ba49339007ece63104b050bd99507", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/DOMEventPluginOrder.js", + "type": "file", + "name": "DOMEventPluginOrder.js", + "base_name": "DOMEventPluginOrder", + "extension": ".js", + "size": 1003, + "date": "2018-03-12", + "sha1": "af3703ec5d32ed24ac8d8116226aa667996a931a", + "md5": "88fbc8819c0fe2ad02c1f32e397fc819", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/EnterLeaveEventPlugin.js", + "type": "file", + "name": "EnterLeaveEventPlugin.js", + "base_name": "EnterLeaveEventPlugin", + "extension": ".js", + "size": 3212, + "date": "2018-03-12", + "sha1": "1787429e6bc0edd5d800b5d0c26851e242e63370", + "md5": "f387eed713091f0ef09d22c0795d6773", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/FallbackCompositionState.js", + "type": "file", + "name": "FallbackCompositionState.js", + "base_name": "FallbackCompositionState", + "extension": ".js", + "size": 2189, + "date": "2018-03-12", + "sha1": "56d328ed89d95897a0c30f5ed2e8415297e64f1d", + "md5": "b50d94745f1d1592d8baddfc4be36335", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/SelectEventPlugin.js", + "type": "file", + "name": "SelectEventPlugin.js", + "base_name": "SelectEventPlugin", + "extension": ".js", + "size": 6223, + "date": "2018-03-12", + "sha1": "6265223d2788ba23d3380a1dd905617b0a680cc2", + "md5": "33a6088ca663c71fe628f3c3ba7c611d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/SimpleEventPlugin.js", + "type": "file", + "name": "SimpleEventPlugin.js", + "base_name": "SimpleEventPlugin", + "extension": ".js", + "size": 7003, + "date": "2018-03-12", + "sha1": "04d496c643b5969ce758c0109c8a4a954575f814", + "md5": "ef2c49efaffb1698f8e8a26f5d7eb07d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/TapEventPlugin.js", + "type": "file", + "name": "TapEventPlugin.js", + "base_name": "TapEventPlugin", + "extension": ".js", + "size": 4030, + "date": "2018-03-12", + "sha1": "65b4877d0276a5db51333978201ea5560bb3d211", + "md5": "a76bb1898e32d95271687d8ff67e4dba", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 26939, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/__tests__/BeforeInputEventPlugin-test.js", + "type": "file", + "name": "BeforeInputEventPlugin-test.js", + "base_name": "BeforeInputEventPlugin-test", + "extension": ".js", + "size": 8632, + "date": "2018-03-12", + "sha1": "58bf484390f3ffc654d4e7afdbdfdfde5cc1ef18", + "md5": "3a0e11ba76561d188e4acd7102a2b76b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/__tests__/ChangeEventPlugin-test.js", + "type": "file", + "name": "ChangeEventPlugin-test.js", + "base_name": "ChangeEventPlugin-test", + "extension": ".js", + "size": 5703, + "date": "2018-03-12", + "sha1": "5970e977232d360d2b1e2137b0f2915615410b02", + "md5": "99409cffacb9dde0699f2edbd440e386", + "mime_type": "text/x-pascal", + "file_type": "Pascal source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/__tests__/EnterLeaveEventPlugin-test.js", + "type": "file", + "name": "EnterLeaveEventPlugin-test.js", + "base_name": "EnterLeaveEventPlugin-test", + "extension": ".js", + "size": 1628, + "date": "2018-03-12", + "sha1": "f534d1adf583d5cb7757842c03c2d8cc1b0849e4", + "md5": "3014bf5c05e8f9d02eade1d51fab721b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/__tests__/FallbackCompositionState-test.js", + "type": "file", + "name": "FallbackCompositionState-test.js", + "base_name": "FallbackCompositionState-test", + "extension": ".js", + "size": 2628, + "date": "2018-03-12", + "sha1": "58ddf930af6d5c1c9afc55eff5e0e5339a5c28d4", + "md5": "4f4bd4cb37121bbead4292094a956f36", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/__tests__/SelectEventPlugin-test.js", + "type": "file", + "name": "SelectEventPlugin-test.js", + "base_name": "SelectEventPlugin-test", + "extension": ".js", + "size": 2533, + "date": "2018-03-12", + "sha1": "c3c8a016d8a07be42eb807b2b483333daa4b15fa", + "md5": "59ceaf1e505073723fb45023cddf61da", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/eventPlugins/__tests__/SimpleEventPlugin-test.js", + "type": "file", + "name": "SimpleEventPlugin-test.js", + "base_name": "SimpleEventPlugin-test", + "extension": ".js", + "size": 5815, + "date": "2018-03-12", + "sha1": "7a929eaa2d4493637515e707b8024adc442a4cf3", + "md5": "bdbe3593e4cbea13bd1081d1f8277c32", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/hooks", + "type": "directory", + "name": "hooks", + "base_name": "hooks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 29614, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/hooks/possibleStandardNames.js", + "type": "file", + "name": "possibleStandardNames.js", + "base_name": "possibleStandardNames", + "extension": ".js", + "size": 13483, + "date": "2018-03-12", + "sha1": "e2a5bdd9cbcb82ba698daa0b1a60a2095f48d0c9", + "md5": "441655d2a7307cecbc6eaebf57881d61", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/hooks/ReactDOMInvalidARIAHook.js", + "type": "file", + "name": "ReactDOMInvalidARIAHook.js", + "base_name": "ReactDOMInvalidARIAHook", + "extension": ".js", + "size": 4587, + "date": "2018-03-12", + "sha1": "178bb53b6f99ad3e3e45ab7c4da68edc914d53ac", + "md5": "0b79880be2cf06eb1bbf0222536f99b7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/hooks/ReactDOMNullInputValuePropHook.js", + "type": "file", + "name": "ReactDOMNullInputValuePropHook.js", + "base_name": "ReactDOMNullInputValuePropHook", + "extension": ".js", + "size": 1849, + "date": "2018-03-12", + "sha1": "145a08c240814a518f578d62153c64b65d5e3d9f", + "md5": "4dbdd3d18220f89480d1c5572a10bc86", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/hooks/ReactDOMUnknownPropertyHook.js", + "type": "file", + "name": "ReactDOMUnknownPropertyHook.js", + "base_name": "ReactDOMUnknownPropertyHook", + "extension": ".js", + "size": 8183, + "date": "2018-03-12", + "sha1": "147fd323dfdc15abe3c7fdd78408849788b401d5", + "md5": "9db6b53ebcb950d9b0ff7336ed98ae4c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/hooks/validAriaProperties.js", + "type": "file", + "name": "validAriaProperties.js", + "base_name": "validAriaProperties", + "extension": ".js", + "size": 1512, + "date": "2018-03-12", + "sha1": "473b4da84df8b00ee1fa6365a4f5218940ce7275", + "md5": "15fa866af3375cfa281a33e92e89bdf1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents", + "type": "directory", + "name": "syntheticEvents", + "base_name": "syntheticEvents", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 1, + "size_count": 32672, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticAnimationEvent.js", + "type": "file", + "name": "SyntheticAnimationEvent.js", + "base_name": "SyntheticAnimationEvent", + "extension": ".js", + "size": 1166, + "date": "2018-03-12", + "sha1": "dd5ed59191b68a803233757ba089a7ab36fc59c7", + "md5": "36047931783f15c1aaf7f6b5aabd8791", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticClipboardEvent.js", + "type": "file", + "name": "SyntheticClipboardEvent.js", + "base_name": "SyntheticClipboardEvent", + "extension": ".js", + "size": 1137, + "date": "2018-03-12", + "sha1": "45aa1d9dceb4b9b28bc1376cc233d0007f048f34", + "md5": "5ba41f65fd49336466aec896085ae130", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticCompositionEvent.js", + "type": "file", + "name": "SyntheticCompositionEvent.js", + "base_name": "SyntheticCompositionEvent", + "extension": ".js", + "size": 1065, + "date": "2018-03-12", + "sha1": "ed6b5d8a5ccfba8496c33920816507946a2b8667", + "md5": "113f395b9b77968d554cc25d3d2b87b6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticDragEvent.js", + "type": "file", + "name": "SyntheticDragEvent.js", + "base_name": "SyntheticDragEvent", + "extension": ".js", + "size": 1023, + "date": "2018-03-12", + "sha1": "1d475d1b076114c45a345405577698300d4eaa74", + "md5": "0b2ff4c61cbdc05c27285419ae5fd8d0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticFocusEvent.js", + "type": "file", + "name": "SyntheticFocusEvent.js", + "base_name": "SyntheticFocusEvent", + "extension": ".js", + "size": 1019, + "date": "2018-03-12", + "sha1": "285f8007747eb94bf482eba49f784c8ceaf893fe", + "md5": "640d24848cff30c523e65d3d8d392f5b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticInputEvent.js", + "type": "file", + "name": "SyntheticInputEvent.js", + "base_name": "SyntheticInputEvent", + "extension": ".js", + "size": 1042, + "date": "2018-03-12", + "sha1": "a4d99963c20157a22a472d27c1c07c78453a8c88", + "md5": "50c5d22c7b598f04f8809abf83afe117", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticKeyboardEvent.js", + "type": "file", + "name": "SyntheticKeyboardEvent.js", + "base_name": "SyntheticKeyboardEvent", + "extension": ".js", + "size": 2652, + "date": "2018-03-12", + "sha1": "c8fdbab8a517a0d2165523fc2352cfee4086b7aa", + "md5": "e398f209e7b7a54ea031589ae07fcdda", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticMouseEvent.js", + "type": "file", + "name": "SyntheticMouseEvent.js", + "base_name": "SyntheticMouseEvent", + "extension": ".js", + "size": 1491, + "date": "2018-03-12", + "sha1": "0416c225dc062d696d7736bf3675be5d9523df63", + "md5": "7952560c5d4b952f707084ee3878bb82", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticTouchEvent.js", + "type": "file", + "name": "SyntheticTouchEvent.js", + "base_name": "SyntheticTouchEvent", + "extension": ".js", + "size": 1228, + "date": "2018-03-12", + "sha1": "db4ec9a9fe4d7ef5925625c803bc42e4df477203", + "md5": "d3127fb3d07d379df6479e8246b80f43", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticTransitionEvent.js", + "type": "file", + "name": "SyntheticTransitionEvent.js", + "base_name": "SyntheticTransitionEvent", + "extension": ".js", + "size": 1184, + "date": "2018-03-12", + "sha1": "b29300b645f604d54c946bac8bbf50f9a9f72ab6", + "md5": "e7f34c108b5d024dec17bd0c14033d60", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticUIEvent.js", + "type": "file", + "name": "SyntheticUIEvent.js", + "base_name": "SyntheticUIEvent", + "extension": ".js", + "size": 1517, + "date": "2018-03-12", + "sha1": "ac80fce14c11804f66aaea87fdcc8c1d4d2db83b", + "md5": "ec6d2d5f6370e4a2f09b882e9c6fe802", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/SyntheticWheelEvent.js", + "type": "file", + "name": "SyntheticWheelEvent.js", + "base_name": "SyntheticWheelEvent", + "extension": ".js", + "size": 1935, + "date": "2018-03-12", + "sha1": "9c4d67bbdebcf150139b894640fc2c6cc529a2c4", + "md5": "289a42e9ff249a39532a1571a7bf5363", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 16213, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/__tests__/SyntheticClipboardEvent-test.js", + "type": "file", + "name": "SyntheticClipboardEvent-test.js", + "base_name": "SyntheticClipboardEvent-test", + "extension": ".js", + "size": 2366, + "date": "2018-03-12", + "sha1": "1fbb8a009e024aec7f93bc684dd0504b3fe09bc3", + "md5": "711d1ca57a77aff30811c733cdb0a88f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/__tests__/SyntheticEvent-test.js", + "type": "file", + "name": "SyntheticEvent-test.js", + "base_name": "SyntheticEvent-test", + "extension": ".js", + "size": 7786, + "date": "2018-03-12", + "sha1": "37ad6bf62ec34360d475bdef00e36ee2768fb1e6", + "md5": "0a7d53ee730ab3c61c68357d0d8d213b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/__tests__/SyntheticKeyboardEvent-test.js", + "type": "file", + "name": "SyntheticKeyboardEvent-test.js", + "base_name": "SyntheticKeyboardEvent-test", + "extension": ".js", + "size": 3893, + "date": "2018-03-12", + "sha1": "a9c06e1daddabd6651ba262b752bc6a0f16db88c", + "md5": "7e426fe219f464dc55f48e60591fee53", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/syntheticEvents/__tests__/SyntheticWheelEvent-test.js", + "type": "file", + "name": "SyntheticWheelEvent-test.js", + "base_name": "SyntheticWheelEvent-test", + "extension": ".js", + "size": 2168, + "date": "2018-03-12", + "sha1": "d85586bb6066d87acb146dfc32a27cf5d9f314fb", + "md5": "a462b05e585146b1a346e64ca6c75268", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils", + "type": "directory", + "name": "utils", + "base_name": "utils", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 17, + "dirs_count": 1, + "size_count": 27142, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/assertValidProps.js", + "type": "file", + "name": "assertValidProps.js", + "base_name": "assertValidProps", + "extension": ".js", + "size": 2476, + "date": "2018-03-12", + "sha1": "546a10a6711d2255db449c2b915bd32bcddee09a", + "md5": "96acef175f73f7f6e0a2d5b10ebef1b6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/AutoFocusUtils.js", + "type": "file", + "name": "AutoFocusUtils.js", + "base_name": "AutoFocusUtils", + "extension": ".js", + "size": 510, + "date": "2018-03-12", + "sha1": "123ec159d1cc0320bc0bf7b3ab42b6307c85a676", + "md5": "7ec10d13960fddd5456bcc419d71882d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/getEventCharCode.js", + "type": "file", + "name": "getEventCharCode.js", + "base_name": "getEventCharCode", + "extension": ".js", + "size": 1419, + "date": "2018-03-12", + "sha1": "2063b23fe47f2b7eb2c2fdc04b87a8ece63c3d83", + "md5": "635ce294933215d6f263a411e390f673", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/getEventKey.js", + "type": "file", + "name": "getEventKey.js", + "base_name": "getEventKey", + "extension": ".js", + "size": 2778, + "date": "2018-03-12", + "sha1": "47861a6b8916f0a23c02f0f5d10c1212c0501bd8", + "md5": "64573b743d082602393497ef024ebf78", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/getEventModifierState.js", + "type": "file", + "name": "getEventModifierState.js", + "base_name": "getEventModifierState", + "extension": ".js", + "size": 1146, + "date": "2018-03-12", + "sha1": "905af40713aa1f080119db0ce923e1e80f7e3c77", + "md5": "9ddd74200929bdcefc9bae416313cdff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/getEventTarget.js", + "type": "file", + "name": "getEventTarget.js", + "base_name": "getEventTarget", + "extension": ".js", + "size": 974, + "date": "2018-03-12", + "sha1": "0d004d031d8864fb4f46766f2a51112833e7a658", + "md5": "d6808abcb1643f48b7b9c8acd8236318", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/getNodeForCharacterOffset.js", + "type": "file", + "name": "getNodeForCharacterOffset.js", + "base_name": "getNodeForCharacterOffset", + "extension": ".js", + "size": 1593, + "date": "2018-03-12", + "sha1": "29cc520d9d083b03e1fb97740f2cad2f88c012c4", + "md5": "2c180d814f79be2875864b5b05626f1a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/getTextContentAccessor.js", + "type": "file", + "name": "getTextContentAccessor.js", + "base_name": "getTextContentAccessor", + "extension": ".js", + "size": 888, + "date": "2018-03-12", + "sha1": "c7751c33c360f43b589ff67169fbdff23659cb71", + "md5": "b31f05df5f26c16f7c8eb8d529b86e1f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/isCustomComponent.js", + "type": "file", + "name": "isCustomComponent.js", + "base_name": "isCustomComponent", + "extension": ".js", + "size": 1020, + "date": "2018-03-12", + "sha1": "b5a7587b5be91bb8676187a17aaf0288d46723a5", + "md5": "26c861d60e97ba59b787652172c8d76b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/isEventSupported.js", + "type": "file", + "name": "isEventSupported.js", + "base_name": "isEventSupported", + "extension": ".js", + "size": 1880, + "date": "2018-03-12", + "sha1": "33a2e9cca1ff7775e2c29ed12e5fb7c56b54e546", + "md5": "e2f45e1bf26c833214247667f4ea98b7", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/omittedCloseTags.js", + "type": "file", + "name": "omittedCloseTags.js", + "base_name": "omittedCloseTags", + "extension": ".js", + "size": 698, + "date": "2018-03-12", + "sha1": "ba6e5f703d8ac0b26e7ae50e99bb69f9093b7a28", + "md5": "bd5d02d97f9dfab7ae7e8417d93c1bac", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/ReactControlledValuePropTypes.js", + "type": "file", + "name": "ReactControlledValuePropTypes.js", + "base_name": "ReactControlledValuePropTypes", + "extension": ".js", + "size": 2845, + "date": "2018-03-12", + "sha1": "94ca540da225bea5c6ac11f823cbf2ef07436e1b", + "md5": "c1e58a0d71c1bab36d2ed7deb2fdba35", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/voidElementTags.js", + "type": "file", + "name": "voidElementTags.js", + "base_name": "voidElementTags", + "extension": ".js", + "size": 551, + "date": "2018-03-12", + "sha1": "fbf01bb6d74b2ecd3561a4cac655760d408bdc12", + "md5": "7f257996726fe4df0dbd294d3d9639e9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 8364, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/__tests__/getEventCharCode-test.js", + "type": "file", + "name": "getEventCharCode-test.js", + "base_name": "getEventCharCode-test", + "extension": ".js", + "size": 2563, + "date": "2018-03-12", + "sha1": "5ad22e447f34a31bb6422dd2e701dc1fae069add", + "md5": "6ff481ceb3c7a0510a3dc774a9ff0ac6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/__tests__/getEventKey-test.js", + "type": "file", + "name": "getEventKey-test.js", + "base_name": "getEventKey-test", + "extension": ".js", + "size": 2330, + "date": "2018-03-12", + "sha1": "f4dcb268b162380edfd4ec8f0633bed9b3d9ec4e", + "md5": "35df84e6caa6a943bbf0a67c782ff97d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/__tests__/getNodeForCharacterOffset-test.js", + "type": "file", + "name": "getNodeForCharacterOffset-test.js", + "base_name": "getNodeForCharacterOffset-test", + "extension": ".js", + "size": 2078, + "date": "2018-03-12", + "sha1": "bc3ebdc2bd65a757f3ba895e8fc46a0541c4f87a", + "md5": "fb9dd6eed3689a5b4ed235965f84aabc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/utils/__tests__/setInnerHTML-test.js", + "type": "file", + "name": "setInnerHTML-test.js", + "base_name": "setInnerHTML-test", + "extension": ".js", + "size": 1393, + "date": "2018-03-12", + "sha1": "6303ebcf6637b0ec81a0845cfb2a3c030dae3fb9", + "md5": "7ec72408bee78fa5007b8ffc6f09d40d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/wrappers", + "type": "directory", + "name": "wrappers", + "base_name": "wrappers", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 87487, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/wrappers/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 87487, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/wrappers/__tests__/ReactDOMIframe-test.js", + "type": "file", + "name": "ReactDOMIframe-test.js", + "base_name": "ReactDOMIframe-test", + "extension": ".js", + "size": 881, + "date": "2018-03-12", + "sha1": "a3500185bf75001a6fc30c026dbe140ed81a9685", + "md5": "5175c7d8b9abac8cd62b7a92b75ddc16", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/wrappers/__tests__/ReactDOMInput-test.js", + "type": "file", + "name": "ReactDOMInput-test.js", + "base_name": "ReactDOMInput-test", + "extension": ".js", + "size": 48531, + "date": "2018-03-12", + "sha1": "0a5ccbcd87cdc7936b035ec8166b88f0ebcd8c23", + "md5": "d7595059443009a925299cbb1fc16f78", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/wrappers/__tests__/ReactDOMOption-test.js", + "type": "file", + "name": "ReactDOMOption-test.js", + "base_name": "ReactDOMOption-test", + "extension": ".js", + "size": 3323, + "date": "2018-03-12", + "sha1": "176c4122e1397c18060cea3f0c29d4c9fc247ce6", + "md5": "fd6f9bfb71d4fd55464456fa67df7bfa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/wrappers/__tests__/ReactDOMSelect-test.js", + "type": "file", + "name": "ReactDOMSelect-test.js", + "base_name": "ReactDOMSelect-test", + "extension": ".js", + "size": 22775, + "date": "2018-03-12", + "sha1": "ff2c2a0cf84bd9779ce9e4a055546a6ece988984", + "md5": "dd0bfdca48d63bd6e586a49cbe03b815", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/shared/wrappers/__tests__/ReactDOMTextarea-test.js", + "type": "file", + "name": "ReactDOMTextarea-test.js", + "base_name": "ReactDOMTextarea-test", + "extension": ".js", + "size": 11977, + "date": "2018-03-12", + "sha1": "75db6ee64715631fe8e37add7026bfe394d62b0d", + "md5": "b73b5d7cce6d9df95f486758883f0965", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack", + "type": "directory", + "name": "stack", + "base_name": "stack", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 21, + "dirs_count": 3, + "size_count": 134957, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client", + "type": "directory", + "name": "client", + "base_name": "client", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 16, + "dirs_count": 1, + "size_count": 123033, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/Danger.js", + "type": "file", + "name": "Danger.js", + "base_name": "Danger", + "extension": ".js", + "size": 1959, + "date": "2018-03-12", + "sha1": "de7ab5cf9371abb3f50f17034ca0aba6c0aa8e4f", + "md5": "1af0a3bf91019dd3c96ddd215297ef44", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/DOMChildrenOperations.js", + "type": "file", + "name": "DOMChildrenOperations.js", + "base_name": "DOMChildrenOperations", + "extension": ".js", + "size": 7563, + "date": "2018-03-12", + "sha1": "49d91eff10a00eeed866e2c7dd01f94bc4797305", + "md5": "48e98efd94ba542607d13f0b36156a95", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/DOMLazyTree.js", + "type": "file", + "name": "DOMLazyTree.js", + "base_name": "DOMLazyTree", + "extension": ".js", + "size": 3672, + "date": "2018-03-12", + "sha1": "8a009e568fe5195f3b6c0ca4173fe6aabdc07977", + "md5": "14435ae9f4aad3bfc97332f42ce5c485", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactComponentBrowserEnvironment.js", + "type": "file", + "name": "ReactComponentBrowserEnvironment.js", + "base_name": "ReactComponentBrowserEnvironment", + "extension": ".js", + "size": 832, + "date": "2018-03-12", + "sha1": "292b269d241f7078411fcbf77b639e23f855ad81", + "md5": "783734baa8f72ea0ff1efa1294674285", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactDOMComponent.js", + "type": "file", + "name": "ReactDOMComponent.js", + "base_name": "ReactDOMComponent", + "extension": ".js", + "size": 39506, + "date": "2018-03-12", + "sha1": "28e5dc350a9469b5f1859ea080a8726bf5abff8d", + "md5": "087f773c5bdf34889b7c5568d6dd0c4c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactDOMContainerInfo.js", + "type": "file", + "name": "ReactDOMContainerInfo.js", + "base_name": "ReactDOMContainerInfo", + "extension": ".js", + "size": 903, + "date": "2018-03-12", + "sha1": "6cbe4b5407c8731e758c278764df720bb6df48c5", + "md5": "88a9e18b2340451ef84beeba2ce4b504", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactDOMEmptyComponent.js", + "type": "file", + "name": "ReactDOMEmptyComponent.js", + "base_name": "ReactDOMEmptyComponent", + "extension": ".js", + "size": 1801, + "date": "2018-03-12", + "sha1": "9fedf7683013fe435ecfb606418a69409e44d2d2", + "md5": "07de3422ee9daf58db025acf8c7abe04", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactDOMIDOperations.js", + "type": "file", + "name": "ReactDOMIDOperations.js", + "base_name": "ReactDOMIDOperations", + "extension": ".js", + "size": 870, + "date": "2018-03-12", + "sha1": "3491b34d86fdd43b2800b7a44743347963ee02fb", + "md5": "a0ca9d867cea4f63b5535acc0b3ec0fa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactDOMStackInjection.js", + "type": "file", + "name": "ReactDOMStackInjection.js", + "base_name": "ReactDOMStackInjection", + "extension": ".js", + "size": 1933, + "date": "2018-03-12", + "sha1": "a9c7c5d6a22378196fcbc7e6ceb611b4edee2f8d", + "md5": "23088fcf474f30561cad3b50ba4962d9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactDOMTextComponent.js", + "type": "file", + "name": "ReactDOMTextComponent.js", + "base_name": "ReactDOMTextComponent", + "extension": ".js", + "size": 5792, + "date": "2018-03-12", + "sha1": "ddfe7cfde7c2910536408478cae5693d9b2e5e7d", + "md5": "e1b78b50974804f2930418fa754bd667", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactMount.js", + "type": "file", + "name": "ReactMount.js", + "base_name": "ReactMount", + "extension": ".js", + "size": 25566, + "date": "2018-03-12", + "sha1": "c7cf3dcc1ff5835762dd2a2f28a580cf61640c1b", + "md5": "ba0a6d2a87810a77db4f35e37f7e3fff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/ReactReconcileTransaction.js", + "type": "file", + "name": "ReactReconcileTransaction.js", + "base_name": "ReactReconcileTransaction", + "extension": ".js", + "size": 5104, + "date": "2018-03-12", + "sha1": "0309c4fe4378c430cceb3b8ac18ef7d38211c4d8", + "md5": "fa6bd3d8aeaa34a171974d1e55caa098", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/wrappers", + "type": "directory", + "name": "wrappers", + "base_name": "wrappers", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 27532, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/wrappers/ReactDOMInput.js", + "type": "file", + "name": "ReactDOMInput.js", + "base_name": "ReactDOMInput", + "extension": ".js", + "size": 12411, + "date": "2018-03-12", + "sha1": "11d6efd90f9020a1e60c17d4f8bb4b07e38000df", + "md5": "983578982fd33d365db5c05162d2cced", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/wrappers/ReactDOMOption.js", + "type": "file", + "name": "ReactDOMOption.js", + "base_name": "ReactDOMOption", + "extension": ".js", + "size": 3495, + "date": "2018-03-12", + "sha1": "81b427a7fd1a0112b444cfdcb0bdddd0205e4741", + "md5": "994858def6ab0d3a87e35085a3cdf089", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/wrappers/ReactDOMSelect.js", + "type": "file", + "name": "ReactDOMSelect.js", + "base_name": "ReactDOMSelect", + "extension": ".js", + "size": 5968, + "date": "2018-03-12", + "sha1": "ed614aa59f7215afc67b7e436ec64a2e8b2afb18", + "md5": "6654f391b1483b0b6e57ff9c55f13728", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/client/wrappers/ReactDOMTextarea.js", + "type": "file", + "name": "ReactDOMTextarea.js", + "base_name": "ReactDOMTextarea", + "extension": ".js", + "size": 5658, + "date": "2018-03-12", + "sha1": "6135ab84c0efd2672d3a5e5b9df6721f0b2a3398", + "md5": "d54a6445ff3eaa1152888605883d20c2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/server", + "type": "directory", + "name": "server", + "base_name": "server", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 11924, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/server/ReactMarkupChecksum.js", + "type": "file", + "name": "ReactMarkupChecksum.js", + "base_name": "ReactMarkupChecksum", + "extension": ".js", + "size": 1425, + "date": "2018-03-12", + "sha1": "addbb4d88ab3ae50cb466fc103dcc57ec0b11291", + "md5": "1b05cb7f861711b52b867e070eac755f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/server/ReactServerBatchingStrategy.js", + "type": "file", + "name": "ReactServerBatchingStrategy.js", + "base_name": "ReactServerBatchingStrategy", + "extension": ".js", + "size": 540, + "date": "2018-03-12", + "sha1": "bd2bdde659d0252fda8176f1213ba9a22fc8bdf9", + "md5": "09ff410434de8ec6e66a7b39f325a769", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/server/ReactServerRendering.js", + "type": "file", + "name": "ReactServerRendering.js", + "base_name": "ReactServerRendering", + "extension": ".js", + "size": 3231, + "date": "2018-03-12", + "sha1": "fc94eed20d5007c37efaea686052cc4bae31fdde", + "md5": "7e5e6caa36535babcb98144281c21d1a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/server/ReactServerRenderingTransaction.js", + "type": "file", + "name": "ReactServerRenderingTransaction.js", + "base_name": "ReactServerRenderingTransaction", + "extension": ".js", + "size": 2141, + "date": "2018-03-12", + "sha1": "48d7292852cd8d96b88c049e0737e79e348ac0e5", + "md5": "07153d68a762a5a652aaee39166cecbc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/stack/server/ReactServerUpdateQueue.js", + "type": "file", + "name": "ReactServerUpdateQueue.js", + "base_name": "ReactServerUpdateQueue", + "extension": ".js", + "size": 4587, + "date": "2018-03-12", + "sha1": "150f1cd9c578c23cacb8cf52a2d0422aad23cfa3", + "md5": "c1930283aa5c495e7713742277482bc0", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/test", + "type": "directory", + "name": "test", + "base_name": "test", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 27826, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/test/ReactTestUtilsEntry.js", + "type": "file", + "name": "ReactTestUtilsEntry.js", + "base_name": "ReactTestUtilsEntry", + "extension": ".js", + "size": 16446, + "date": "2018-03-12", + "sha1": "50caed7508e243baf7957da0dc4bab061dddeecb", + "md5": "7f9e7035aeaea0811efaca32299f4af4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/test/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 11380, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/dom/test/__tests__/ReactTestUtils-test.js", + "type": "file", + "name": "ReactTestUtils-test.js", + "base_name": "ReactTestUtils-test", + "extension": ".js", + "size": 11380, + "date": "2018-03-12", + "sha1": "7ea4ac1b6745a8273d282ae075f2bd4d0f211ad3", + "md5": "65ad3fe0b1f7d066e87b81edcf5b48d8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native", + "type": "directory", + "name": "native", + "base_name": "native", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 29, + "dirs_count": 2, + "size_count": 108700, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/createReactNativeComponentClass.js", + "type": "file", + "name": "createReactNativeComponentClass.js", + "base_name": "createReactNativeComponentClass", + "extension": ".js", + "size": 905, + "date": "2018-03-12", + "sha1": "99711414b3cbb70b7922117ab6ee65c0f6a2bb8d", + "md5": "8b05e434e606c0a50f92b5334ae2f551", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/findNodeHandle.js", + "type": "file", + "name": "findNodeHandle.js", + "base_name": "findNodeHandle", + "extension": ".js", + "size": 4224, + "date": "2018-03-12", + "sha1": "1f36add5857a3b8f24e3232d0f2930842c654386", + "md5": "9fffa81251b8b410048be18dea05e4d6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/findNumericNodeHandle.js", + "type": "file", + "name": "findNumericNodeHandle.js", + "base_name": "findNumericNodeHandle", + "extension": ".js", + "size": 809, + "date": "2018-03-12", + "sha1": "09fe02bd6e8837a1e9960fef27f44edac33d9e14", + "md5": "dccef2085df2a9fc0bd3bb19a6d57483", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/NativeMethodsMixin.js", + "type": "file", + "name": "NativeMethodsMixin.js", + "base_name": "NativeMethodsMixin", + "extension": ".js", + "size": 6850, + "date": "2018-03-12", + "sha1": "2bd47963f5fa47a71228ee498283cced7d7c8aa4", + "md5": "34e0fff73dd9533af6ae14a4eca3c96e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/NativeMethodsMixinUtils.js", + "type": "file", + "name": "NativeMethodsMixinUtils.js", + "base_name": "NativeMethodsMixinUtils", + "extension": ".js", + "size": 2250, + "date": "2018-03-12", + "sha1": "0a7e9f3faac6fb4f6b3d79542daf92f00f93cfe7", + "md5": "87f960ed9baaa41efea0557e6d30e23a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeAttributePayload.js", + "type": "file", + "name": "ReactNativeAttributePayload.js", + "base_name": "ReactNativeAttributePayload", + "extension": ".js", + "size": 14526, + "date": "2018-03-12", + "sha1": "92614a56364b80122ff7e495e2f237b5373c62c1", + "md5": "b0d168f80d556084c2a14c39d391ee82", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeBridgeEventPlugin.js", + "type": "file", + "name": "ReactNativeBridgeEventPlugin.js", + "base_name": "ReactNativeBridgeEventPlugin", + "extension": ".js", + "size": 2789, + "date": "2018-03-12", + "sha1": "da1603d99c0693c931e9896ca095aca1c9778e57", + "md5": "8c0b2ab83fa2bba562ab03a9f6678766", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeComponent.js", + "type": "file", + "name": "ReactNativeComponent.js", + "base_name": "ReactNativeComponent", + "extension": ".js", + "size": 5681, + "date": "2018-03-12", + "sha1": "45798e4eb3919db9b199c56592692773c262007f", + "md5": "4a5319948053ad99b66e56f01a1b55d0", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeComponentTree.js", + "type": "file", + "name": "ReactNativeComponentTree.js", + "base_name": "ReactNativeComponentTree", + "extension": ".js", + "size": 2047, + "date": "2018-03-12", + "sha1": "82a751168b3bfa12fa5a64bbbd26975a6bf4afca", + "md5": "05e33ecad5a29ebfabb787bdff4348bc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeEventEmitter.js", + "type": "file", + "name": "ReactNativeEventEmitter.js", + "base_name": "ReactNativeEventEmitter", + "extension": ".js", + "size": 6631, + "date": "2018-03-12", + "sha1": "d1aa03e9c985f5daab9f03f09ac3208b4b4b9f4f", + "md5": "dcc1b1256cae853130a485b7cf20d035", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeEventPluginOrder.js", + "type": "file", + "name": "ReactNativeEventPluginOrder.js", + "base_name": "ReactNativeEventPluginOrder", + "extension": ".js", + "size": 403, + "date": "2018-03-12", + "sha1": "4038203e845fb6734d9535d8ef6f148cce318531", + "md5": "985ec9e6ffafd0ab3a054968899f1da3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeFiberEntry.js", + "type": "file", + "name": "ReactNativeFiberEntry.js", + "base_name": "ReactNativeFiberEntry", + "extension": ".js", + "size": 4616, + "date": "2018-03-12", + "sha1": "b6dad9b0d6baf4c1df75b2a642749e7c0bbeedfb", + "md5": "18685f030498e9a9d8daeb00202a728f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeFiberErrorDialog.js", + "type": "file", + "name": "ReactNativeFiberErrorDialog.js", + "base_name": "ReactNativeFiberErrorDialog", + "extension": ".js", + "size": 1658, + "date": "2018-03-12", + "sha1": "a9e3a76af6729cb6354a357862dcc563c01099f4", + "md5": "8a205d2c2743f3fc3d0206092c88b437", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeFiberHostComponent.js", + "type": "file", + "name": "ReactNativeFiberHostComponent.js", + "base_name": "ReactNativeFiberHostComponent", + "extension": ".js", + "size": 3007, + "date": "2018-03-12", + "sha1": "439b0725784bdb11ce45c76d90beaf51ae4f8bf5", + "md5": "05f104cd884e2fee2930cba00708872e", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeFiberInspector.js", + "type": "file", + "name": "ReactNativeFiberInspector.js", + "base_name": "ReactNativeFiberInspector", + "extension": ".js", + "size": 3551, + "date": "2018-03-12", + "sha1": "82fa71c59dbc1649400d826037acc48cf4af2921", + "md5": "68cf23b9e8dc0e722ea5d1e53a21df13", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeFiberRenderer.js", + "type": "file", + "name": "ReactNativeFiberRenderer.js", + "base_name": "ReactNativeFiberRenderer", + "extension": ".js", + "size": 10354, + "date": "2018-03-12", + "sha1": "c7272d67859039ed6bfd1d1fe2405ae77d287005", + "md5": "045fb8803182fc65671df95404fbb440", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeGlobalResponderHandler.js", + "type": "file", + "name": "ReactNativeGlobalResponderHandler.js", + "base_name": "ReactNativeGlobalResponderHandler", + "extension": ".js", + "size": 629, + "date": "2018-03-12", + "sha1": "b9038ef317d47f26800508e0d53bf802de022ef4", + "md5": "b2066216ecc61bbd51baf970eceeeac0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeInjection.js", + "type": "file", + "name": "ReactNativeInjection.js", + "base_name": "ReactNativeInjection", + "extension": ".js", + "size": 1893, + "date": "2018-03-12", + "sha1": "0bf5d0a90e7a52ce940798d72a33c36f439d6f71", + "md5": "775c44f15ee37235a54f5dd8455fde07", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativePropRegistry.js", + "type": "file", + "name": "ReactNativePropRegistry.js", + "base_name": "ReactNativePropRegistry", + "extension": ".js", + "size": 943, + "date": "2018-03-12", + "sha1": "c4e30fe4fd31a21182a519f47fd222d0da2aeb6b", + "md5": "589d334f57ea0f45e6977ad4fee1d8fc", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeTagHandles.js", + "type": "file", + "name": "ReactNativeTagHandles.js", + "base_name": "ReactNativeTagHandles", + "extension": ".js", + "size": 1843, + "date": "2018-03-12", + "sha1": "850d9fd8b3fa41d1ac11400fe5524aac0cc94110", + "md5": "16237bef25a1d80b0b5d3a504f53ca45", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeTypes.js", + "type": "file", + "name": "ReactNativeTypes.js", + "base_name": "ReactNativeTypes", + "extension": ".js", + "size": 2869, + "date": "2018-03-12", + "sha1": "b10e6569ca60284e845190f32277df9736765989", + "md5": "9d45c091cae24be24cefebdfd29c1d05", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/ReactNativeViewConfigRegistry.js", + "type": "file", + "name": "ReactNativeViewConfigRegistry.js", + "base_name": "ReactNativeViewConfigRegistry", + "extension": ".js", + "size": 1821, + "date": "2018-03-12", + "sha1": "750be5872aa288fe17b27196b23beb49ad94dc0c", + "md5": "4c3a54eee65c415eb92aa8661234251b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/takeSnapshot.js", + "type": "file", + "name": "takeSnapshot.js", + "base_name": "takeSnapshot", + "extension": ".js", + "size": 1528, + "date": "2018-03-12", + "sha1": "62af10aef8ad58eff4c0cc8b9391f7f0d79468a2", + "md5": "423d6c3902e2addd8908c34b0211302f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 1, + "size_count": 26873, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/__tests__/createReactNativeComponentClass-test.js", + "type": "file", + "name": "createReactNativeComponentClass-test.js", + "base_name": "createReactNativeComponentClass-test", + "extension": ".js", + "size": 1775, + "date": "2018-03-12", + "sha1": "ecee7857d00ad2be0e83671afeebadc962bf7fb2", + "md5": "48543dad54c597b1ded6608f77bec8c5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/__tests__/ReactNativeAttributePayload-test.js", + "type": "file", + "name": "ReactNativeAttributePayload-test.js", + "base_name": "ReactNativeAttributePayload-test", + "extension": ".js", + "size": 6476, + "date": "2018-03-12", + "sha1": "00f07593162a79c77432adbec6a1ea106d884157", + "md5": "378d1ac7794fd228f32b531eaa1f97c8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/__tests__/ReactNativeEvents-test.js", + "type": "file", + "name": "ReactNativeEvents-test.js", + "base_name": "ReactNativeEvents-test", + "extension": ".js", + "size": 11368, + "date": "2018-03-12", + "sha1": "961b9d9e524086b3ff80cfdb38559ca853fd2329", + "md5": "87913a8cd99ec16756fb56c79a3654e0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/__tests__/ReactNativeMount-test.js", + "type": "file", + "name": "ReactNativeMount-test.js", + "base_name": "ReactNativeMount-test", + "extension": ".js", + "size": 5513, + "date": "2018-03-12", + "sha1": "baf786267c1ec23dc215d09311f42a6a69608eed", + "md5": "a716d408c0a843c36d8c08c3432a3725", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/__tests__/__snapshots__", + "type": "directory", + "name": "__snapshots__", + "base_name": "__snapshots__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1741, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/__tests__/__snapshots__/ReactNativeEvents-test.js.snap", + "type": "file", + "name": "ReactNativeEvents-test.js.snap", + "base_name": "ReactNativeEvents-test.js", + "extension": ".snap", + "size": 270, + "date": "2018-03-12", + "sha1": "e365fe4da6edb0e6c04113bbb9798028d4becc91", + "md5": "a634b833987389a0379eaeec59e8570f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/native/__tests__/__snapshots__/ReactNativeMount-test.js.snap", + "type": "file", + "name": "ReactNativeMount-test.js.snap", + "base_name": "ReactNativeMount-test.js", + "extension": ".snap", + "size": 1471, + "date": "2018-03-12", + "sha1": "43eb4c1637f9ef47c0f1e722f208c0bfc837a457", + "md5": "564aa3773a68563964b048cf1c69a712", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/noop", + "type": "directory", + "name": "noop", + "base_name": "noop", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 12147, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/noop/ReactNoopEntry.js", + "type": "file", + "name": "ReactNoopEntry.js", + "base_name": "ReactNoopEntry", + "extension": ".js", + "size": 12147, + "date": "2018-03-12", + "sha1": "7899839310726fed9c8e98a3a4deccac949e6237", + "md5": "06c8df26632d97a63b4dd6e5fcef2f9e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 110, + "dirs_count": 18, + "size_count": 862848, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/ReactDebugTool.js", + "type": "file", + "name": "ReactDebugTool.js", + "base_name": "ReactDebugTool", + "extension": ".js", + "size": 13063, + "date": "2018-03-12", + "sha1": "fb1f5b3c830a0fca121957e2d800bb912759ce5d", + "md5": "d8e5bbd2605c15e0253ae7f9908ba23c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/ReactDOMFrameScheduling.js", + "type": "file", + "name": "ReactDOMFrameScheduling.js", + "base_name": "ReactDOMFrameScheduling", + "extension": ".js", + "size": 5299, + "date": "2018-03-12", + "sha1": "5634a3a99e6b174c6049be9c125be166c10d3548", + "md5": "5b39d664ede7b9d27320269064143ab1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/ReactGlobalSharedState.js", + "type": "file", + "name": "ReactGlobalSharedState.js", + "base_name": "ReactGlobalSharedState", + "extension": ".js", + "size": 669, + "date": "2018-03-12", + "sha1": "2ab753b29ae3e64cfc1b41fb8023aadfe57dec41", + "md5": "c475d6c199e7b78eab06e67c31058b77", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/ReactInstrumentation.js", + "type": "file", + "name": "ReactInstrumentation.js", + "base_name": "ReactInstrumentation", + "extension": ".js", + "size": 511, + "date": "2018-03-12", + "sha1": "410404c80a04c64a7ea23efec1161561bc0352dd", + "md5": "8cf3f2246182cf0d04dda7b11d75a4cd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/ReactPerf.js", + "type": "file", + "name": "ReactPerf.js", + "base_name": "ReactPerf", + "extension": ".js", + "size": 12141, + "date": "2018-03-12", + "sha1": "ad9a05f7db8d479492fc2046364453284dfda92b", + "md5": "e6d8b864954159ae8140ef55c7cb4304", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 3993, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/__tests__/ReactDebugTool-test.js", + "type": "file", + "name": "ReactDebugTool-test.js", + "base_name": "ReactDebugTool-test", + "extension": ".js", + "size": 2291, + "date": "2018-03-12", + "sha1": "5598ef52ed49e20aaf5fc8de7c17f3d80532099f", + "md5": "c0d76cb1c3fec22fc248ba2fd7c20348", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/__tests__/ReactDOMFrameScheduling-test.js", + "type": "file", + "name": "ReactDOMFrameScheduling-test.js", + "base_name": "ReactDOMFrameScheduling-test", + "extension": ".js", + "size": 1702, + "date": "2018-03-12", + "sha1": "a4153dd6a8bebb8762aacde975ed9d8210f360b2", + "md5": "8a7b44016bda26c183344228a13a5319", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber", + "type": "directory", + "name": "fiber", + "base_name": "fiber", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 39, + "dirs_count": 3, + "size_count": 480254, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactChildFiber.js", + "type": "file", + "name": "ReactChildFiber.js", + "base_name": "ReactChildFiber", + "extension": ".js", + "size": 45497, + "date": "2018-03-12", + "sha1": "ed71f446af662670ec5ddb18ea9adaabbad689a0", + "md5": "d3e9bd77e6e4ddf57a6eda5600630a97", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactDebugCurrentFiber.js", + "type": "file", + "name": "ReactDebugCurrentFiber.js", + "base_name": "ReactDebugCurrentFiber", + "extension": ".js", + "size": 1899, + "date": "2018-03-12", + "sha1": "2a43bcaee091e6384941e8a5ff0fb1e6661cdd33", + "md5": "17de66be785eb721c4bb1988ae8d6ad3", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactDebugFiberPerf.js", + "type": "file", + "name": "ReactDebugFiberPerf.js", + "base_name": "ReactDebugFiberPerf", + "extension": ".js", + "size": 12676, + "date": "2018-03-12", + "sha1": "79f486d80a4c3acd690a40e89f941161d7885c1c", + "md5": "dc5619976d471e3e499441d97f21ab2e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiber.js", + "type": "file", + "name": "ReactFiber.js", + "base_name": "ReactFiber", + "extension": ".js", + "size": 14119, + "date": "2018-03-12", + "sha1": "8a75aaf5cc0634b1d08c243aebb776711ea1e3e4", + "md5": "05751cb82b4d18f670d063dc21e09f9a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberBeginWork.js", + "type": "file", + "name": "ReactFiberBeginWork.js", + "base_name": "ReactFiberBeginWork", + "extension": ".js", + "size": 28935, + "date": "2018-03-12", + "sha1": "61d80e4c34cb5bf0db41430a7c48ebaf675bb958", + "md5": "52d9b7964ac00f8856eff728e9f7df89", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberClassComponent.js", + "type": "file", + "name": "ReactFiberClassComponent.js", + "base_name": "ReactFiberClassComponent", + "extension": ".js", + "size": 22320, + "date": "2018-03-12", + "sha1": "03d4d59c388c4da1588579d4a188a1254742a036", + "md5": "f0ff1c8665a8c82762ddd26eb582cc03", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberCommitWork.js", + "type": "file", + "name": "ReactFiberCommitWork.js", + "base_name": "ReactFiberCommitWork", + "extension": ".js", + "size": 18990, + "date": "2018-03-12", + "sha1": "e76220081f2500b33a8c2813efb944199f705146", + "md5": "bebc09ea72ee6aad898e2fb1cc22ceff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberCompleteWork.js", + "type": "file", + "name": "ReactFiberCompleteWork.js", + "base_name": "ReactFiberCompleteWork", + "extension": ".js", + "size": 13598, + "date": "2018-03-12", + "sha1": "cf42697d7dd74f848d9f6f22f0500110b475d8ee", + "md5": "29061770eaf63d0ea46df8773c6d3e81", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberContext.js", + "type": "file", + "name": "ReactFiberContext.js", + "base_name": "ReactFiberContext", + "extension": ".js", + "size": 10696, + "date": "2018-03-12", + "sha1": "737caa8b5714905afc46735e6eefc26026de20db", + "md5": "8a0fed98bf3d6a3e7d4ed40288feeea1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberDevToolsHook.js", + "type": "file", + "name": "ReactFiberDevToolsHook.js", + "base_name": "ReactFiberDevToolsHook", + "extension": ".js", + "size": 2360, + "date": "2018-03-12", + "sha1": "114a8d2b1a7988a856251cd7c7a59eb124ce899d", + "md5": "0396286a6ca0a60645ed87a75d8a3a52", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberErrorLogger.js", + "type": "file", + "name": "ReactFiberErrorLogger.js", + "base_name": "ReactFiberErrorLogger", + "extension": ".js", + "size": 3310, + "date": "2018-03-12", + "sha1": "0a7d663e2bf6277f6240fe962c403c7703036da2", + "md5": "574b848c69216762f8d709776b48c0df", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberHostContext.js", + "type": "file", + "name": "ReactFiberHostContext.js", + "base_name": "ReactFiberHostContext", + "extension": ".js", + "size": 3862, + "date": "2018-03-12", + "sha1": "6078e4159db1b7dcc6ad4f281d14dd22020f72a2", + "md5": "9c09cd1548fae35af6c4a49fd4332343", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberHydrationContext.js", + "type": "file", + "name": "ReactFiberHydrationContext.js", + "base_name": "ReactFiberHydrationContext", + "extension": ".js", + "size": 10071, + "date": "2018-03-12", + "sha1": "d3bdac54649da531aae4dab888f961bcbaa3e427", + "md5": "77adead4d97c3d0b07d5f5f82b70a095", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberInstrumentation.js", + "type": "file", + "name": "ReactFiberInstrumentation.js", + "base_name": "ReactFiberInstrumentation", + "extension": ".js", + "size": 605, + "date": "2018-03-12", + "sha1": "38a08c1d33b08dd6ecaa6af375a682a028833eb9", + "md5": "f6387bc5c43bc5699ce2e5490b24f863", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberReconciler.js", + "type": "file", + "name": "ReactFiberReconciler.js", + "base_name": "ReactFiberReconciler", + "extension": ".js", + "size": 9218, + "date": "2018-03-12", + "sha1": "100741f269c34c0be3802570f6c2efb7b16e1774", + "md5": "d6cc10b8e627e926edeedd95620de654", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberRoot.js", + "type": "file", + "name": "ReactFiberRoot.js", + "base_name": "ReactFiberRoot", + "extension": ".js", + "size": 1318, + "date": "2018-03-12", + "sha1": "71bd82dbe01f3044fae75de1c1f8de741dcb8a89", + "md5": "2311a724ad1d5043f4f604ce25a82325", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberScheduler.js", + "type": "file", + "name": "ReactFiberScheduler.js", + "base_name": "ReactFiberScheduler", + "extension": ".js", + "size": 51842, + "date": "2018-03-12", + "sha1": "e85555bc987e26d7a4e7f93538cf6988392d129a", + "md5": "17bc1251954f00371da15d9e879e9f4b", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberStack.js", + "type": "file", + "name": "ReactFiberStack.js", + "base_name": "ReactFiberStack", + "extension": ".js", + "size": 1516, + "date": "2018-03-12", + "sha1": "7b29d64d1f0ef61d83244994544fb79661f666f2", + "md5": "a471d27c53bd15009a22dc15ae8cc031", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberTreeReflection.js", + "type": "file", + "name": "ReactFiberTreeReflection.js", + "base_name": "ReactFiberTreeReflection", + "extension": ".js", + "size": 8770, + "date": "2018-03-12", + "sha1": "1bd97b7d04b5a485b74867447902d829951ff2cf", + "md5": "196cf8b263fd0d84caa9cc279a6550f4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactFiberUpdateQueue.js", + "type": "file", + "name": "ReactFiberUpdateQueue.js", + "base_name": "ReactFiberUpdateQueue", + "extension": ".js", + "size": 15107, + "date": "2018-03-12", + "sha1": "bc8139a258b5cdca5b27d535a0710488da363d1a", + "md5": "c30a01d475b38bb8017fe677929b4206", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactPriorityLevel.js", + "type": "file", + "name": "ReactPriorityLevel.js", + "base_name": "ReactPriorityLevel", + "extension": ".js", + "size": 751, + "date": "2018-03-12", + "sha1": "99a8326992012488e23896477a1f03ca65218663", + "md5": "54e2c157b4830c3c4247fa6d295085b4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactTypeOfInternalContext.js", + "type": "file", + "name": "ReactTypeOfInternalContext.js", + "base_name": "ReactTypeOfInternalContext", + "extension": ".js", + "size": 359, + "date": "2018-03-12", + "sha1": "db549b81c1bc34678e5e28bfa9d2df29ec757c50", + "md5": "f303cd7d3d0c548e5fb9b70ed47bea98", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/ReactTypeOfSideEffect.js", + "type": "file", + "name": "ReactTypeOfSideEffect.js", + "base_name": "ReactTypeOfSideEffect", + "extension": ".js", + "size": 785, + "date": "2018-03-12", + "sha1": "d8ab5cc9ec736198d89867111af8ce7329d61e59", + "md5": "a993e3e3d446045c17a55b652b73489c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 13, + "dirs_count": 1, + "size_count": 196944, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactCoroutine-test.js", + "type": "file", + "name": "ReactCoroutine-test.js", + "base_name": "ReactCoroutine-test", + "extension": ".js", + "size": 5971, + "date": "2018-03-12", + "sha1": "89b56c7840a2f879cf029d1386156ab2f2e2e3dc", + "md5": "dc70050102fb75d16654347b2241ddd5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactFiberHostContext-test.js", + "type": "file", + "name": "ReactFiberHostContext-test.js", + "base_name": "ReactFiberHostContext-test", + "extension": ".js", + "size": 1465, + "date": "2018-03-12", + "sha1": "ebed33f8f695eeb9a25a6bc0ff975df8e757604d", + "md5": "db4c9605d69a16643cb3d2211c0c3c5a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactIncremental-test.js", + "type": "file", + "name": "ReactIncremental-test.js", + "base_name": "ReactIncremental-test", + "extension": ".js", + "size": 66106, + "date": "2018-03-12", + "sha1": "0ed54babf9c95576b60886f0d74a519b786c289e", + "md5": "838ad494cf963f9bd8d918b4043f49da", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactIncrementalErrorHandling-test.js", + "type": "file", + "name": "ReactIncrementalErrorHandling-test.js", + "base_name": "ReactIncrementalErrorHandling-test", + "extension": ".js", + "size": 32305, + "date": "2018-03-12", + "sha1": "8ba5726016dda8444c9ef5a123d8ed441d39984b", + "md5": "2cb476d043d6c32f64d80a81fe2bc79a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactIncrementalPerf-test.js", + "type": "file", + "name": "ReactIncrementalPerf-test.js", + "base_name": "ReactIncrementalPerf-test", + "extension": ".js", + "size": 12528, + "date": "2018-03-12", + "sha1": "dbe1d6bd8531ff4f87fa03da40e7428657354735", + "md5": "3d210d1ac21501116ef968e12eac6b74", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactIncrementalReflection-test.js", + "type": "file", + "name": "ReactIncrementalReflection-test.js", + "base_name": "ReactIncrementalReflection-test", + "extension": ".js", + "size": 7167, + "date": "2018-03-12", + "sha1": "3b10cfc8326f0ee2e6eb217ada143f118c1cad60", + "md5": "d238fcb133ba4afb5083a68fbec2766b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactIncrementalScheduling-test.js", + "type": "file", + "name": "ReactIncrementalScheduling-test.js", + "base_name": "ReactIncrementalScheduling-test", + "extension": ".js", + "size": 11655, + "date": "2018-03-12", + "sha1": "4acb79c37d0237460646e663ed6391bbf538d552", + "md5": "d278a7eac9d67e047af0a0dfefe4d8f5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactIncrementalSideEffects-test.js", + "type": "file", + "name": "ReactIncrementalSideEffects-test.js", + "base_name": "ReactIncrementalSideEffects-test", + "extension": ".js", + "size": 27942, + "date": "2018-03-12", + "sha1": "ee7b0e2ef1a20e2f5050f0343d9cafd513f08643", + "md5": "5f2f70321664d46e13cd9a882bcf3321", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactIncrementalTriangle-test.js", + "type": "file", + "name": "ReactIncrementalTriangle-test.js", + "base_name": "ReactIncrementalTriangle-test", + "extension": ".js", + "size": 8785, + "date": "2018-03-12", + "sha1": "3df3001efb02047cc907c0ee823c994fd758cbc6", + "md5": "b802b923293de86e7a425c60df6d710f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactIncrementalUpdates-test.js", + "type": "file", + "name": "ReactIncrementalUpdates-test.js", + "base_name": "ReactIncrementalUpdates-test", + "extension": ".js", + "size": 9359, + "date": "2018-03-12", + "sha1": "c928f70c3395dc79d34f5a58088df544c8525e82", + "md5": "b79d8600ab469c58a84fdba837404345", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactTopLevelFragment-test.js", + "type": "file", + "name": "ReactTopLevelFragment-test.js", + "base_name": "ReactTopLevelFragment-test", + "extension": ".js", + "size": 3770, + "date": "2018-03-12", + "sha1": "5f05ed260267f245d062ecccba8befb569ea77a6", + "md5": "02ee44bb4ac947fbfdba7e74d95fd6aa", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/ReactTopLevelText-test.js", + "type": "file", + "name": "ReactTopLevelText-test.js", + "base_name": "ReactTopLevelText-test", + "extension": ".js", + "size": 1075, + "date": "2018-03-12", + "sha1": "1b41259f12cb94c34757c79c465604a93b279612", + "md5": "d52507c3f1a400b4afc813b226b2d783", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/__snapshots__", + "type": "directory", + "name": "__snapshots__", + "base_name": "__snapshots__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 8816, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/__tests__/__snapshots__/ReactIncrementalPerf-test.js.snap", + "type": "file", + "name": "ReactIncrementalPerf-test.js.snap", + "base_name": "ReactIncrementalPerf-test.js", + "extension": ".snap", + "size": 8816, + "date": "2018-03-12", + "sha1": "e149b69434a13334613409ceb6fbf29518c745c4", + "md5": "eb6b6aacd00c04d41316460e2541cda8", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/isomorphic", + "type": "directory", + "name": "isomorphic", + "base_name": "isomorphic", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 4706, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/isomorphic/ReactCoroutine.js", + "type": "file", + "name": "ReactCoroutine.js", + "base_name": "ReactCoroutine", + "extension": ".js", + "size": 2340, + "date": "2018-03-12", + "sha1": "20f95ea4e4e9fb7e033dcf9042a6689f54deb550", + "md5": "6fcd024be39a0616dd20da2cb4aa6bee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/isomorphic/ReactPortal.js", + "type": "file", + "name": "ReactPortal.js", + "base_name": "ReactPortal", + "extension": ".js", + "size": 1256, + "date": "2018-03-12", + "sha1": "74da2e0acd58acd65166a24223056c5ba07719aa", + "md5": "05d1655bdc30a13563975528619d23f1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/fiber/isomorphic/ReactTypes.js", + "type": "file", + "name": "ReactTypes.js", + "base_name": "ReactTypes", + "extension": ".js", + "size": 1110, + "date": "2018-03-12", + "sha1": "a6f7dc36b4c5de8c4a6be396d04aa26284303705", + "md5": "7cc071bd99828482b5d523a6fa1e1dd4", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/hooks", + "type": "directory", + "name": "hooks", + "base_name": "hooks", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2390, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/hooks/ReactHostOperationHistoryHook.js", + "type": "file", + "name": "ReactHostOperationHistoryHook.js", + "base_name": "ReactHostOperationHistoryHook", + "extension": ".js", + "size": 1484, + "date": "2018-03-12", + "sha1": "d99dd5c4b28beeb59d5eae8e35e35561c8d8fc38", + "md5": "60aa403fcb7dd22761496477b28c539a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/hooks/ReactInvalidSetStateWarningHook.js", + "type": "file", + "name": "ReactInvalidSetStateWarningHook.js", + "base_name": "ReactInvalidSetStateWarningHook", + "extension": ".js", + "size": 906, + "date": "2018-03-12", + "sha1": "e1ba5fad1749d1afff8af28873b900c3db3ac3c9", + "md5": "085227cba19571f45992034e34256618", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/server", + "type": "directory", + "name": "server", + "base_name": "server", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 24925, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/server/ReactPartialRenderer.js", + "type": "file", + "name": "ReactPartialRenderer.js", + "base_name": "ReactPartialRenderer", + "extension": ".js", + "size": 24925, + "date": "2018-03-12", + "sha1": "b7484a95a135484b13f4063ded3210364f963775", + "md5": "9ba136795ec4dfd1dc7794ba48ad0b5f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 22, + "dirs_count": 4, + "size_count": 146828, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/getContextForSubtree.js", + "type": "file", + "name": "getContextForSubtree.js", + "base_name": "getContextForSubtree", + "extension": ".js", + "size": 988, + "date": "2018-03-12", + "sha1": "a32697f5da944f19e0af5d0b408b6182e3b458a4", + "md5": "c98f7216c6f44b841d62ff6e5bef9730", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/ReactInstanceMap.js", + "type": "file", + "name": "ReactInstanceMap.js", + "base_name": "ReactInstanceMap", + "extension": ".js", + "size": 1118, + "date": "2018-03-12", + "sha1": "0138f9ea446af240657a87d324bbe546e02fbe15", + "md5": "642fcc8b9dbaa7f742283c09f75f38a1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/ReactTreeTraversal.js", + "type": "file", + "name": "ReactTreeTraversal.js", + "base_name": "ReactTreeTraversal", + "extension": ".js", + "size": 3466, + "date": "2018-03-12", + "sha1": "605a3c30cdb326c9edad25345178fc2f38fdc87d", + "md5": "2dc292bea8edbbd17b4f237dfe39a57d", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/shouldUpdateReactComponent.js", + "type": "file", + "name": "shouldUpdateReactComponent.js", + "base_name": "shouldUpdateReactComponent", + "extension": ".js", + "size": 1353, + "date": "2018-03-12", + "sha1": "f0341319c4ac204b5dcb67e174a57630200c641f", + "md5": "e4745f5e762b6f9605d01a67b4bbb11c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event", + "type": "directory", + "name": "event", + "base_name": "event", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 18, + "dirs_count": 3, + "size_count": 139903, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/BrowserEventConstants.js", + "type": "file", + "name": "BrowserEventConstants.js", + "base_name": "BrowserEventConstants", + "extension": ".js", + "size": 2847, + "date": "2018-03-12", + "sha1": "cac62861e0955427d9e2629c4956eb8b0f8a5012", + "md5": "61de68be24c0a0b731f7268eb5a8bd7e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/EventPluginHub.js", + "type": "file", + "name": "EventPluginHub.js", + "base_name": "EventPluginHub", + "extension": ".js", + "size": 7171, + "date": "2018-03-12", + "sha1": "84ca58e471ecc81bf40a305ed4126ea37e117afe", + "md5": "eeef4bbdc3d66e7ab02f46c27a02a4c1", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/EventPluginRegistry.js", + "type": "file", + "name": "EventPluginRegistry.js", + "base_name": "EventPluginRegistry", + "extension": ".js", + "size": 7468, + "date": "2018-03-12", + "sha1": "edfc65458a0f8bbb87b730b33889b8bf4a8d493a", + "md5": "94ded0e10cb57afdf7a3dcef7f9acdd8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/EventPluginUtils.js", + "type": "file", + "name": "EventPluginUtils.js", + "base_name": "EventPluginUtils", + "extension": ".js", + "size": 6771, + "date": "2018-03-12", + "sha1": "46699d9c22a1308250e23e65dece69d8614fc77e", + "md5": "116c02bf12d9efe79ae80582241927c0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/EventPropagators.js", + "type": "file", + "name": "EventPropagators.js", + "base_name": "EventPropagators", + "extension": ".js", + "size": 5166, + "date": "2018-03-12", + "sha1": "08ff29851f41bda36037ab861476c07fa3a42a30", + "md5": "2148f9ed074ec3c944ff7a1c3682ed64", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/getVendorPrefixedEventName.js", + "type": "file", + "name": "getVendorPrefixedEventName.js", + "base_name": "getVendorPrefixedEventName", + "extension": ".js", + "size": 2797, + "date": "2018-03-12", + "sha1": "f00caa631cac26e2e7371ff2019c1226d7743923", + "md5": "860cba12a3bb473b3bcc06a6d8be4033", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/PluginModuleType.js", + "type": "file", + "name": "PluginModuleType.js", + "base_name": "PluginModuleType", + "extension": ".js", + "size": 836, + "date": "2018-03-12", + "sha1": "feb1c58657eb94a1deabbc9de33d5bde1e84b31a", + "md5": "3b4560920aafb4c565170a25458dd3d6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/ReactControlledComponent.js", + "type": "file", + "name": "ReactControlledComponent.js", + "base_name": "ReactControlledComponent", + "extension": ".js", + "size": 2718, + "date": "2018-03-12", + "sha1": "8ecb593fc181d06be95cccf07b210d11258e3e4b", + "md5": "615ea4ac15c0858d4088fd12fcbe90dc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/ReactEventEmitterMixin.js", + "type": "file", + "name": "ReactEventEmitterMixin.js", + "base_name": "ReactEventEmitterMixin", + "extension": ".js", + "size": 929, + "date": "2018-03-12", + "sha1": "d7da988e73f46ac3798863c86f3fab2f9cc7c818", + "md5": "cee372e845f060448f8ae6005cfae70b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/ReactGenericBatching.js", + "type": "file", + "name": "ReactGenericBatching.js", + "base_name": "ReactGenericBatching", + "extension": ".js", + "size": 2521, + "date": "2018-03-12", + "sha1": "42c49bd5da1bbf3d28b989fe2b205c2741892a9b", + "md5": "e5badefea793aa4b4fa789a30e6c281e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/ReactSyntheticEventType.js", + "type": "file", + "name": "ReactSyntheticEventType.js", + "base_name": "ReactSyntheticEventType", + "extension": ".js", + "size": 819, + "date": "2018-03-12", + "sha1": "74b480e4073d94890befa4487a4b8b7d69a8bca7", + "md5": "4d413a17f21e8a9f1b9391534dfb3034", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/SyntheticEvent.js", + "type": "file", + "name": "SyntheticEvent.js", + "base_name": "SyntheticEvent", + "extension": ".js", + "size": 10287, + "date": "2018-03-12", + "sha1": "38a8218933b91c98bb3cb440687e6c5ff9157ace", + "md5": "4373766caa2dfa1107a961f0aaa1a49c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 7038, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/__tests__/EventPluginRegistry-test.js", + "type": "file", + "name": "EventPluginRegistry-test.js", + "base_name": "EventPluginRegistry-test", + "extension": ".js", + "size": 7038, + "date": "2018-03-12", + "sha1": "776de6927fca8834cef7d7d2985aff9f2deec4dc", + "md5": "5ea22f675a2aff015b85312d612a40bb", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/eventPlugins", + "type": "directory", + "name": "eventPlugins", + "base_name": "eventPlugins", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 82535, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/eventPlugins/ResponderEventPlugin.js", + "type": "file", + "name": "ResponderEventPlugin.js", + "base_name": "ResponderEventPlugin", + "extension": ".js", + "size": 24609, + "date": "2018-03-12", + "sha1": "97fd1dbaa003499125055f41247742a7f8672097", + "md5": "f12c8a0bea1abbaaaa38c5cc7f4d885a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/eventPlugins/ResponderSyntheticEvent.js", + "type": "file", + "name": "ResponderSyntheticEvent.js", + "base_name": "ResponderSyntheticEvent", + "extension": ".js", + "size": 1249, + "date": "2018-03-12", + "sha1": "d2994d7ca88a475cf1bcb0bc8783c9cd88246f8b", + "md5": "459c4d2698d3accd8b9cf0e4733b34f5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/eventPlugins/ResponderTouchHistoryStore.js", + "type": "file", + "name": "ResponderTouchHistoryStore.js", + "base_name": "ResponderTouchHistoryStore", + "extension": ".js", + "size": 7028, + "date": "2018-03-12", + "sha1": "81b9fd7c8b515e3a733b5836e03f126e0270f6a3", + "md5": "1f3ca66be6853076a787c21cf2504e16", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/eventPlugins/TouchHistoryMath.js", + "type": "file", + "name": "TouchHistoryMath.js", + "base_name": "TouchHistoryMath", + "extension": ".js", + "size": 4123, + "date": "2018-03-12", + "sha1": "7ef5fb9472a425fc312eeca10c73c2c30587fe6f", + "md5": "57a633de627d4d027c4be8e4919ad219", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/eventPlugins/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 45526, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/shared/event/eventPlugins/__tests__/ResponderEventPlugin-test.js", + "type": "file", + "name": "ResponderEventPlugin-test.js", + "base_name": "ResponderEventPlugin-test", + "extension": ".js", + "size": 45526, + "date": "2018-03-12", + "sha1": "ae4777459ce50f5e3939c9a00a7c76a31f5ab9d6", + "md5": "c7846808d5ce658ef35a8fa66035a503", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack", + "type": "directory", + "name": "stack", + "base_name": "stack", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 28, + "dirs_count": 3, + "size_count": 146859, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/PooledClass.js", + "type": "file", + "name": "PooledClass.js", + "base_name": "PooledClass", + "extension": ".js", + "size": 3377, + "date": "2018-03-12", + "sha1": "358f878b5bdc28ffa9d781d546710cf923febe02", + "md5": "2529fbe54e1c5ab02ac75561ae03de59", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3881, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/__tests__/PooledClass-test.js", + "type": "file", + "name": "PooledClass-test.js", + "base_name": "PooledClass-test", + "extension": ".js", + "size": 3881, + "date": "2018-03-12", + "sha1": "2333b3257ccd0b03f37703820d2814e823fe5010", + "md5": "dfb6a9ec8841aacddb7dc74d57ce3d00", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler", + "type": "directory", + "name": "reconciler", + "base_name": "reconciler", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 26, + "dirs_count": 1, + "size_count": 139601, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/CallbackQueue.js", + "type": "file", + "name": "CallbackQueue.js", + "base_name": "CallbackQueue", + "extension": ".js", + "size": 2556, + "date": "2018-03-12", + "sha1": "fdc906cac608b4b50efadf7c062f1face8de1833", + "md5": "6937dd46956e88794be004a00a50b6bb", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/flattenStackChildren.js", + "type": "file", + "name": "flattenStackChildren.js", + "base_name": "flattenStackChildren", + "extension": ".js", + "size": 3124, + "date": "2018-03-12", + "sha1": "ffebd80280914abd22572a34ce5205f5e58ee1f7", + "md5": "b5af427253adee46ee213961a9be1c36", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/getHostComponentFromComposite.js", + "type": "file", + "name": "getHostComponentFromComposite.js", + "base_name": "getHostComponentFromComposite", + "extension": ".js", + "size": 666, + "date": "2018-03-12", + "sha1": "24b326ae92eaa15726320ba297f02db8dfac3ba3", + "md5": "288b9a8c0dd6bc4aafd2c7ba7ae14839", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/instantiateReactComponent.js", + "type": "file", + "name": "instantiateReactComponent.js", + "base_name": "instantiateReactComponent", + "extension": ".js", + "size": 4696, + "date": "2018-03-12", + "sha1": "38e65eda7f11f5341d1eb3fdf5338136b0c6a6fc", + "md5": "5b901728418c2fa6f71ae8064b1c485f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/KeyEscapeUtils.js", + "type": "file", + "name": "KeyEscapeUtils.js", + "base_name": "KeyEscapeUtils", + "extension": ".js", + "size": 1416, + "date": "2018-03-12", + "sha1": "9846a575fe9f1926685fdb26db837f1f38d698dc", + "md5": "01ec3676191bcd95b2e5d096cab01e54", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactChildReconciler.js", + "type": "file", + "name": "ReactChildReconciler.js", + "base_name": "ReactChildReconciler", + "extension": ".js", + "size": 6655, + "date": "2018-03-12", + "sha1": "55b465bc3b3cea0dc4bff13e88471ae348dd33a7", + "md5": "f3e62a83e6aa40043caf5f467ef2b029", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactComponentEnvironment.js", + "type": "file", + "name": "ReactComponentEnvironment.js", + "base_name": "ReactComponentEnvironment", + "extension": ".js", + "size": 1472, + "date": "2018-03-12", + "sha1": "06b41b5ccaaf4d89758673fdee8895e6dab8f749", + "md5": "cc840ffb1b6b675bf06e79da66302369", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactCompositeComponent.js", + "type": "file", + "name": "ReactCompositeComponent.js", + "base_name": "ReactCompositeComponent", + "extension": ".js", + "size": 40097, + "date": "2018-03-12", + "sha1": "b457abec0a2ff176821ca3aee4b91c88fd305626", + "md5": "b96597f3138d1449ef56684b8a5c1571", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactCompositeComponentTypes.js", + "type": "file", + "name": "ReactCompositeComponentTypes.js", + "base_name": "ReactCompositeComponentTypes", + "extension": ".js", + "size": 376, + "date": "2018-03-12", + "sha1": "b8c2a1e4dd9ec0ebe13ec3ceb6a147d18c23b51c", + "md5": "87bcc74c8fda90eda6e5b2ddfb9c978b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactDebugCurrentStack.js", + "type": "file", + "name": "ReactDebugCurrentStack.js", + "base_name": "ReactDebugCurrentStack", + "extension": ".js", + "size": 947, + "date": "2018-03-12", + "sha1": "a9bde1e17c29a86d32d18c0d5d680f42cfb1c7b1", + "md5": "5acca2733fa21dd449b7d9f68aaf4d9a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactDefaultBatchingStrategy.js", + "type": "file", + "name": "ReactDefaultBatchingStrategy.js", + "base_name": "ReactDefaultBatchingStrategy", + "extension": ".js", + "size": 1769, + "date": "2018-03-12", + "sha1": "b3d10b20d429212b85891dab280a71dd810435fb", + "md5": "bf4a1f4b21d5a61737b4565186fedb06", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactEmptyComponent.js", + "type": "file", + "name": "ReactEmptyComponent.js", + "base_name": "ReactEmptyComponent", + "extension": ".js", + "size": 622, + "date": "2018-03-12", + "sha1": "eb6d86a805bf89a987fc33a0f3d8a37903c97443", + "md5": "6b443c75faf597f54401df523ea76127", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactHostComponent.js", + "type": "file", + "name": "ReactHostComponent.js", + "base_name": "ReactHostComponent", + "extension": ".js", + "size": 1760, + "date": "2018-03-12", + "sha1": "aa205e857f8239e8d9128b6addec14da1b4c6a53", + "md5": "157a130051ec5ffad9efdbd7fc9e5f45", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactInstanceType.js", + "type": "file", + "name": "ReactInstanceType.js", + "base_name": "ReactInstanceType", + "extension": ".js", + "size": 1139, + "date": "2018-03-12", + "sha1": "8c57b87118eb4207ae286b407d35e224488e1dbb", + "md5": "43f7729a98b8b559b320efc9acd43ed5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactMultiChild.js", + "type": "file", + "name": "ReactMultiChild.js", + "base_name": "ReactMultiChild", + "extension": ".js", + "size": 14755, + "date": "2018-03-12", + "sha1": "404bf87fa2989266d7a59c4c18d6fc25f5ad4841", + "md5": "7d1dc13506cf419888c5a4d1050c5664", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactMultiChildUpdateTypes.js", + "type": "file", + "name": "ReactMultiChildUpdateTypes.js", + "base_name": "ReactMultiChildUpdateTypes", + "extension": ".js", + "size": 612, + "date": "2018-03-12", + "sha1": "0c1829c77a3a8c704d655131d2643916d4c31cfe", + "md5": "4b1602665ab6d66d3d78a354996ceb0e", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactNodeTypes.js", + "type": "file", + "name": "ReactNodeTypes.js", + "base_name": "ReactNodeTypes", + "extension": ".js", + "size": 850, + "date": "2018-03-12", + "sha1": "6192feeed1127bd8e64d27e1330fc190bc1513b1", + "md5": "f934cb80d1728e66efc5887fae6c1305", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactOwner.js", + "type": "file", + "name": "ReactOwner.js", + "base_name": "ReactOwner", + "extension": ".js", + "size": 4250, + "date": "2018-03-12", + "sha1": "6577fd9105bde5db74708d602496f78b944d7c91", + "md5": "5a02c3d000decea3a1543464ed985107", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactReconciler.js", + "type": "file", + "name": "ReactReconciler.js", + "base_name": "ReactReconciler", + "extension": ".js", + "size": 6367, + "date": "2018-03-12", + "sha1": "c9c541efd3ea22b7244e5058e951809bebf44843", + "md5": "97dd28d6a49130e66dda30fed505d4fd", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactRef.js", + "type": "file", + "name": "ReactRef.js", + "base_name": "ReactRef", + "extension": ".js", + "size": 4123, + "date": "2018-03-12", + "sha1": "323f2bfcfaba1124aefc8b51ed92db1e8bdf388c", + "md5": "d13bcbcd4f142fce1a7c11317a289bdf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactSimpleEmptyComponent.js", + "type": "file", + "name": "ReactSimpleEmptyComponent.js", + "base_name": "ReactSimpleEmptyComponent", + "extension": ".js", + "size": 1249, + "date": "2018-03-12", + "sha1": "a455572b340a5d8975882305cceae4285fcc0cec", + "md5": "4e3effb7206b05410c462faa82b529ef", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactUpdateQueue.js", + "type": "file", + "name": "ReactUpdateQueue.js", + "base_name": "ReactUpdateQueue", + "extension": ".js", + "size": 8237, + "date": "2018-03-12", + "sha1": "1a1665304c1f00390bc1a8d511e8bd2acbfbbf6d", + "md5": "0d166256de3e728d6079aa615d348106", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2015-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/ReactUpdates.js", + "type": "file", + "name": "ReactUpdates.js", + "base_name": "ReactUpdates", + "extension": ".js", + "size": 6917, + "date": "2018-03-12", + "sha1": "4fff8cfabed40d48db8285cf6ea509adcca01999", + "md5": "e2100896b73e6077c03940a542bbfcf5", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/Transaction.js", + "type": "file", + "name": "Transaction.js", + "base_name": "Transaction", + "extension": ".js", + "size": 9440, + "date": "2018-03-12", + "sha1": "918015a892c89738ec8a207ab8c886ce537ed1d6", + "md5": "a14381c7c0b715bb5b5555b7b8754a92", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/traverseStackChildren.js", + "type": "file", + "name": "traverseStackChildren.js", + "base_name": "traverseStackChildren", + "extension": ".js", + "size": 6100, + "date": "2018-03-12", + "sha1": "ca75ba0df1aceeead03b2a3971a1202bd0c40475", + "md5": "acb9d32bc36e6c1d36242eb4c4c8081a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 9406, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/stack/reconciler/__tests__/Transaction-test.js", + "type": "file", + "name": "Transaction-test.js", + "base_name": "Transaction-test", + "extension": ".js", + "size": 9406, + "date": "2018-03-12", + "sha1": "b68875412c2904109bdafd87bb40c390879be48b", + "md5": "66049d826da42fdcb1b7e1039668b9ac", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils", + "type": "directory", + "name": "utils", + "base_name": "utils", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 11, + "dirs_count": 1, + "size_count": 25916, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/accumulate.js", + "type": "file", + "name": "accumulate.js", + "base_name": "accumulate", + "extension": ".js", + "size": 1073, + "date": "2018-03-12", + "sha1": "fed7291398243e0a8e4ad46303e890ec060d23d6", + "md5": "6b56303c19640f47bf9c95fe43b1a748", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/accumulateInto.js", + "type": "file", + "name": "accumulateInto.js", + "base_name": "accumulateInto", + "extension": ".js", + "size": 1542, + "date": "2018-03-12", + "sha1": "8e21a319d3d156ceedf9676445ea42aeef8ff2e9", + "md5": "2bcad9ff6873f8e5821b81649e909256", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/adler32.js", + "type": "file", + "name": "adler32.js", + "base_name": "adler32", + "extension": ".js", + "size": 1152, + "date": "2018-03-12", + "sha1": "3b429a799bccd8c3e3d6d0aa2df1ebae564f8b67", + "md5": "1d808c7d10aa47a55f6c81490c8f9946", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/forEachAccumulated.js", + "type": "file", + "name": "forEachAccumulated.js", + "base_name": "forEachAccumulated", + "extension": ".js", + "size": 964, + "date": "2018-03-12", + "sha1": "025e427e43cc5f705339ff149217c7dfd4d685bb", + "md5": "72d363a1ebafc6af94ddba05fa5cf9d0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/isTextInputElement.js", + "type": "file", + "name": "isTextInputElement.js", + "base_name": "isTextInputElement", + "extension": ".js", + "size": 1019, + "date": "2018-03-12", + "sha1": "8a0ff6aed19db42b6498409b5eacbcd649e83a7e", + "md5": "c62acd81d26b23e68786aa62cfef93cc", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/ReactErrorUtils.js", + "type": "file", + "name": "ReactErrorUtils.js", + "base_name": "ReactErrorUtils", + "extension": ".js", + "size": 10376, + "date": "2018-03-12", + "sha1": "420b5530ffb0737c90d1dc9a12e2266e13896aef", + "md5": "fb70c5742a2ff83f25d01672f61ef9cf", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/ReactFeatureFlags.js", + "type": "file", + "name": "ReactFeatureFlags.js", + "base_name": "ReactFeatureFlags", + "extension": ".js", + "size": 345, + "date": "2018-03-12", + "sha1": "11edd0489b19d9bb64414c537b9e6450e5061b17", + "md5": "99a198248b9df38d3627f4242dd7affe", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/validateCallback.js", + "type": "file", + "name": "validateCallback.js", + "base_name": "validateCallback", + "extension": ".js", + "size": 562, + "date": "2018-03-12", + "sha1": "63ab0afed117dfba1e3d14bf91c87a09b020f35d", + "md5": "00bc8c54ec37395b906e18965a51a855", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 8883, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/__tests__/accumulateInto-test.js", + "type": "file", + "name": "accumulateInto-test.js", + "base_name": "accumulateInto-test", + "extension": ".js", + "size": 1216, + "date": "2018-03-12", + "sha1": "46757d19a8e142f56991183e53290a58a035ab95", + "md5": "af6e757dad5c28a67d85023a365636f2", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/__tests__/adler32-test.js", + "type": "file", + "name": "adler32-test.js", + "base_name": "adler32-test", + "extension": ".js", + "size": 970, + "date": "2018-03-12", + "sha1": "cd399cd896d8c67a2116d62d2288e0242d86351b", + "md5": "d838af66bbca946e912d243418afb6f5", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/shared/utils/__tests__/ReactErrorUtils-test.js", + "type": "file", + "name": "ReactErrorUtils-test.js", + "base_name": "ReactErrorUtils-test", + "extension": ".js", + "size": 6697, + "date": "2018-03-12", + "sha1": "a02d71e2a7221a71067adbabceede7df8690da5a", + "md5": "20693000fde2e15b6301749bd609151a", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/testing", + "type": "directory", + "name": "testing", + "base_name": "testing", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 69711, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/testing/ReactShallowRendererEntry.js", + "type": "file", + "name": "ReactShallowRendererEntry.js", + "base_name": "ReactShallowRendererEntry", + "extension": ".js", + "size": 7184, + "date": "2018-03-12", + "sha1": "00ab40c3d9d186aff3c77036834acd9204e7075b", + "md5": "08c3b79a6aa57e600cfaf00b82c23f28", + "mime_type": "text/x-c++", + "file_type": "C++ source, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/testing/ReactTestRendererFiberEntry.js", + "type": "file", + "name": "ReactTestRendererFiberEntry.js", + "base_name": "ReactTestRendererFiberEntry", + "extension": ".js", + "size": 15495, + "date": "2018-03-12", + "sha1": "2e5c3a4f4261e1173e3d305f8dc167aad6a7efcc", + "md5": "97b0d4192611cad27a39b7fb2a202d04", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/testing/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 47032, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/testing/__tests__/ReactShallowRenderer-test.js", + "type": "file", + "name": "ReactShallowRenderer-test.js", + "base_name": "ReactShallowRenderer-test", + "extension": ".js", + "size": 20428, + "date": "2018-03-12", + "sha1": "17e30092188c46c0542693226aeea0836cec8d38", + "md5": "e4780567b4bd6d039880a22e32771dda", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/testing/__tests__/ReactTestRenderer-test.js", + "type": "file", + "name": "ReactTestRenderer-test.js", + "base_name": "ReactTestRenderer-test", + "extension": ".js", + "size": 20303, + "date": "2018-03-12", + "sha1": "46aa11c1513b65595f49c7a3a75c12882d7bf7f9", + "md5": "d201c761f6f61f232c26ae1b0d5f0560", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/renderers/testing/__tests__/ReactTestRendererTraversal-test.js", + "type": "file", + "name": "ReactTestRendererTraversal-test.js", + "base_name": "ReactTestRendererTraversal-test", + "extension": ".js", + "size": 6301, + "date": "2018-03-12", + "sha1": "f37de3bdc52d45126ab32a9ac4f25b362d0a256c", + "md5": "94f9f910920097a3559758399a92fc37", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared", + "type": "directory", + "name": "shared", + "base_name": "shared", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 8, + "dirs_count": 2, + "size_count": 9042, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/describeComponentFrame.js", + "type": "file", + "name": "describeComponentFrame.js", + "base_name": "describeComponentFrame", + "extension": ".js", + "size": 616, + "date": "2018-03-12", + "sha1": "d2abd1b9ffc2efdb8a8e456886af318191b7f0a2", + "md5": "f4fd73f3da59459a6434e5af3db2e61c", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/ReactElementType.js", + "type": "file", + "name": "ReactElementType.js", + "base_name": "ReactElementType", + "extension": ".js", + "size": 589, + "date": "2018-03-12", + "sha1": "cbc2e075df5daa5136ff145d42837ba166b6bfb2", + "md5": "b9c8468036298f54431e87651030b683", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/ReactFiberComponentTreeHook.js", + "type": "file", + "name": "ReactFiberComponentTreeHook.js", + "base_name": "ReactFiberComponentTreeHook", + "extension": ".js", + "size": 1591, + "date": "2018-03-12", + "sha1": "846107198372764cbfa97f35a19d3598ebc63742", + "md5": "2981f22e7d4b8ed10054c803a63215d0", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/ReactTypeOfWork.js", + "type": "file", + "name": "ReactTypeOfWork.js", + "base_name": "ReactTypeOfWork", + "extension": ".js", + "size": 747, + "date": "2018-03-12", + "sha1": "d23c9769e530e11b9a2c2f80b468c71930ce0bfb", + "md5": "6eb7027a401927d9844a169c91e298b6", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/utils", + "type": "directory", + "name": "utils", + "base_name": "utils", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 1, + "size_count": 5499, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/utils/getComponentName.js", + "type": "file", + "name": "getComponentName.js", + "base_name": "getComponentName", + "extension": ".js", + "size": 961, + "date": "2018-03-12", + "sha1": "6d1e250d9535e6668d96740157ef46a74aad5314", + "md5": "7d469e32c0bbdc370e0110b13d2fd86b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/utils/lowPriorityWarning.js", + "type": "file", + "name": "lowPriorityWarning.js", + "base_name": "lowPriorityWarning", + "extension": ".js", + "size": 1716, + "date": "2018-03-12", + "sha1": "d41b6c7b95f8ca5c20e242354524381b5e181b1a", + "md5": "579c789b2bb8d765f2cb51097f1e0fff", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2014-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/utils/reactProdInvariant.js", + "type": "file", + "name": "reactProdInvariant.js", + "base_name": "reactProdInvariant", + "extension": ".js", + "size": 1227, + "date": "2018-03-12", + "sha1": "0a6881ae0532d9aaf4937c04bffb98bc3310730e", + "md5": "7a9544e02310fef6d41825627064a876", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/utils/__tests__", + "type": "directory", + "name": "__tests__", + "base_name": "__tests__", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1595, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/shared/utils/__tests__/reactProdInvariant-test.js", + "type": "file", + "name": "reactProdInvariant-test.js", + "base_name": "reactProdInvariant-test", + "extension": ".js", + "size": 1595, + "date": "2018-03-12", + "sha1": "bf4dfa50032696d5b5e09362850be5eb66fbe620", + "md5": "95e9ce5a23a74194b1ffe2f5c3140ea9", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/test", + "type": "directory", + "name": "test", + "base_name": "test", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 3535, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/test/getTestDocument.js", + "type": "file", + "name": "getTestDocument.js", + "base_name": "getTestDocument", + "extension": ".js", + "size": 518, + "date": "2018-03-12", + "sha1": "8bb251369fb6fe38013a9c7dad0f5b0b24392f5b", + "md5": "7c33532c83ddd08dd3101595cb626e59", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2013-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "react-16.0.0/react-16.0.0/src/test/ReactComponentTreeTestUtils.js", + "type": "file", + "name": "ReactComponentTreeTestUtils.js", + "base_name": "ReactComponentTreeTestUtils", + "extension": ".js", + "size": 3017, + "date": "2018-03-12", + "sha1": "b26b0de8cd270fd5a9ee4fcf4f132412a56e560c", + "md5": "ae0b630b702cca2c1faeb6aaa5894394", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": "JavaScript", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "mit", + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "text_url": "http://opensource.org/licenses/mit-license.php", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit", + "spdx_license_key": "MIT", + "spdx_url": "https://spdx.org/licenses/MIT", + "start_line": 4, + "end_line": 5, + "matched_rule": { + "identifier": "mit_101.RULE", + "license_choice": false, + "licenses": [ + "mit" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2016-present, Facebook, Inc." + ], + "holders": [ + "Facebook, Inc." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/scan_sorted01_new.json b/tests/data/deltacode/scan_sorted01_new.json new file mode 100644 index 00000000..27c202ac --- /dev/null +++ b/tests/data/deltacode/scan_sorted01_new.json @@ -0,0 +1,462 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post8.2a658c314", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\sorting\\sorted01_new", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\scan_sorted01_new.json", + "--license": true, + "--package": true + }, + "files_count": 6, + "files": [ + { + "path": "sorted01_new", + "type": "directory", + "name": "sorted01_new", + "base_name": "sorted01_new", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 2, + "size_count": 1230, + "scan_errors": [] + }, + { + "path": "sorted01_new/a", + "type": "directory", + "name": "a", + "base_name": "a", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 430, + "scan_errors": [] + }, + { + "path": "sorted01_new/a/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 230, + "date": "2018-03-11", + "sha1": "7cda857e87dbbc466f56ceb9db8b87d8d130693e", + "md5": "57c1d54390286dc928f841a733b19c66", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_new/a/a4.py", + "type": "file", + "name": "a4.py", + "base_name": "a4", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "6f71666c46446c29d3f45feef5419ae76fb86a5b", + "md5": "fc403815d6605df989414ff40a64ea17", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_new/b", + "type": "directory", + "name": "b", + "base_name": "b", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 800, + "scan_errors": [] + }, + { + "path": "sorted01_new/b/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "84b647771481d39dd3a53f6dc210c26abac37748", + "md5": "3cb56efa7140478458dbaa2b30239845", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_new/b/b1.py", + "type": "file", + "name": "b1.py", + "base_name": "b1", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "70f6ce80985578b5104db0abc578cf5a05e78f4b", + "md5": "af9e9420c6c5b2b0ca74e96bf7c1a2f4", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_new/b/b2.py", + "type": "file", + "name": "b2.py", + "base_name": "b2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "3340d86b1da9323067db8022f86dc97cfccee1d0", + "md5": "74ce2b26cebb32670634270dde1fdf33", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_new/b/b3.py", + "type": "file", + "name": "b3.py", + "base_name": "b3", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "e49d4463662414bee5ad2d2e5c1fbd704f33b84e", + "md5": "8d458f54d32959b03dff37ef485b29c6", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/scan_sorted01_old.json b/tests/data/deltacode/scan_sorted01_old.json new file mode 100644 index 00000000..2ca92272 --- /dev/null +++ b/tests/data/deltacode/scan_sorted01_old.json @@ -0,0 +1,462 @@ +{ + "scancode_notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "scancode_version": "2.9.0b1.post8.2a658c314", + "scancode_options": { + "input": "C:\\code\\nexb\\dev\\codebase01\\sorting\\sorted01_old", + "--copyright": true, + "--info": true, + "--json-pp": "C:\\code\\nexb\\dev\\deltacode\\tests\\data\\deltacode\\scan_sorted01_old.json", + "--license": true, + "--package": true + }, + "files_count": 6, + "files": [ + { + "path": "sorted01_old", + "type": "directory", + "name": "sorted01_old", + "base_name": "sorted01_old", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 6, + "dirs_count": 2, + "size_count": 1200, + "scan_errors": [] + }, + { + "path": "sorted01_old/a", + "type": "directory", + "name": "a", + "base_name": "a", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 600, + "scan_errors": [] + }, + { + "path": "sorted01_old/a/a1.py", + "type": "file", + "name": "a1.py", + "base_name": "a1", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "84b647771481d39dd3a53f6dc210c26abac37748", + "md5": "3cb56efa7140478458dbaa2b30239845", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_old/a/a2.py", + "type": "file", + "name": "a2.py", + "base_name": "a2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "310797523e47db8481aeb06f1634317285115091", + "md5": "19efdad483f68bc9997a5c1f7ba41b26", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_old/a/a3.py", + "type": "file", + "name": "a3.py", + "base_name": "a3", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "fd5d3589c825f448546d7dcec36da3e567d35fe9", + "md5": "795ff2cae8ece792a9bfebe18ad3c8e6", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_old/b", + "type": "directory", + "name": "b", + "base_name": "b", + "extension": "", + "size": 0, + "date": null, + "sha1": null, + "md5": null, + "mime_type": null, + "file_type": null, + "programming_language": null, + "is_binary": false, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [], + "copyrights": [], + "packages": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 600, + "scan_errors": [] + }, + { + "path": "sorted01_old/b/b1.py", + "type": "file", + "name": "b1.py", + "base_name": "b1", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "70f6ce80985578b5104db0abc578cf5a05e78f4b", + "md5": "af9e9420c6c5b2b0ca74e96bf7c1a2f4", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_old/b/b2.py", + "type": "file", + "name": "b2.py", + "base_name": "b2", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "3340d86b1da9323067db8022f86dc97cfccee1d0", + "md5": "74ce2b26cebb32670634270dde1fdf33", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "sorted01_old/b/b3.py", + "type": "file", + "name": "b3.py", + "base_name": "b3", + "extension": ".py", + "size": 200, + "date": "2017-09-26", + "sha1": "e49d4463662414bee5ad2d2e5c1fbd704f33b84e", + "md5": "8d458f54d32959b03dff37ef485b29c6", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 40.0, + "short_name": "Apache 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "text_url": "http://www.apache.org/licenses/LICENSE-2.0", + "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0", + "spdx_license_key": "Apache-2.0", + "spdx_url": "https://spdx.org/licenses/Apache-2.0", + "start_line": 3, + "end_line": 3, + "matched_rule": { + "identifier": "apache-2.0_57.RULE", + "license_choice": false, + "licenses": [ + "apache-2.0" + ] + } + } + ], + "copyrights": [ + { + "statements": [ + "Copyright (c) 2017 Acme Software Inc. and others." + ], + "holders": [ + "Acme Software Inc. and others." + ], + "authors": [], + "start_line": 2, + "end_line": 2 + } + ], + "packages": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/data/deltacode/score_multiple_lic_keys_new.json b/tests/data/deltacode/score_multiple_lic_keys_new.json index 2e4a859b..d2ed4d45 100644 --- a/tests/data/deltacode/score_multiple_lic_keys_new.json +++ b/tests/data/deltacode/score_multiple_lic_keys_new.json @@ -25,11 +25,15 @@ "licenses": [ { "key": "gpl-2.0", - "score": 100.0 + "score": 100.0, + "short_name": "GPL 2.0", + "category": "Copyleft" }, { "key": "mit", - "score": 30.0 + "score": 30.0, + "short_name": "MIT License", + "category": "Permissive" } ] } diff --git a/tests/data/deltacode/score_multiple_lic_keys_new_below_cutoff_score_new.json b/tests/data/deltacode/score_multiple_lic_keys_new_below_cutoff_score_new.json index 012bf3b4..57c25a9c 100644 --- a/tests/data/deltacode/score_multiple_lic_keys_new_below_cutoff_score_new.json +++ b/tests/data/deltacode/score_multiple_lic_keys_new_below_cutoff_score_new.json @@ -25,15 +25,21 @@ "licenses": [ { "key": "gpl-2.0", - "score": 49.9 + "score": 49.9, + "short_name": "GPL 2.0", + "category": "Copyleft" }, { "key": "mit", - "score": 75.0 + "score": 75.0, + "short_name": "MIT License", + "category": "Permissive" }, { "key": "mit", - "score": 90.0 + "score": 90.0, + "short_name": "MIT License", + "category": "Permissive" } ] } diff --git a/tests/data/deltacode/score_multiple_lic_keys_new_below_cutoff_score_old.json b/tests/data/deltacode/score_multiple_lic_keys_new_below_cutoff_score_old.json index 6bd70cdb..0cf1c3d0 100644 --- a/tests/data/deltacode/score_multiple_lic_keys_new_below_cutoff_score_old.json +++ b/tests/data/deltacode/score_multiple_lic_keys_new_below_cutoff_score_old.json @@ -25,7 +25,9 @@ "licenses": [ { "key": "mit", - "score": 100.0 + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive" } ] } diff --git a/tests/data/deltacode/score_multiple_lic_keys_old.json b/tests/data/deltacode/score_multiple_lic_keys_old.json index 5d8edaf1..f6f6f2c6 100644 --- a/tests/data/deltacode/score_multiple_lic_keys_old.json +++ b/tests/data/deltacode/score_multiple_lic_keys_old.json @@ -25,7 +25,9 @@ "licenses": [ { "key": "mit", - "score": 50.0 + "score": 50.0, + "short_name": "MIT License", + "category": "Permissive" } ] } diff --git a/tests/data/deltacode/score_multiple_lic_keys_old_below_cutoff_score_new.json b/tests/data/deltacode/score_multiple_lic_keys_old_below_cutoff_score_new.json index 66a29db0..20a0cc1d 100644 --- a/tests/data/deltacode/score_multiple_lic_keys_old_below_cutoff_score_new.json +++ b/tests/data/deltacode/score_multiple_lic_keys_old_below_cutoff_score_new.json @@ -25,11 +25,15 @@ "licenses": [ { "key": "mit", - "score": 75.0 + "score": 75.0, + "short_name": "MIT License", + "category": "Permissive" }, { "key": "mit", - "score": 90.0 + "score": 90.0, + "short_name": "MIT License", + "category": "Permissive" } ] } diff --git a/tests/data/deltacode/score_multiple_lic_keys_old_below_cutoff_score_old.json b/tests/data/deltacode/score_multiple_lic_keys_old_below_cutoff_score_old.json index 67f5f7ca..86e01771 100644 --- a/tests/data/deltacode/score_multiple_lic_keys_old_below_cutoff_score_old.json +++ b/tests/data/deltacode/score_multiple_lic_keys_old_below_cutoff_score_old.json @@ -25,11 +25,15 @@ "licenses": [ { "key": "gpl-2.0", - "score": 49.9 + "score": 49.9, + "short_name": "GPL 2.0", + "category": "Copyleft" }, { "key": "mit", - "score": 100.0 + "score": 100.0, + "short_name": "MIT License", + "category": "Permissive" } ] } diff --git a/tests/data/deltacode/score_single_lic_change_new.json b/tests/data/deltacode/score_single_lic_change_new.json index f8047ebe..5a05d19b 100644 --- a/tests/data/deltacode/score_single_lic_change_new.json +++ b/tests/data/deltacode/score_single_lic_change_new.json @@ -25,7 +25,9 @@ "licenses": [ { "key": "gpl-2.0", - "score": 70.0 + "score": 70.0, + "short_name": "GPL 2.0", + "category": "Copyleft" } ] } diff --git a/tests/data/deltacode/score_single_lic_change_old.json b/tests/data/deltacode/score_single_lic_change_old.json index 2e09a4b3..5d31572e 100644 --- a/tests/data/deltacode/score_single_lic_change_old.json +++ b/tests/data/deltacode/score_single_lic_change_old.json @@ -25,7 +25,9 @@ "licenses": [ { "key": "mit", - "score": 80.0 + "score": 80.0, + "short_name": "MIT License", + "category": "Permissive" } ] } diff --git a/tests/test_cli.py b/tests/test_cli.py index d202c464..aabdc1f2 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -423,7 +423,7 @@ def test_json_output_option_selected_all_selected(self): moved_expected = { "factors": ['moved'], - "score": 5, + "score": 0, "new": { "path": "b/a4.py", "type": "file", @@ -480,7 +480,7 @@ def test_json_output_option_selected_all_selected(self): } } - moved_result = [d for d in json_result.get('deltas') if d.get('score') == 5].pop() + moved_result = [d for d in json_result.get('deltas') if d.get('factors') == ['moved']].pop() assert moved_result == moved_expected @@ -577,7 +577,7 @@ def test_json_output_option_selected_all_not_selected(self): moved_expected = { "factors": ["moved"], - "score": 5, + "score": 0, "new": { "path": "b/a4.py", "type": "file", @@ -634,11 +634,11 @@ def test_json_output_option_selected_all_not_selected(self): } } - moved_result = [d for d in json_result.get('deltas') if d.get('score') == 5].pop() + moved_result = [d for d in json_result.get('deltas') if d.get('factors') == ['moved']].pop() assert moved_result == moved_expected - unmodified_result = [d for d in json_result.get('deltas') if d.get('score') == 0] + unmodified_result = [d for d in json_result.get('deltas') if d.get('factors') == ['unmodified']] assert len(unmodified_result) == 0 @@ -687,7 +687,7 @@ def test_no_output_option_selected_all_selected(self): assert '"factors"' in result.output - assert '"score": 5' in result.output + assert '"score": 0' in result.output assert '"new"' in result.output assert '"path": "b/a4.py"' in result.output @@ -729,7 +729,7 @@ def test_no_output_option_selected_all_not_selected(self): assert '"factors":' in result.output - assert '"score": 5' in result.output + assert '"score": 0' in result.output assert '"new"' in result.output assert '"path": "b/a4.py"' in result.output diff --git a/tests/test_deltacode.py b/tests/test_deltacode.py index bc6082c1..2612971b 100644 --- a/tests/test_deltacode.py +++ b/tests/test_deltacode.py @@ -260,6 +260,9 @@ def test_DeltaCode_license_modified_low_score(self): assert [d.score for d in deltas if d.new_file.path == 'some/path/a/a1.py'] == [30] assert [d.score for d in deltas if d.new_file.path == 'some/path/b/b1.py'] == [30] + assert [d.factors for d in deltas if d.new_file.path == 'some/path/a/a1.py'].pop() == ['modified', 'license change'] + assert [d.factors for d in deltas if d.new_file.path == 'some/path/b/b1.py'].pop() == ['modified', 'license change'] + def test_DeltaCode_license_modified(self): new_scan = self.get_test_loc('deltacode/scan_modified_new_license_added.json') old_scan = self.get_test_loc('deltacode/scan_modified_old_license_added.json') @@ -272,9 +275,18 @@ def test_DeltaCode_license_modified(self): deltas = result.deltas - assert len([i for i in deltas if i.score == 30]) == 2 + assert len([i for i in deltas if i.score == 50]) == 1 + assert len([i for i in deltas if i.score == 30]) == 1 assert len([i for i in deltas if i.score == 20]) == 1 + assert [d.score for d in deltas if d.new_file.path == 'some/path/a/a1.py'] == [50] + assert [d.score for d in deltas if d.new_file.path == 'some/path/b/b1.py'] == [30] + assert [d.score for d in deltas if d.new_file.path == 'some/path/c/c1.py'] == [20] + + assert [d.factors for d in deltas if d.new_file.path == 'some/path/a/a1.py'].pop() == ['modified', 'license change', 'copyleft added'] + assert [d.factors for d in deltas if d.new_file.path == 'some/path/b/b1.py'].pop() == ['modified', 'license change'] + assert [d.factors for d in deltas if d.new_file.path == 'some/path/c/c1.py'].pop() == ['modified'] + def test_DeltaCode_no_license_key_value(self): new_scan = self.get_test_loc('deltacode/scan_modified_new_no_license_key.json') old_scan = self.get_test_loc('deltacode/scan_modified_old_no_license_key.json') @@ -329,10 +341,14 @@ def test_Delta_modified_license_added(self): deltas = result.deltas - assert [d.score for d in deltas if d.new_file.path == 'some/path/a/a1.py'] == [30] + assert [d.score for d in deltas if d.new_file.path == 'some/path/a/a1.py'] == [50] assert [d.score for d in deltas if d.new_file.path == 'some/path/b/b1.py'] == [30] assert [d.score for d in deltas if d.new_file.path == 'some/path/c/c1.py'] == [20] + assert [d.factors for d in deltas if d.new_file.path == 'some/path/a/a1.py'].pop() == ['modified', 'license change', 'copyleft added'] + assert [d.factors for d in deltas if d.new_file.path == 'some/path/b/b1.py'].pop() == ['modified', 'license change'] + assert [d.factors for d in deltas if d.new_file.path == 'some/path/c/c1.py'].pop() == ['modified'] + def test_Delta_modified_no_license_changes(self): new_scan = self.get_test_loc('deltacode/scan_modified_new_no_license_changes.json') old_scan = self.get_test_loc('deltacode/scan_modified_old_no_license_changes.json') @@ -804,14 +820,14 @@ def test_score_multiple_lic_keys(self): assert [d.old_file.sha1 for d in deltas_object if d.old_file.path == 'path.txt'] == ['b'] assert [d.new_file.sha1 for d in deltas_object if d.new_file.path == 'path.txt'] == ['b_modified'] - assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [30] - assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license change'] + assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [50] + assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license change', 'copyleft added'] assert [d.to_dict().get('old').get('licenses') for d in deltas_object if d.new_file.path == 'path.txt'].pop() == [ OrderedDict([ ('key', 'mit'), ('score', 50.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]) ] @@ -819,15 +835,15 @@ def test_score_multiple_lic_keys(self): OrderedDict([ ('key', 'gpl-2.0'), ('score', 100.0), - ('short_name', None), - ('category', None), + ('short_name', 'GPL 2.0'), + ('category', 'Copyleft'), ('owner', None) ]), OrderedDict([ ('key', 'mit'), ('score', 30.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]) ] @@ -1023,14 +1039,14 @@ def test_score_multiple_lic_keys_new_below_cutoff_score(self): assert [d.old_file.sha1 for d in deltas_object if d.old_file.path == 'path.txt'] == ['b'] assert [d.new_file.sha1 for d in deltas_object if d.new_file.path == 'path.txt'] == ['b_modified'] - assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [30] - assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license change'] + assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [50] + assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license change', 'copyleft added'] assert [d.to_dict().get('old').get('licenses') for d in deltas_object if d.new_file.path == 'path.txt'].pop() == [ OrderedDict([ ('key', 'mit'), ('score', 100.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]) ] @@ -1038,22 +1054,22 @@ def test_score_multiple_lic_keys_new_below_cutoff_score(self): OrderedDict([ ('key', 'gpl-2.0'), ('score', 49.9), - ('short_name', None), - ('category', None), + ('short_name', 'GPL 2.0'), + ('category', 'Copyleft'), ('owner', None) ]), OrderedDict([ ('key', 'mit'), ('score', 75.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]), OrderedDict([ ('key', 'mit'), ('score', 90.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]) ] @@ -1084,15 +1100,15 @@ def test_score_multiple_lic_keys_old_below_cutoff_score(self): OrderedDict([ ('key', 'gpl-2.0'), ('score', 49.9), - ('short_name', None), - ('category', None), + ('short_name', 'GPL 2.0'), + ('category', 'Copyleft'), ('owner', None) ]), OrderedDict([ ('key', 'mit'), ('score', 100.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]) ] @@ -1100,15 +1116,15 @@ def test_score_multiple_lic_keys_old_below_cutoff_score(self): OrderedDict([ ('key', 'mit'), ('score', 75.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]), OrderedDict([ ('key', 'mit'), ('score', 90.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]) ] @@ -1133,14 +1149,14 @@ def test_score_single_lic_change(self): assert [d.old_file.sha1 for d in deltas_object if d.old_file.path == 'path.txt'] == ['b'] assert [d.new_file.sha1 for d in deltas_object if d.new_file.path == 'path.txt'] == ['b_modified'] - assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [30] - assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license change'] + assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [50] + assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license change', 'copyleft added'] assert [d.to_dict().get('old').get('licenses') for d in deltas_object if d.new_file.path == 'path.txt'].pop() == [ OrderedDict([ ('key', 'mit'), ('score', 80.0), - ('short_name', None), - ('category', None), + ('short_name', 'MIT License'), + ('category', 'Permissive'), ('owner', None) ]) ] @@ -1148,8 +1164,8 @@ def test_score_single_lic_change(self): OrderedDict([ ('key', 'gpl-2.0'), ('score', 70.0), - ('short_name', None), - ('category', None), + ('short_name', 'GPL 2.0'), + ('category', 'Copyleft'), ('owner', None) ]) ] @@ -1374,8 +1390,8 @@ def test_score_copyright_and_license_info_added(self): assert [d.old_file.sha1 for d in deltas_object if d.old_file.path == 'path.txt'] == ['b'] assert [d.new_file.sha1 for d in deltas_object if d.new_file.path == 'path.txt'] == ['b_modified'] - assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [50] - assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license info added', 'copyright info added'] + assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [70] + assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license info added', 'copyleft added', 'copyright info added'] assert [d.to_dict().get('old').get('copyrights') for d in deltas_object if d.new_file.path == 'path.txt'].pop() == [] assert [d.to_dict().get('new').get('copyrights') for d in deltas_object if d.new_file.path == 'path.txt'].pop() == [ OrderedDict([ @@ -1394,7 +1410,8 @@ def test_score_copyright_and_license_info_added(self): ]) ] - assert len([i for i in deltas_object if i.score == 50]) == 1 + assert len([i for i in deltas_object if i.score == 70]) == 1 + assert len([i for i in deltas_object if i.score == 50]) == 0 assert len([i for i in deltas_object if i.score == 30]) == 0 assert len([i for i in deltas_object if i.score == 20]) == 0 @@ -1509,8 +1526,8 @@ def test_score_license_info_added_copyright_info_removed(self): assert [d.old_file.sha1 for d in deltas_object if d.old_file.path == 'path.txt'] == ['b'] assert [d.new_file.sha1 for d in deltas_object if d.new_file.path == 'path.txt'] == ['b_modified'] - assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [50] - assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license info added', 'copyright info removed'] + assert [d.score for d in deltas_object if d.new_file.path == 'path.txt'] == [70] + assert [d.factors for d in deltas_object if d.new_file.path == 'path.txt'].pop() == ['modified', 'license info added', 'copyleft added', 'copyright info removed'] assert [d.to_dict().get('old').get('copyrights') for d in deltas_object if d.new_file.path == 'path.txt'].pop() == [ OrderedDict([ ('statements', ['Copyright (c) 2016 Mark Adler']), @@ -1529,8 +1546,8 @@ def test_score_license_info_added_copyright_info_removed(self): ]) ] - assert len([i for i in deltas_object if i.score == 55]) == 0 - assert len([i for i in deltas_object if i.score == 50]) == 1 + assert len([i for i in deltas_object if i.score == 70]) == 1 + assert len([i for i in deltas_object if i.score == 50]) == 0 assert len([i for i in deltas_object if i.score == 45]) == 0 assert len([i for i in deltas_object if i.score == 30]) == 0 assert len([i for i in deltas_object if i.score == 20]) == 0 @@ -1899,7 +1916,7 @@ def test_Delta_to_dict_Copyright_unusual_characters(self): deltas_object = deltacode_object.deltas - assert [d.factors for d in deltas_object if d.new_file.path == 'a1.py'].pop() == ['modified', 'license change', 'copyright change'] + assert [d.factors for d in deltas_object if d.new_file.path == 'a1.py'].pop() == ['modified', 'license change', 'copyleft added', 'copyright change'] holders_list = [c.holders.pop() for d in deltas_object if d.new_file.path == 'a1.py' for c in d.new_file.copyrights] @@ -1914,3 +1931,161 @@ def test_Delta_to_dict_Copyright_unusual_characters(self): assert 'Copyright (c) 1999 Ottomar Anschutz.' in statements_list assert 'Copyright (c) 2015-18 Christiane Nusslein-Volhard.' in statements_list assert 'Copyright (c) 1999 Behram Kursunoglu.' in statements_list + + assert [d.score for d in deltas_object if d.new_file.path == 'a1.py'] == [55] + assert [d.score for d in deltas_object if d.new_file.path == 'a2.py'] == [0] + + def test_DeltaCode_sort_order(self): + new_scan = self.get_test_loc('deltacode/scan_sorted01_new.json') + old_scan = self.get_test_loc('deltacode/scan_sorted01_old.json') + + options = OrderedDict([ + ('--all-delta-types', True) + ]) + + deltacode_object = DeltaCode(new_scan, old_scan, options) + + deltas_object = deltacode_object.deltas + + expected = [ + ['added'], + ['modified'], + ['moved'], + ['removed'], + ['unmodified'], + ['unmodified'], + ['unmodified'] + ] + + unexpected = [ + ['added'], + ['modified'], + ['unmodified'], + ['unmodified'], + ['unmodified'], + ['removed'], + ['moved'] + ] + + factors = [d.factors for d in deltas_object] + + assert factors == expected + assert factors != unexpected + + def test_DeltaCode_no_lic_to_all_notable_lic(self): + new_scan = self.get_test_loc('deltacode/no_lic_to_all_notable_lic_new.json') + old_scan = self.get_test_loc('deltacode/no_lic_to_all_notable_lic_old.json') + + options = OrderedDict([ + ('--all-delta-types', True) + ]) + + deltacode_object = DeltaCode(new_scan, old_scan, options) + + deltas_object = deltacode_object.deltas + + assert [d.score for d in deltas_object if d.new_file.path == 'a1.py'] == [170] + assert [d.score for d in deltas_object if d.new_file.path == 'a2.py'] == [0] + + assert sorted([d.factors for d in deltas_object if d.new_file.path == 'a1.py'].pop()) == sorted(['modified', 'license info added', 'commercial added', 'copyleft added', 'copyleft limited added', 'free restricted added', 'patent license added', 'proprietary free added', 'copyright info added']) + assert [d.factors for d in deltas_object if d.new_file.path == 'a2.py'].pop() == ['unmodified'] + + def test_DeltaCode_apache_to_all_notable_lic(self): + new_scan = self.get_test_loc('deltacode/apache_to_all_notable_lic_new.json') + old_scan = self.get_test_loc('deltacode/apache_to_all_notable_lic_old.json') + + options = OrderedDict([ + ('--all-delta-types', True) + ]) + + deltacode_object = DeltaCode(new_scan, old_scan, options) + + deltas_object = deltacode_object.deltas + + assert [d.score for d in deltas_object if d.new_file.path == 'a1.py'] == [155] + assert [d.score for d in deltas_object if d.new_file.path == 'a2.py'] == [0] + + assert sorted([d.factors for d in deltas_object if d.new_file.path == 'a1.py'].pop()) == sorted(['modified', 'license change', 'commercial added', 'copyleft added', 'copyleft limited added', 'free restricted added', 'patent license added', 'proprietary free added', 'copyright change']) + assert [d.factors for d in deltas_object if d.new_file.path == 'a2.py'].pop() == ['unmodified'] + + def test_DeltaCode_copyleft_etc_to_prop_free_and_commercial(self): + new_scan = self.get_test_loc('deltacode/copyleft_etc_to_prop_free_and_commercial_new.json') + old_scan = self.get_test_loc('deltacode/copyleft_etc_to_prop_free_and_commercial_old.json') + + options = OrderedDict([ + ('--all-delta-types', True) + ]) + + deltacode_object = DeltaCode(new_scan, old_scan, options) + + deltas_object = deltacode_object.deltas + + assert [d.score for d in deltas_object if d.new_file.path == 'a1.py'] == [30] + assert [d.score for d in deltas_object if d.new_file.path == 'a2.py'] == [0] + + assert [d.factors for d in deltas_object if d.new_file.path == 'a1.py'].pop() == ['modified', 'license change'] + assert [d.factors for d in deltas_object if d.new_file.path == 'a2.py'].pop() == ['unmodified'] + + def test_DeltaCode_permissive_add_public_domain(self): + new_scan = self.get_test_loc('deltacode/permissive_add_public_domain_new.json') + old_scan = self.get_test_loc('deltacode/permissive_add_public_domain_old.json') + + options = OrderedDict([ + ('--all-delta-types', True) + ]) + + deltacode_object = DeltaCode(new_scan, old_scan, options) + + deltas_object = deltacode_object.deltas + + assert [d.score for d in deltas_object if d.new_file.path == 'a1.py'] == [30] + assert [d.score for d in deltas_object if d.new_file.path == 'a2.py'] == [0] + + assert [d.factors for d in deltas_object if d.new_file.path == 'a1.py'].pop() == ['modified', 'license change'] + assert [d.factors for d in deltas_object if d.new_file.path == 'a2.py'].pop() == ['unmodified'] + + def test_DeltaCode_license_and_copyright_openssl(self): + new_scan = self.get_test_loc('deltacode/openssl-1.1.0f.json') + old_scan = self.get_test_loc('deltacode/openssl-1.1.0e.json') + + options = OrderedDict([ + ('--all-delta-types', False) + ]) + + deltacode_object = DeltaCode(new_scan, old_scan, options) + + deltas_object = deltacode_object.deltas + + assert len([d for d in deltas_object if d.factors == ['modified', 'copyright change']]) == 69 + assert len([d for d in deltas_object if d.factors == ['modified', 'license change']]) == 0 + assert len([d for d in deltas_object if d.factors == ['moved']]) == 0 + assert len([d for d in deltas_object if d.factors == ['added']]) == 76 + assert len([d for d in deltas_object if d.factors == ['removed']]) == 10 + + def test_DeltaCode_license_and_copyright_react(self): + new_scan = self.get_test_loc('deltacode/react-16.0.0.json') + old_scan = self.get_test_loc('deltacode/react-15.6.1.json') + + options = OrderedDict([ + ('--all-delta-types', False) + ]) + + deltacode_object = DeltaCode(new_scan, old_scan, options) + + deltas_object = deltacode_object.deltas + + assert len([d for d in deltas_object if d.factors == ['modified', 'copyright change']]) == 7 + assert len([d for d in deltas_object if d.factors == ['modified', 'license change']]) == 25 + assert len([d for d in deltas_object if d.factors == ['modified', 'license info added']]) == 1 + assert len([d for d in deltas_object if d.factors == ['modified', 'copyright info added']]) == 1 + assert len([d for d in deltas_object if d.factors == ['modified', 'license change', 'copyright change']]) == 111 + assert len([d for d in deltas_object if d.factors == ['moved']]) == 0 + assert len([d for d in deltas_object if d.factors == ['added']]) == 540 + assert len([d for d in deltas_object if d.factors == ['removed']]) == 395 + + assert len([d for d in deltas_object if 'copyleft added' in d.factors]) == 0 + assert len([d for d in deltas_object if 'copyleft limited added' in d.factors]) == 0 + assert len([d for d in deltas_object if 'commercial added' in d.factors]) == 0 + assert len([d for d in deltas_object if 'free restricted added' in d.factors]) == 0 + assert len([d for d in deltas_object if 'patent license added' in d.factors]) == 0 + assert len([d for d in deltas_object if 'proprietary free added' in d.factors]) == 0